:root {
  --ink: #0d0f10;
  --ink-soft: #171a1c;
  --coal: #212527;
  --paper: #f1ece2;
  --paper-2: #e6decf;
  --rust: #b85e34;
  --rust-deep: #8f4226;
  --sea: #31595d;
  --gold: #c8a56a;
  --muted: #b9b2a7;
  --line: rgba(241, 236, 226, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-sm: 11px;
  --content: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% -10%, rgba(184, 94, 52, 0.14), transparent 34%),
    radial-gradient(circle at 100% 15%, rgba(49, 89, 93, 0.16), transparent 32%),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(241, 236, 226, 0.09);
  background: rgba(13, 15, 16, 0.88);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 165, 106, 0.52);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(200, 165, 106, 0.12), rgba(184, 94, 52, 0.06));
  color: var(--gold);
  flex: 0 0 auto;
}
.brand-mark svg { width: 23px; height: 23px; }
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.025em;
}
.brand-copy span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 5px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  text-decoration: none;
  color: #d9d3c8;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: white;
  background: rgba(241, 236, 226, 0.08);
}
.nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(200, 165, 106, 0.55) !important;
  color: #f6e8c9 !important;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(241,236,226,0.05);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: var(--paper);
  margin: 4px auto;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

main { overflow: hidden; }
.container { width: var(--content); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 68px 0; }
.section-paper {
  color: #171717;
  background: var(--paper);
}
.section-paper .muted { color: #69645d; }
.section-sea {
  background:
    linear-gradient(120deg, rgba(49,89,93,0.96), rgba(24,44,47,0.98));
}
.section-rust {
  background:
    linear-gradient(120deg, rgba(143,66,38,0.96), rgba(85,39,25,0.98));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section-paper .eyebrow { color: var(--rust-deep); }
.display,
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-wrap: balance;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.91;
  letter-spacing: -0.05em;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.lead {
  max-width: 760px;
  color: #d2cbc0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.section-paper .lead { color: #4f4a43; }
.muted { color: var(--muted); }
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.15rem; }
.prose a { color: #7f391f; font-weight: 700; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 70px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 68px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #d6c5a5;
  font-weight: 700;
}
.hero-kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--gold);
}
.hero h1 .accent { color: var(--rust); }
.hero-copy .lead { max-width: 690px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible { outline: 3px solid #f0c87f; outline-offset: 3px; }
.btn-primary { background: var(--rust); color: white; }
.btn-primary:hover { background: #ca693b; }
.btn-secondary { border-color: rgba(241,236,226,0.3); background: rgba(241,236,226,0.05); }
.btn-secondary:hover { border-color: rgba(241,236,226,0.58); background: rgba(241,236,226,0.09); }
.section-paper .btn-secondary { border-color: rgba(23,23,23,0.23); background: rgba(23,23,23,0.03); }

.hero-portrait-wrap { position: relative; max-width: 360px; margin-left: auto; }
.hero-portrait-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  background: #24282a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200,165,106,0.32);
}
.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 90px rgba(0,0,0,0.24);
  pointer-events: none;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  filter: contrast(1.05) saturate(0.9);
}
.hero-portrait-note {
  position: absolute;
  left: -34px;
  bottom: 30px;
  max-width: 250px;
  padding: 18px 20px;
  color: #171717;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
}
.hero-portrait-note strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; }
.hero-portrait-note span { display: block; font-size: 0.86rem; margin-top: 4px; color: #625c54; }

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: start;
}
.big-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: #1c1c1b;
}
.quote-rule {
  width: 80px;
  height: 4px;
  background: var(--rust);
  margin: 28px 0;
}

