*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a34a;
  --gold-light: #d8b25b;
  --gold-dim: rgba(201,163,74,0.25);
  --bg: #080808;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --subtle: rgba(255,255,255,0.40);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { -webkit-overflow-scrolling: touch; }

::selection { background: var(--gold); color: #000; }

/* ── BACKGROUND GLOW ── */
.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at top, rgba(201,163,74,0.14), transparent 40%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), transparent 20%, transparent 80%, rgba(201,163,74,0.05));
}

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: var(--safe-top);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-img {
  height: 40px; width: auto; object-fit: contain;
  /* Render at half the image's natural size for sharp retina display */
  max-width: 200px;
  filter: drop-shadow(0 0 8px rgba(201,163,74,0.3));
  transition: filter 0.2s;
}
.logo-link:hover .logo-img { filter: drop-shadow(0 0 14px rgba(201,163,74,0.55)); }
.logo-text { line-height: 1.2; }
.logo-name { font-size: 0.72rem; letter-spacing: 0.3em; color: var(--gold); font-weight: 500; }
.logo-sub  { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--subtle); }

/* Desktop nav */
nav { display: flex; gap: 2rem; }
nav a {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
  padding: 0.5rem 0;
}
nav a:hover { color: #fff; }
.desktop-only { display: inline-flex; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
  -webkit-tap-highlight-color: transparent;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.hamburger:active { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(4,4,4,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: var(--safe-bottom);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; padding: 2rem;
}
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500;
  color: rgba(255,255,255,0.85); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding: 0.5rem 1.5rem;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:active { color: var(--gold); }
.mobile-cta { margin-top: 1rem; text-align: center; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-gold {
  text-decoration: none;
  border-radius: 9999px; border: 1px solid rgba(201,163,74,0.4);
  background: var(--gold); padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 500; color: #000;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-gold:active { background: var(--gold-light); }
@media (hover: hover) { .btn-gold:hover { background: var(--gold-light); transform: scale(1.02); } }

.btn-gold-lg {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 9999px;
  background: var(--gold); padding: 1rem 1.75rem;
  font-weight: 500; color: #000; min-height: 44px;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold-lg:active { background: var(--gold-light); }
@media (hover: hover) { .btn-gold-lg:hover { background: var(--gold-light); transform: scale(1.01); } }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  padding: 1rem 1.75rem; font-weight: 500; color: #fff; min-height: 44px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:active { background: rgba(255,255,255,0.10); }
@media (hover: hover) { .btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.10); } }

/* ── LAYOUT ── */
main { position: relative; z-index: 1; }
.container {
  max-width: 1280px; margin: 0 auto;
  padding-left: calc(1.5rem + var(--safe-left));
  padding-right: calc(1.5rem + var(--safe-right));
}
section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 5rem 0; } }

/* ── HERO ── */
.hero {
  display: grid; align-items: center; gap: 3rem;
  min-height: 88svh;
  padding: 3rem 1.5rem;
  padding-left: calc(1.5rem + var(--safe-left));
  padding-right: calc(1.5rem + var(--safe-right));
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1.1fr 0.9fr; padding: 5rem 2rem; } }

.hero-badge {
  display: inline-flex; border-radius: 9999px;
  border: 1px solid rgba(201,163,74,0.25);
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1rem;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: #d6b768;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 600; line-height: 1.15; color: #fff; margin-top: 1.25rem;
}
h1 span { display: block; color: var(--gold); }
.hero-sub { font-size: clamp(0.95rem, 2.5vw, 1.1rem); line-height: 1.8; color: var(--muted); max-width: 38rem; margin-top: 1.25rem; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-pills {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  max-width: 38rem; margin-top: 1.75rem;
}
.hero-pill {
  border-radius: 1rem; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); padding: 1rem;
}
.pill-top { font-size: 0.95rem; font-weight: 600; color: var(--gold); }
.pill-bot { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--subtle); margin-top: 0.2rem; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 480px) { .hero-visual { display: none; } }

.hero-visual-glow {
  position: absolute; inset: -3rem;
  background: radial-gradient(circle, rgba(201,163,74,0.18), transparent 60%);
  filter: blur(3rem); pointer-events: none;
}
.hero-logo-large {
  position: relative; width: 100%; max-width: 520px; height: auto;
  filter: drop-shadow(0 0 40px rgba(201,163,74,0.35)) drop-shadow(0 0 80px rgba(201,163,74,0.15));
  animation: floatLogo 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-logo-large { animation: none; } }
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── SECTION SHARED ── */
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 2.75rem); font-weight: 600; margin-top: 1rem; }
.section-sub { color: rgba(255,255,255,0.6); max-width: 38rem; margin-top: 1rem; line-height: 1.7; font-size: clamp(0.875rem, 2vw, 1rem); }

