:root {
  --ink: #292826;
  --ink-soft: #6f6964;
  --paper: #f7f5f1;
  --paper-deep: #ede5dd;
  --white: #ffffff;
  --clay: #a55f46;
  --clay-dark: #884c39;
  --gold: #d6b79c;
  --line: #ded7d0;
  --success: #2f6757;
  --max: 1320px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.topline { height: 5px; background: linear-gradient(90deg, var(--clay) 0 67%, var(--gold) 67%); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand { display: block; width: 186px; }
.brand svg { display: block; width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-links a, .nav-trigger {
  position: relative;
  border: 0;
  background: none;
  padding: 34px 0 31px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-links a::after, .nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover::after, .nav-trigger:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% - 12px);
  left: -28px;
  width: 360px;
  padding: 22px 28px;
  visibility: hidden;
  opacity: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(39, 39, 37, .22);
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 0; color: #f4eee6; font-size: .9rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.dropdown a::after { display: none; }
.dropdown a:hover { color: var(--gold); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clay);
  padding: 12px 20px;
  background: var(--clay);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover, .button:hover { border-color: var(--clay-dark); background: var(--clay-dark); }
.button.secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: var(--white); }
.button.light { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.button.light:hover { border-color: var(--white); background: var(--white); }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.8rem; cursor: pointer; }

.hero-home {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  background: var(--paper);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 86px max(40px, calc((100vw - var(--max)) / 2 + 20px));
}
.hero-media { position: relative; min-height: 580px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(39,39,37,.18), transparent 38%); content: ""; }
.eyebrow { margin: 0 0 22px; color: var(--clay); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { max-width: 820px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(3.25rem, 6vw, 6.6rem); font-weight: 400; letter-spacing: -.045em; }
.hero-home h1 { max-width: 720px; font-size: clamp(3.1rem, 5vw, 6rem); }
.lead { max-width: 760px; margin: 0 0 36px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero { padding: 112px 0 98px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-bottom: 0; }
.page-hero h1 { font-size: clamp(3.2rem, 6.2vw, 6.8rem); }
.page-hero.without-media { background: var(--ink); color: var(--white); }
.page-hero.without-media .eyebrow { color: var(--gold); }
.page-hero.without-media .lead { color: #d4ccc3; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); gap: 72px; align-items: center; }
.page-hero.with-media { padding: 74px 0; }
.page-hero.with-media h1 { font-size: clamp(3rem, 5vw, 5.9rem); }
.page-hero-media { height: 500px; overflow: hidden; background: var(--ink); }
.page-hero-media { margin: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.02); }

.visual-section { padding: 0 0 104px; background: var(--white); }
.visual-grid { display: grid; gap: 18px; }
.visual-grid.single { grid-template-columns: 1fr; }
.visual-grid.duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.visual-frame {
  height: clamp(320px, 38vw, 560px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.visual-grid.duo .visual-frame { height: clamp(300px, 31vw, 480px); }
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  transition: transform .7s ease;
}
.visual-frame:hover img { transform: scale(1.018); }
.founder-photo { max-width: 430px; margin: 42px 0 0; overflow: hidden; background: var(--paper); }
.founder-photo img { width: 100%; height: auto; filter: saturate(.88) contrast(1.02); }

.section { padding: 104px 0; }
.section.compact { padding: 78px 0; }
.section.paper { background: var(--paper); }
.section.ink { background: var(--ink); color: var(--white); }
.section.clay { background: var(--clay); color: var(--white); }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.measure { max-width: 840px; }
.section-kicker { margin: 0 0 18px; color: var(--clay); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section.ink .section-kicker, .section.clay .section-kicker { color: var(--gold); }
.section-title { max-width: 980px; margin-bottom: 30px; font-family: var(--serif); font-size: clamp(2.45rem, 4.4vw, 4.9rem); font-weight: 400; letter-spacing: -.035em; }
.section-intro { max-width: 820px; margin: 0 0 48px; color: var(--ink-soft); font-size: 1.18rem; }
.section.ink .section-intro, .section.clay .section-intro { color: #e8e0d6; }
.split { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 8vw; align-items: start; }
.split.equal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.statement { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement p { max-width: 1120px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1.15; letter-spacing: -.025em; }
.statement em { color: var(--clay); font-style: normal; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  min-height: 310px;
  padding: 36px;
  background: var(--white);
  transition: background .22s, transform .22s;
}
.card:hover { background: #fbf7f1; }
.card-number { display: block; margin-bottom: 54px; color: var(--clay); font-family: var(--serif); font-size: 1.15rem; }
.card h3 { margin-bottom: 16px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.card p { margin: 0; color: var(--ink-soft); }
.card-link { display: inline-block; margin-top: 26px; border-bottom: 1px solid var(--clay); color: var(--clay-dark); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { min-height: 220px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.feature p { color: var(--ink-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag { padding: 8px 12px; border: 1px solid var(--line); color: var(--ink-soft); font-size: .84rem; }
.dark-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid #5a5752; }
.dark-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid #5a5752; }
.dark-list strong { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }

.market-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.market-tile { min-height: 260px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-tile h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.market-tile p { color: var(--ink-soft); }
.market-tile.featured { background: var(--ink); color: var(--white); }
.market-tile.featured p { color: #d9d1c7; }

.editorial { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 520px; background: var(--ink); color: var(--white); }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px; }
.editorial-copy h2 { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.4rem); font-weight: 400; }
.editorial-copy p { color: #ddd5ca; }

.prose h2 { margin: 62px 0 20px; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.prose h3 { margin: 34px 0 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.15rem; }
.prose li { margin: 9px 0; }
.prose .callout { margin: 50px 0; padding: 34px; border-left: 4px solid var(--clay); background: var(--paper); font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.contact-details { padding-top: 18px; }
.contact-details div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; color: var(--clay); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 14px 15px; background: var(--white); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--ink-soft); font-size: .84rem; }

.cta-band { padding: 90px 0; background: var(--clay); color: var(--white); }
.cta-band .container { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 400; letter-spacing: -.03em; }

.site-footer { background: #1f1f1d; color: #f5efe7; }
.footer-main { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 78px 0 58px; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 48px; }
.footer-brand svg { display: block; width: 190px; height: auto; }
.footer-brand p { max-width: 330px; color: #bbb2a7; }
.footer-col h3 { margin-bottom: 18px; color: var(--gold); font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin: 9px 0; color: #d8d0c6; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #44413e; padding: 24px 0; color: #a9a198; font-size: .82rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }

.editorial-list { border-top: 1px solid var(--line); }
.editorial-list a { display: grid; grid-template-columns: 190px 1fr; gap: 32px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.editorial-list span { color: var(--clay); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.editorial-list strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: 210px 1fr auto; }
  .nav-links { gap: 18px; }
  .hero-home { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; padding: 82px max(30px, calc((100vw - var(--max)) / 2 + 20px)); }
  .hero-media { min-height: 480px; }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .market-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .nav-shell { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand { width: 172px; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 81px 0 auto;
    display: none;
    padding: 28px 24px 38px;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(39,39,37,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-trigger { display: block; width: 100%; padding: 10px 0; text-align: left; }
  .nav-links a::after, .nav-trigger::after { display: none; }
  .dropdown { position: static; width: 100%; display: block; visibility: visible; opacity: 1; padding: 10px 18px; transform: none; box-shadow: none; }
  .hero-home h1 { font-size: clamp(3rem, 12vw, 5.4rem); }
  .hero-copy { min-height: auto; padding-top: 72px; padding-bottom: 72px; }
  .page-hero { padding: 80px 0 70px; }
  .section { padding: 76px 0; }
  .split, .split.equal, .editorial, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { height: 410px; }
  .visual-section { padding-bottom: 76px; }
  .visual-grid.duo { grid-template-columns: 1fr; }
  .visual-frame, .visual-grid.duo .visual-frame { height: clamp(280px, 58vw, 440px); }
  .editorial-media { min-height: 360px; }
  .editorial-copy { padding: 44px 30px; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container, .nav-shell, .footer-main { width: min(calc(100% - 28px), var(--max)); }
  .hero-home { display: flex; flex-direction: column; }
  .hero-copy { padding-right: 22px; padding-left: 22px; }
  .hero-media { min-height: 330px; }
  .page-hero-media { height: 320px; }
  .visual-frame, .visual-grid.duo .visual-frame { height: 270px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .card-grid, .card-grid.two, .feature-grid, .market-strip, .form-grid, .footer-main { grid-template-columns: 1fr; }
  .card { min-height: auto; padding: 28px; }
  .card-number { margin-bottom: 28px; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; }
  .editorial-list a { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}
