:root {
  --ink: #1f2a30;
  --ink-deep: #162026;
  --paper: #f4f1e8;
  --paper-light: #fbfaf6;
  --gold: #98946f;
  --gold-soft: #98946f;
  --line: #d9d5c8;
  --accent: #b85f45;
  --text: #293037;
  --muted: #6d736f;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 60px rgba(21, 28, 32, 0.08);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand-mark {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Sekuya", serif;
  font-size: 1.2rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand-copy span {
  font-family: "Oswald", sans-serif;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  background: var(--ink);
  color: white;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  padding: 72px 0 88px;
}

.hero-copy,
.hero-art {
  min-width: 0;
}

.hero-copy {
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
}

h1 {
  width: 100%;
  max-width: 100%;
  font-family: "Sekuya", serif;
  font-size: clamp(3.8rem, 5.2vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

h2 {
  font-family: "Sekuya", serif;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #535a5c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-primary {
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
}

.button-primary:hover {
  background: var(--ink-deep);
}

.button-quiet {
  border: 1px solid var(--line);
  background: transparent;
}

.button-quiet:hover {
  border-color: var(--gold);
  background: var(--paper);
}

.hero-art {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 0.83;
  min-height: 520px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 14px;
  border-top: 1px solid rgba(152, 148, 111, 0.5);
  border-bottom: 1px solid rgba(152, 148, 111, 0.5);
}

.hero-art::before {
  top: 36px;
  right: -18px;
}

.hero-art::after {
  bottom: 36px;
  left: -18px;
}

.hero-emblem {
  display: grid;
  place-items: center;
  flex: 1;
}

.hero-emblem img {
  width: min(100%, 430px);
}

.hero-stamp {
  padding-top: 24px;
  border-top: 1px solid rgba(152, 148, 111, 0.75);
  color: var(--gold-soft);
  display: grid;
  gap: 7px;
}

.hero-stamp span:first-child {
  font-family: "Sekuya", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero-stamp span:last-child {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.13em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 0 112px;
}

.category-card {
  min-height: 460px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.category-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.category-card p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0;
}

.category-number {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

.category-link {
  font-weight: 800;
}

.category-card-dark {
  background: var(--ink);
  color: #f6f3ea;
  border-color: var(--ink);
}

.category-card-dark h2 {
  color: var(--gold-soft);
}

.category-card-dark .eyebrow {
  color: var(--gold-soft);
}

.category-card-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.category-card-accent h2,
.category-card-accent .eyebrow {
  color: white;
}

.statement {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.statement-mark {
  min-height: 440px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 50px;
}

.statement-mark img {
  width: min(100%, 430px);
}

.statement-copy h2 {
  max-width: 900px;
}

.statement-copy > p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: #565d5f;
  font-size: 1.05rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip > div {
  padding: 28px 26px 30px;
}

.feature-strip > div + div {
  border-left: 1px solid var(--line);
}

.feature-kicker {
  display: block;
  margin-bottom: 3px;
  font-family: "Oswald", sans-serif;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-strip strong {
  color: var(--ink);
}

.visit {
  padding: 112px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.visit-copy p:last-child {
  max-width: 520px;
  color: #5e6463;
  font-size: 1.05rem;
}

.visit-card {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-md);
  padding: 34px;
  display: grid;
  gap: 24px;
}

.visit-card > div {
  display: grid;
  gap: 3px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.visit-card strong {
  color: var(--gold-soft);
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.visit-card span:not(.visit-label) {
  color: rgba(255,255,255,0.7);
}

.visit-label {
  font-family: "Oswald", sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-card .button-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
}

.visit-card .button-primary:hover {
  background: var(--paper);
}

.site-footer {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Sekuya", serif;
  font-size: 1rem;
}

.footer-brand img {
  width: 44px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 56px 0 72px;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-art {
    aspect-ratio: auto;
    min-height: 620px;
  }

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

  .category-card {
    min-height: 330px;
  }

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

  .statement-mark {
    min-height: 360px;
  }

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

@media (max-width: 700px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .brand-copy span {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 36px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-art {
    min-height: 480px;
    padding: 30px;
  }

  .hero-stamp span:last-child {
    font-size: 0.92rem;
  }

  .category-grid {
    padding-bottom: 76px;
  }

  .category-card {
    padding: 26px;
  }

  .statement {
    padding: 72px 0 80px;
  }

  .statement-mark {
    min-height: 290px;
    padding: 34px;
  }

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

  .feature-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .visit {
    padding: 80px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0 34px;
  }

  .site-footer p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
