
:root {
  --bg: #0f1115;
  --bg-soft: #171b22;
  --card: #f7f2ea;
  --card-2: #fffdf9;
  --text: #e9e3d9;
  --text-muted: #b9b1a3;
  --heading: #fff8ef;
  --ink: #1e2024;
  --line: rgba(255,255,255,.10);
  --accent: #c68c4f;
  --accent-2: #8e6242;
  --accent-3: #d84d42;
  --sage: #6f8172;
  --max: 1220px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(198,140,79,.17), transparent 30%),
    radial-gradient(circle at right 20%, rgba(216,77,66,.09), transparent 24%),
    linear-gradient(180deg, #0f1115 0%, #12161d 28%, #1a1f28 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 90px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .9rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #f0d7b7;
  font-size: .83rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 700; margin: 0 0 1rem; }
.h1, h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.02em;
  line-height: 1.03;
  margin: 0 0 1rem;
  color: var(--heading);
}
.h1, h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.55rem, 2.1vw, 2rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: var(--text-muted); max-width: 62ch; }
.muted { color: var(--text-muted); }
.small { font-size: .95rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: 1.15fr .85fr; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.btns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff7ed; box-shadow: 0 12px 30px rgba(198,140,79,.22); }
.btn-secondary { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: var(--heading); }
.btn-light { background: var(--card-2); color: var(--ink); }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(10,12,16,.58);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .95rem;
  min-width: 0;
}
.brand-logo {
  width: 50px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  padding: .25rem;
}
.brand-copy strong { display: block; font-size: .96rem; letter-spacing: .08em; text-transform: uppercase; }
.brand-copy span { display: block; color: var(--text-muted); font-size: .84rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--heading); }
.menu-btn {
  display: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--heading);
  border-radius: 12px;
  padding: .7rem .82rem;
}
.hero { padding: 42px 0 86px; }
.hero-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.8rem;
  align-items: stretch;
}
.hero-copy {
  padding: 2rem 0 1rem;
}
.hero-copy .lead { max-width: 58ch; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stat {
  padding: 1.1rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stat strong { display: block; font-size: 1.35rem; color: var(--heading); }
.hero-stat span { display: block; color: var(--text-muted); font-size: .9rem; }
.hero-visual {
  position: relative;
  min-height: 610px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #1d2026;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,17,21,.06) 0%, rgba(15,17,21,.18) 44%, rgba(15,17,21,.72) 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(18,21,27,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}
.hero-badge strong { display: block; font-size: 1.08rem; color: #fff1de; }
.hero-badge span { color: #d5cab7; font-size: .92rem; }
.scroll-note { color: var(--text-muted); font-size: .92rem; margin-top: 1rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover figure img { transform: scale(1.04); }
.card-body { padding: 1.25rem; }
.card-body p { color: var(--text-muted); }
.link-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.chip-link {
  display: inline-flex;
  align-items: center;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--heading);
  font-size: .92rem;
  font-weight: 600;
}
.feature-panel {
  padding: 1.3rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(198,140,79,.13), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.09);
}
.media-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
  background: #23262d;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0 0 .9rem;
  color: var(--text-muted);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
.band {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.metric {
  padding: 1.2rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.metric strong { display: block; font-size: 1.65rem; color: var(--heading); }
.metric span { display: block; font-size: .92rem; color: var(--text-muted); }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; align-items: start; }
.story-cards { display: grid; gap: 1rem; }
.story-box {
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.story-box p { color: var(--text-muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
}
.gallery-stack { display: grid; gap: 1.2rem; }
.tall-figure, .wide-figure, .small-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.tall-figure { aspect-ratio: 4 / 5; }
.wide-figure { aspect-ratio: 16 / 10; }
.small-figure { aspect-ratio: 16 / 10; }
.tall-figure img, .wide-figure img, .small-figure img { width:100%; height:100%; object-fit:cover; }
.figure-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .6rem .85rem;
  border-radius: 14px;
  background: rgba(17,19,24,.73);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-weight: 700;
  font-size: .94rem;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.step {
  position: relative;
  padding: 1.15rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.step-number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  font-weight: 800;
  margin-bottom: .75rem;
}
.step p { color: var(--text-muted); }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.4rem;
  align-items: start;
}
.contact-card, .form-card, .faq-item {
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.contact-card { padding: 1.35rem; }
.contact-card p { color: var(--text-muted); }
.contact-card .btns { margin-top: 1.2rem; }
.form-card { padding: 1.1rem; overflow: hidden; min-height: 770px; }
.form-card iframe { width: 100% !important; min-height: 740px !important; border: 0 !important; }
.form-card script { display: block; width: 100%; }
.faq-grid { display: grid; gap: 1rem; }
.faq-item { padding: 1.15rem 1.15rem .9rem; }
.faq-item h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.faq-item p { color: var(--text-muted); margin: 0; }
.cta-banner {
  padding: 1.6rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(198,140,79,.28), rgba(111,129,114,.22));
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1rem;
  align-items: start;
}
.footer small, .footer p { color: var(--text-muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }
.footer-links a { color: var(--text-muted); font-weight: 600; }
.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;
}
@media (max-width: 1080px) {
  .grid-2, .hero-panel, .story-grid, .gallery-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .cards { grid-template-columns: repeat(2,1fr); }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); }
  .hero-visual { min-height: 440px; }
  .nav { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .menu-btn { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: .6rem 0 1.1rem;
  }
  .nav-links.open { display: flex; }
  .hero-stats, .metric-grid, .process, .cards, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .hero { padding-top: 28px; }
  .hero-visual { min-height: 320px; }
}
