@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #FCFAF5;
  --gold: #B8935D;
  --gold-text: #AD8A57;
  --brown: #3C342B;
  --sage: #A39F5A;
  --cta: #BE975E;
  --cta-hover: #C39C63;
  --line: rgba(60, 52, 43, 0.16);
  --content: 1180px;
  --text: 650px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--brown);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--brown);
  color: var(--bg);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  background: rgba(252, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 64px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.header-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.header-link:hover { border-bottom-color: var(--gold); }

main { overflow: clip; }

.hero-copy,
.section-inner,
.legal-inner {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
}

.hero-copy {
  padding: 84px 0 54px;
}

h1, h2 {
  margin: 0;
  color: var(--gold-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.012em;
}

h1 {
  max-width: 800px;
  font-size: clamp(56px, 5vw, 64px);
  line-height: 0.98;
}

.hero-subline {
  max-width: 760px;
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 500;
}

.hero-image {
  width: 100%;
  height: clamp(380px, 48vw, 640px);
  object-fit: cover;
  object-position: 50% 54%;
}

.hero-after {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: 58px 0 116px;
}

.hero-after p {
  max-width: 510px;
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 6px;
  background: var(--cta);
  color: var(--brown);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 160ms ease;
}
.btn:hover { background: var(--cta-hover); }

.brochure,
.contact {
  border-top: 1px solid var(--line);
}

.section-inner {
  padding: 112px 0;
}

.section-inner.narrow {
  max-width: 760px;
  margin-left: max(32px, calc((100vw - min(1180px, calc(100vw - 64px))) / 2));
}

h2 {
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1.06;
  margin-bottom: 28px;
}

.lead {
  max-width: 700px;
  margin: 0 0 34px;
  font-size: 19px;
}

.brochure-note {
  max-width: 650px;
  margin: 0 0 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: start;
}

.contact-details {
  padding-top: 8px;
  font-size: 17px;
}
.contact-details p { margin: 0 0 18px; }
.contact-details a { text-decoration-color: rgba(60, 52, 43, 0.42); }

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: 32px 0 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  font-size: 14px;
  line-height: 1.55;
}
.footer-inner p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-links a { text-decoration: none; border-bottom: 1px solid var(--line); }
.footer-tagline { margin-top: 7px !important; color: rgba(60, 52, 43, 0.72); }

/* Legal pages */
.legal-main { min-height: calc(100vh - var(--header-h)); }
.legal-inner {
  max-width: 960px;
  padding: 88px 0 116px;
}
.legal-inner h1 { font-size: clamp(46px, 5vw, 58px); margin-bottom: 48px; }
.legal-inner h2 {
  font-family: "Inter", Arial, sans-serif;
  color: var(--brown);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  margin: 38px 0 10px;
  letter-spacing: 0;
}
.legal-inner p,
.legal-inner li {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.68;
}
.legal-inner p { margin: 0 0 16px; }
.legal-inner ul { margin: 0 0 20px; padding-left: 1.25em; }
.legal-inner .legal-block { margin-bottom: 30px; }

@media (max-width: 820px) {
  :root { --header-h: 64px; }
  body { font-size: 17px; line-height: 1.58; }
  .header-inner,
  .hero-copy,
  .hero-after,
  .section-inner,
  .legal-inner,
  .footer-inner {
    width: calc(100% - 48px);
  }
  .site-header { background: rgba(252, 250, 245, 0.985); }
  .wordmark { font-size: 21px; }
  .header-link { font-size: 14px; }
  .hero-copy { padding: 52px 0 34px; }
  h1 { font-size: clamp(40px, 11vw, 46px); line-height: 0.99; }
  .hero-subline { margin-top: 22px; font-size: 23px; }
  .hero-image { height: 52vw; min-height: 230px; max-height: 360px; object-position: 50% 54%; }
  .hero-after { padding: 40px 0 82px; }
  .hero-after p { font-size: 17px; margin-bottom: 28px; }
  .section-inner { padding: 76px 0; }
  .section-inner.narrow { margin-left: 24px; width: calc(100% - 48px); }
  h2 { font-size: clamp(30px, 8vw, 34px); margin-bottom: 20px; }
  .lead, .brochure-note { font-size: 17px; }
  .btn { min-height: 50px; width: fit-content; font-size: 16px; padding: 12px 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-details { font-size: 16px; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 26px 0 30px; }
  .legal-inner { padding: 62px 0 84px; }
  .legal-inner h1 { font-size: 42px; margin-bottom: 36px; }
  .legal-inner p, .legal-inner li { font-size: 15.5px; }
}

@media (max-width: 420px) {
  .header-inner,
  .hero-copy,
  .hero-after,
  .section-inner,
  .legal-inner,
  .footer-inner { width: calc(100% - 40px); }
  .wordmark { font-size: 20px; }
  .hero-copy { padding-top: 44px; }
  h1 { font-size: 40px; }
  .hero-subline { font-size: 21px; }
  .hero-image { height: 61vw; min-height: 235px; }
  .section-inner.narrow { margin-left: 20px; width: calc(100% - 40px); }
  .btn { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