/* ── SERVICES ── */
.services-header {
  display: flex; gap: 2rem; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
@media (hover: hover) {
  .service-card:hover { transform: translateY(-4px); border-color: rgba(201,163,74,0.3); background: rgba(255,255,255,0.06); }
}
.service-icon {
  height: 44px; width: 44px; border-radius: 1rem;
  border: 1px solid rgba(201,163,74,0.25);
  background: rgba(201,163,74,0.06); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; padding: 8px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }
.service-card p { font-size: 0.875rem; line-height: 1.75; color: var(--muted); margin-top: 0.875rem; }

/* ── PROCESS ── */
.process-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.process-intro { max-width: 48rem; margin-bottom: 2.5rem; }
.process-card {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: rgba(0,0,0,0.3); padding: 1.5rem;
}
.step-num { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.26em; color: var(--gold); }
.process-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-top: 1.25rem; }
.process-card p { font-size: 0.875rem; line-height: 1.75; color: var(--muted); margin-top: 0.875rem; }

/* ── VALUE + FAQ ── */
.value-faq-grid { display: grid; gap: 1.25rem; }
@media (min-width: 1024px) { .value-faq-grid { grid-template-columns: 0.95fr 1.05fr; } }

.value-card {
  border-radius: 1.75rem;
  border: 1px solid rgba(201,163,74,0.2);
  background: linear-gradient(160deg, rgba(201,163,74,0.18), rgba(255,255,255,0.02));
  padding: 2rem;
}
.value-card .eyebrow { font-size: 0.65rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(0,0,0,0.7); }
.value-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; margin-top: 1rem; }
.value-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.80); font-size: 0.875rem; line-height: 1.75; }
.value-dot { margin-top: 0.6rem; height: 10px; width: 10px; border-radius: 50%; background: #000; flex-shrink: 0; }

.faq-card { border-radius: 1.75rem; border: 1px solid var(--border); background: rgba(255,255,255,0.03); padding: 2rem; }
.faq-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; margin-top: 1rem; }
.faq-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.875rem; }

details {
  border-radius: 1rem; border: 1px solid var(--border);
  background: rgba(0,0,0,0.25); padding: 1.125rem;
}
summary {
  cursor: pointer; list-style: none;
  font-size: 0.95rem; font-weight: 500; color: #fff;
  -webkit-tap-highlight-color: transparent;
  user-select: none; -webkit-user-select: none;
}
summary::-webkit-details-marker { display: none; }
.summary-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.summary-plus { color: var(--gold); font-size: 1.3rem; transition: transform 0.2s; flex-shrink: 0; }
details[open] .summary-plus { transform: rotate(45deg); }
details p { font-size: 0.875rem; line-height: 1.75; color: var(--muted); padding-top: 0.875rem; }

/* ── CTA ── */
.cta-container { padding-bottom: calc(2rem + var(--safe-bottom)); }
.cta-wrap {
  border-radius: 2rem; overflow: hidden;
  border: 1px solid rgba(201,163,74,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(201,163,74,0.08));
  padding: 2rem;
}
@media (min-width: 768px) { .cta-wrap { padding: 3rem; } }
.cta-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1.1fr 0.9fr; } }
.cta-eyebrow { font-size: 0.65rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 600; margin-top: 1rem; max-width: 36rem; }
.cta-sub { font-size: clamp(0.9rem, 2vw, 1rem); line-height: 1.8; color: rgba(255,255,255,0.7); margin-top: 1.25rem; max-width: 38rem; }
.cta-card {
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: rgba(0,0,0,0.3); padding: 1.5rem;
}
.cta-card .label { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-top: 0.75rem; }
.cta-card p { font-size: 0.875rem; line-height: 1.75; color: var(--muted); margin-top: 1rem; }
.cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* Full-width buttons on small screens */
@media (max-width: 480px) {
  .hero-btns .btn-gold-lg,
  .hero-btns .btn-outline,
  .cta-btns .btn-gold-lg,
  .cta-btns .btn-outline { width: 100%; justify-content: center; }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + var(--safe-bottom));
  text-align: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 768px) {
  nav { display: none; }
  .desktop-only { display: none !important; }
  .hamburger { display: flex; }
  .header-inner { padding: 0.75rem 1.25rem; }
  .logo-name { font-size: 0.65rem; letter-spacing: 0.22em; }
  .logo-sub { display: none; }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .mobile-menu { display: none !important; }
}

@media (max-width: 896px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 2rem; padding-bottom: 2rem; }
  h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
}
