/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0b0d;
  --bg-soft: #15151a;
  --bg-elev: #1c1c22;
  --line: #2a2a32;
  --text: #f3efe6;
  --text-muted: #a8a39a;
  --gold: #c9a45c;
  --gold-soft: #d9b878;
  --gold-deep: #8a6a32;
  --max: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(11, 11, 13, .75);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand .mark {
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 25%, rgba(201,164,92,.12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 85%, rgba(201,164,92,.06), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(255,255,255,.015) 80px);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(255,255,255,.012) 120px);
  pointer-events: none;
}

/* Hero ornament */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.ornament .ln { width: 48px; height: 1px; background: var(--gold); opacity: .7; }
.ornament .dot { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.ornament.center { display: flex; justify-content: center; }

/* Page hero (sub-pages) — typographic */
.page-hero-typo {
  padding: 220px 0 120px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201,164,92,.08), transparent 60%);
}

/* Service display block (big italic numbers) */
.service-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0 32px 48px;
  border-left: 1px solid var(--gold-deep);
}
.service-display .display-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(120px, 16vw, 200px);
  color: var(--gold);
  line-height: .85;
  font-weight: 400;
}
.service-display .display-label {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-display .display-divider {
  width: 72px;
  height: 1px;
  background: var(--gold);
}

/* Manifesto / centered editorial block */
.manifesto {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.manifesto h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 28px;
}
.manifesto h2 em { color: var(--gold); font-style: italic; }
.manifesto p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 20px;
}
.manifesto .btn { margin-top: 24px; }

/* Pull quote */
.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.pull-quote::before {
  content: "“";
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 120px;
  color: var(--gold);
  line-height: .6;
  margin-bottom: 16px;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--text);
}
.pull-quote cite {
  display: block;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Menu cards (replaces gallery) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px 40px;
  position: relative;
  transition: border-color .3s var(--ease);
}
.menu-card:hover { border-color: var(--gold-deep); }
.menu-card-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.menu-card-head .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}
.menu-card-head h3 {
  font-size: 30px;
}
.menu-section { margin-bottom: 24px; }
.menu-section:last-of-type { margin-bottom: 0; }
.menu-section-label {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.menu-section ul { list-style: none; display: grid; gap: 10px; }
.menu-section li {
  color: var(--text);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.menu-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}
.menu-footnote {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Two-column text-only split */
.split-text-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.split-text-block:last-child { border-bottom: 1px solid var(--line); }
.split-text-block .col-left .eyebrow { margin-bottom: 20px; }
.split-text-block .col-left h2 {
  font-size: clamp(32px, 4vw, 48px);
}
.split-text-block .col-right p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .menu-grid { grid-template-columns: 1fr; }
  .split-text-block { grid-template-columns: 1fr; gap: 24px; }
  .service-display { padding-left: 24px; align-items: center; }
  .service-display { border-left: 0; border-top: 1px solid var(--gold-deep); padding-top: 32px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.2);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-head .eyebrow { margin-bottom: 20px; }

.section-head h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Services preview (home) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px 36px;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
}

.service-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.service-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card .arrow-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .arrow-link svg { transform: translateX(6px); }

/* ===== Split / About preview ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.split-img:hover img { transform: scale(1.05); }

.split-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 24px;
}

.split-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.split-text .btn { margin-top: 16px; }

/* ===== Stats strip ===== */
.stats {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}

.stat .label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: 200px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,164,92,.08), transparent 60%);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 20px;
  font-weight: 400;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }

.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* ===== Services detail blocks ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:nth-child(even) .service-block-img { order: 2; }

.service-block-img {
  aspect-ratio: 5/4;
  overflow: hidden;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
}

.service-block-text > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 1; }
.gallery-item.wide { aspect-ratio: 2/1; grid-column: span 2; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-detail:last-child { border-bottom: 1px solid var(--line); }

.contact-detail .icon {
  color: var(--gold);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail .label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail .value {
  color: var(--text);
  font-size: 16px;
}

.contact-detail a:hover { color: var(--gold); }

/* ===== Form ===== */
.form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px;
}

.form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 130px; }

.form .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-grid ul { list-style: none; display: grid; gap: 12px; }

.footer-grid a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color .2s var(--ease);
}

.footer-grid a:hover { color: var(--text); }

.footer-grid .brand { margin-bottom: 16px; }
.footer-about p { color: var(--text-muted); font-size: 14px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .08em;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    inset: 80px 0 auto 0;
    flex-direction: column;
    background: var(--bg-soft);
    padding: 24px 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { font-size: 14px; }

  .services-grid,
  .stats-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .split,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block:nth-child(even) .service-block-img { order: 0; }

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

  .section { padding: 80px 0; }
  .page-hero { padding: 160px 0 80px; }

  .form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid,
  .stats-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
