:root {
  --brown-dark: #4f3a2d;
  --brown: #6e5542;
  --brown-soft: #b89d85;
  --grey-dark: #3f3f3f;
  --grey: #707070;
  --grey-light: #ece8e4;
  --white: #ffffff;
  --black: #141414;
  --shadow: 0 16px 20px rgba(20, 20, 20, 0.1);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
  background:rgba(255,255,255,0.9);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  /*position: sticky;*/
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: var(--white);
  border-bottom: 1px solid rgba(79, 58, 45, 0.12);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--brown-dark);
  text-align: left;
}

.portrait {
  border-radius: var(--radius);
  background-image: url(images/IMG_0986.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  padding: 20px;
  width: 550px;
  height: 500px;
  display: inline-flex;
  margin-bottom: 5%;
  box-shadow: var(--shadow);
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.logo-text strong {
  display: block;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.logo-text small {
  display: block;
  color: var(--grey);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.hero,
.subpage-hero {
  padding: 6rem 0 1rem;
}

.hero-content,
.subpage-hero .narrow {
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--brown);
  font-weight: 600;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  color: #000000;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 900px;
  margin-inline: auto;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--grey-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: var(--brown-dark);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--black);
}

.content-section {
  padding: 1rem 0 5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 58, 45, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  margin-left: 30%;
  margin-right: 30%;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(79, 58, 45, 0.12);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.35rem;
}

.contact-list a {
  color: var(--brown-dark);
  font-weight: 600;
}

.contact-list p {
  margin: 0;
}

.note {
  color: var(--grey);
  font-size: 0.96rem;
}

.legal-section {
  padding-top: 0;
}

.legal-card h2:not(:first-child) {
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid rgba(79, 58, 45, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--grey-dark);
}

.footer-inner a {
  font-weight: 600;
}

.footer-inner a:hover,
.footer-inner a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible,
.logo:hover,
.logo:focus-visible {
  color: var(--black);
}

@media (max-width: 800px) {
  .hero,
  .subpage-hero {
    padding: 4.5rem 0 3rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 80px;
  }

  .logo {
    gap: 0.8rem;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .logo-text strong {
    font-size: 0.85rem;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
