@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/source-sans-3-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #463b34;
  --muted: #76685f;
  --accent: #875536;
  --accent-dark: #5f3925;
  --accent-soft: #efe2d4;
  --paper: #fffdf9;
  --paper-warm: #faf5ef;
  --line: #ddcfc1;
  --shadow: 0 18px 50px rgba(66, 49, 38, 0.14);
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-content: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #ece4db;
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 520px),
    linear-gradient(180deg, #f5f0ea 0%, #e9e0d7 100%);
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--accent-dark);
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.12;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(100%, 980px);
  min-height: calc(100vh - 40px);
  margin: 0 auto;
  overflow: clip;
  border: 1px solid rgba(135, 85, 54, 0.18);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-family: var(--font-title);
  font-size: 23px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-content);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.site-nav a[aria-current='page'] {
  background: var(--accent);
  color: #fffaf5;
  font-weight: 700;
}

.page-main {
  padding: 48px 42px 64px;
}

.page-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.page-section:first-child {
  border-top: 0;
}

.page-section--welcome {
  background: var(--paper);
}

.page-section--tradition {
  background: linear-gradient(180deg, var(--paper-warm), var(--paper));
}

.home-feature {
  width: min(100%, 503px);
  margin: 0 auto 34px;
}

.home-feature figcaption {
  width: 100%;
  padding: 0 12px 17px;
  text-align: center;
}

.home-feature h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 52px);
  letter-spacing: -0.02em;
}

.home-feature h1 span {
  display: block;
  margin-top: 3px;
  font-size: 0.47em;
  letter-spacing: 0.01em;
}

.home-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 503 / 378;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(66, 49, 38, 0.13);
}

.welcome-copy {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.welcome-copy .lead {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1.35;
}

.welcome-copy p:last-child {
  margin-bottom: 0;
}

.page-heading {
  width: min(100%, 780px);
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-heading h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 60px);
}

.page-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.editorial {
  width: min(100%, 820px);
  margin: 0 auto;
}

.editorial-block {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  grid-template-areas: "media copy";
  align-items: start;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.editorial-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.editorial-block--image-right {
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1fr) 216px;
}

.editorial-copy {
  grid-area: copy;
}

.editorial-copy p {
  margin-bottom: 1.15em;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.editorial-block:first-child .editorial-copy p:first-of-type::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 4.1em;
  line-height: 0.75;
}

.editorial-copy h2 {
  margin: 0 0 14px;
  font-size: 34px;
}

.article-photo {
  grid-area: media;
  justify-self: center;
  margin: 0;
}

.article-photo img {
  width: 100%;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(66, 49, 38, 0.17);
}

.article-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-photo--founder {
  width: 166px;
}

.article-photo--family {
  width: 149px;
}

.article-photo--postcard {
  width: 216px;
}

.article-photo--front {
  width: 216px;
}

.article-callout {
  margin: 12px 0 38px;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--paper-warm);
  color: var(--accent-dark);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 820px);
  margin: 0 auto;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card__body {
  padding: 24px;
}

.feature-card h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 34px;
  width: min(100%, 820px);
  margin: 30px auto 0;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
}

.info-band h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.info-band p:last-child {
  margin-bottom: 0;
}

.center-action {
  margin: 34px 0 0;
  text-align: center;
}

.contact-card {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

.contact-card address {
  margin-bottom: 24px;
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}

.site-footer {
  padding: 22px 34px;
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.legal-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 9px;
}

.legal-nav a {
  color: var(--accent-dark);
}

.legal-content {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.65;
}

.legal-page .page-heading h1 {
  font-size: clamp(32px, 5vw, 44px);
}

.legal-page .page-heading p:last-child {
  font-size: 15px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  margin: 0 0 1.15em 1.25em;
}

.legal-warning {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--paper-warm);
}

.legal-placeholder {
  color: #8a2f24;
  font-weight: 700;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 124px;
  }

  body {
    padding: 0;
  }

  .site-shell {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .site-header {
    display: block;
    padding: 16px 18px 12px;
  }

  .page-section {
    scroll-margin-top: 124px;
  }

  .brand {
    display: block;
    width: max-content;
    margin: 0 auto 13px;
    text-align: center;
  }

  .site-nav ul {
    justify-content: center;
  }

  .site-nav a {
    padding: 6px 9px;
    font-size: 13px;
  }

  .page-main {
    padding: 34px 20px 48px;
  }

  .feature-grid,
  .info-band {
    grid-template-columns: 1fr;
  }

  .editorial-block,
  .editorial-block--image-right {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    gap: 24px;
    padding: 30px 0;
  }

  .editorial-copy h2 {
    font-size: 30px;
  }

  .info-band {
    gap: 16px;
    padding: 26px;
  }
}
