:root {
  --bg: #232120;
  --bg-deep: #1d1b1a;
  --card: #ede8e2;
  --card-alt: #e7dfd7;
  --taupe: #b3a59b;
  --taupe-deep: #9d8d81;
  --text: #f3ede7;
  --text-dark: #2e2926;
  --text-muted: #7f746c;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(46, 41, 38, 0.16);
  --accent: #bea17f;
  --accent-soft: #c8b4a1;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  --shell: min(1280px, calc(100% - 48px));
  --shell-narrow: min(1040px, calc(100% - 48px));
  --ease: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell--narrow {
  width: var(--shell-narrow);
}

.section {
  position: relative;
}

.section--dark {
  background: var(--bg);
}

.section--light {
  background: var(--card);
  color: var(--text-dark);
}

.section--light-alt {
  background: var(--card-alt);
  color: var(--text-dark);
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-kicker--dark {
  color: #8c7a6f;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title--dark {
  color: var(--text-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--text-dark);
  border-color: rgba(46, 41, 38, 0.28);
  background: transparent;
}

.button--dark:hover {
  background: rgba(46, 41, 38, 0.06);
}

.button--soft {
  color: #fff;
  border-color: var(--taupe-deep);
  background: var(--taupe-deep);
}

.button--soft:hover {
  background: #8c7e73;
  border-color: #8c7e73;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(33, 31, 30, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav--right {
  justify-content: flex-end;
}

.nav__link {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #ddc8b1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 0;
  color: #f4ebe1;
}

.brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.brand__subtitle {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 6px auto;
  background: #fff;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 24px;
  background: rgba(33, 31, 30, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

/* Hero */
.about-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 232, 226, 0.78) 0%, rgba(237, 232, 226, 0.25) 45%, rgba(237, 232, 226, 0.45) 100%);
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 90px 0;
}

.hero-card {
  position: relative;
  width: min(100%, 430px);
  padding: 70px 44px 42px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-dark);
  border: 1px solid rgba(46, 41, 38, 0.18);
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(46, 41, 38, 0.16);
  pointer-events: none;
}

.hero-card__badge {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9b8a77;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.hero-card__kicker {
  margin: 0 0 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8d7d71;
}

.hero-card h1 {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 500;
}

.hero-card__text {
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
  text-align: center;
  font-size: 15px;
  color: #5e5550;
}

/* Intro */
.intro {
  padding: 110px 0 120px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.intro__title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 0.95;
  font-weight: 500;
}

.intro__image img {
  height: 470px;
  object-fit: cover;
}

.intro__text {
  align-self: center;
}

.intro__text h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--accent);
}

.intro__text p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
}

/* Story */
.story {
  padding: 110px 0 120px;
}

.story__top {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.story__top-image img {
  height: 430px;
  object-fit: cover;
}

.story__top-text {
  font-size: 15px;
  color: #605650;
}

.story__top-text--large {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  color: #927e6d;
}

.timeline {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.timeline__item {
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.timeline__item img {
  margin: 18px 0 18px;
  height: 220px;
  object-fit: cover;
}

.timeline__year {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #cbbdb1;
}

.timeline__item p {
  margin: 0;
  color: #605650;
}

.timeline__item--text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Facts */
.facts {
  padding: 110px 0;
}

.facts__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 0;
  align-items: stretch;
}

.facts__image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.facts__card {
  border: 1px solid rgba(190, 161, 127, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facts__card h2 {
  margin: 0;
  padding: 34px 36px;
  border-bottom: 1px solid rgba(190, 161, 127, 0.25);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 500;
  color: #f3e7da;
}

.facts__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts__cell {
  min-height: 140px;
  padding: 24px 22px;
  border-right: 1px solid rgba(190, 161, 127, 0.25);
  border-bottom: 1px solid rgba(190, 161, 127, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facts__cell:nth-child(3n) {
  border-right: 0;
}

.facts__cell span {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.facts__cell strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 500;
  color: #f1e4d8;
}

/* Quote strip */
.quote-strip {
  padding: 95px 0;
}

.quote-strip__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.quote-strip__content p {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  line-height: 1;
  color: #998573;
}

.quote-strip__image img {
  height: 470px;
  object-fit: cover;
}

/* CTA */
.cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 15, 14, 0.52);
}

.cta__inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cta__card {
  width: min(100%, 420px);
  padding: 44px 38px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  text-align: center;
}

.cta__card h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
  font-weight: 500;
}

.cta__card p {
  margin: 0 0 24px;
  color: #5f5651;
}

/* Footer */
.site-footer {
  background: #232120;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 58px 0 38px;
}

.site-footer__nav {
  display: grid;
  gap: 10px;
  justify-content: start;
}

.site-footer__nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__brand {
  text-align: center;
}

.site-footer__brand h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.9;
  font-weight: 500;
  color: #c8b7aa;
}

.site-footer__brand p {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__cta {
  text-align: right;
}

.site-footer__cta p {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: #f1e7de;
}

.site-footer__bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* Responsive */
@media (max-width: 1100px) {
  .intro__grid,
  .story__top,
  .facts__grid,
  .quote-strip__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .facts__table {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts__cell:nth-child(3n) {
    border-right: 1px solid rgba(190, 161, 127, 0.25);
  }

  .facts__cell:nth-child(2n) {
    border-right: 0;
  }

  .site-footer__nav,
  .site-footer__cta {
    justify-content: center;
    text-align: center;
  }

  .intro__image img,
  .quote-strip__image img {
    height: auto;
    max-height: 620px;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .about-hero,
  .about-hero__inner {
    min-height: 680px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1000px);
    --shell-narrow: min(100% - 28px, 1000px);
  }

  .brand__title {
    font-size: 1.55rem;
  }

  .brand__subtitle {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero-card {
    padding: 62px 22px 28px;
  }

  .facts__table {
    grid-template-columns: 1fr;
  }

  .facts__cell {
    border-right: 0 !important;
  }

  .cta__card {
    padding: 30px 22px;
  }
}