.service-list {
  margin-top: 42px;
  border-top: 1px solid rgba(23,23,23,0.16);
}
.service-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) 1.25fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(23,23,23,0.16);
}
.service-row h3 { margin: 0; }
.service-row p { margin: 0; color: #625e57; }
.service-row a { color: var(--rust-deep); text-decoration: none; font-weight: 800; }
.service-row a:hover { text-decoration: underline; text-underline-offset: 4px; }

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.story-photo {
  min-height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--coal);
}
.story-photo img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.story-copy .lead { max-width: 610px; }
.fact-lines {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.fact-line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.fact-line strong { color: #fff0d0; }
.fact-line span { color: #c9c1b6; }

.pull-quote {
  padding: 0;
  margin: 0;
  border: 0;
}
.pull-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.pull-quote footer { margin-top: 20px; color: #d8ccb7; }

.page-hero {
  padding: 104px 0 78px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(3.4rem, 7vw, 6.6rem); max-width: 960px; }
.page-hero .lead { max-width: 780px; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 22px;
  color: #aba398;
  font-size: 0.88rem;
}
.breadcrumb a { color: #ded7cc; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stack { display: grid; gap: 28px; }
.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(241,236,226,0.035);
}
.panel p:last-child { margin-bottom: 0; }
.section-paper .panel { background: rgba(23,23,23,0.025); border-color: rgba(23,23,23,0.13); }

.work-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  padding: 34px 0;
  border-top: 1px solid rgba(23,23,23,0.17);
}
.work-block:last-child { border-bottom: 1px solid rgba(23,23,23,0.17); }
.work-block h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 0; }
.work-block ul { margin: 16px 0 0; padding-left: 20px; }
.work-block li { margin: 8px 0; }

.timeline { border-left: 1px solid rgba(241,236,226,0.22); margin-left: 8px; padding-left: 30px; }
.timeline-item { position: relative; padding: 0 0 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rust);
  left: -36px;
  top: 7px;
  box-shadow: 0 0 0 6px var(--ink);
}
.timeline-item p { color: #c7c0b5; }

.gallery-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1c1f20;
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.gallery-item.portrait img { object-fit: cover; }
.gallery-item figcaption {
  padding: 14px 16px;
  color: #c8c0b4;
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

.social-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(23,23,23,0.16);
  color: #171717;
  text-decoration: none;
  font-weight: 800;
}
.social-link:last-child { border-bottom: 1px solid rgba(23,23,23,0.16); }
.social-link span { color: #6a635a; font-weight: 600; }
.social-link:hover strong { color: var(--rust-deep); }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; color: #d8d0c5; }

.site-footer {
  border-top: 1px solid rgba(241,236,226,0.1);
  background: #090a0b;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
}
.footer-brand p { max-width: 430px; color: #aaa398; margin-top: 18px; }
.footer-col h2 {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b77f;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: #c7c0b5;
  text-decoration: none;
  padding: 5px 0;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(241,236,226,0.08);
  color: #888279;
  font-size: 0.86rem;
}
.footer-bottom a { color: #aaa398; }

@media (max-width: 920px) {
  :root { --content: min(100% - 32px, 760px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 16px 18px;
    background: rgba(13,15,16,0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.24);
  }
  .main-nav[data-open="true"] { display: grid; }
  .main-nav a { padding: 12px 10px; }
  .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .hero { min-height: auto; padding: 64px 0 76px; }
  .hero-grid,
  .intro-grid,
  .story-grid,
  .two-col,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-portrait-wrap { margin: 0 auto; width: min(100%, 360px); }
  .hero-portrait-note { left: 18px; bottom: 18px; }
  .intro-grid,
  .story-grid,
  .two-col { gap: 46px; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-row a { margin-top: 4px; }
  .work-block { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { min-height: 360px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 24px); }
  .header-inner { min-height: 68px; }
  .main-nav { top: 68px; }
  .brand-copy span { display: none; }
  .section { padding: 70px 0; }
  .section-tight { padding: 54px 0; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(3.15rem, 17vw, 5.2rem); }
  .page-hero { padding: 72px 0 58px; }
  .page-hero h1 { font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-portrait-note { position: static; margin: 12px 0 0; max-width: none; }
  .fact-line { grid-template-columns: 1fr; gap: 2px; }
  .gallery-item img { min-height: 300px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
