@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --gold: #C09234;
  --gold-light: #d4a84b;
  --gold-faint: #f7f0e3;
  --cream: #faf7f2;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-faint: #8a8a8a;
  --rule: #e8e0d0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,146,52,0.2);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: var(--black) !important;
  background: var(--gold);
  padding: 8px 20px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ── HERO ── */
.hero {
  margin-top: 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 88px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,146,52,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-body { max-width: 580px; }
.hero-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.hero-body p strong { color: rgba(255,255,255,0.9); font-weight: 400; }
.hero-body p:last-child { margin-bottom: 0; }

.hero-btn {
  display: inline-block;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--gold-light); }

/* ── GOLD BAND ── */
.gold-band {
  background: var(--gold);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gold-band p { font-size: 13px; color: var(--black); }
.gold-band strong { font-weight: 600; }
.band-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: 10px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.band-btn:hover { background: #222; }

/* ── SECTIONS ── */
.section {
  padding: 72px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.section-sm { padding: 48px 40px; max-width: 960px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 680px;
}
.body-text strong { color: var(--ink); font-weight: 500; }

/* ── SERVICES LIST ── */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  gap: 16px;
  transition: all 0.2s;
}
.service-item:first-child { border-top: 1px solid var(--rule); }
.service-item:hover { padding-left: 10px; }
.service-item:hover .service-arrow { background: var(--gold); color: #fff; transform: translateX(3px); }
.service-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.service-num { font-size: 10px; color: var(--gold); font-weight: 500; letter-spacing: 0.1em; width: 24px; flex-shrink: 0; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.service-desc { font-size: 13px; color: var(--ink-faint); margin-top: 3px; font-weight: 300; }
.service-arrow { width: 40px; height: 40px; border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; transition: all 0.2s; }

/* ── DARK SECTION ── */
.dark-section {
  background: var(--black);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(192,146,52,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.dark-section .inner { max-width: 960px; margin: 0 auto; position: relative; }
.dark-section .eyebrow { color: var(--gold); }
.dark-section .section-title { color: #fff; }
.dark-section .body-text { color: rgba(255,255,255,0.55); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--black-soft);
  border: 1px solid rgba(192,146,52,0.15);
  border-top: 3px solid var(--gold);
  padding: 28px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.testimonial-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CTA BLOCK ── */
.cta-block {
  text-align: center;
  padding: 72px 40px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(192,146,52,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block .inner { position: relative; }
.cta-block .eyebrow { color: var(--gold); margin-bottom: 12px; }
.cta-block h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-block p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 40px;
  text-decoration: none;
  transition: background 0.2s;
  margin: 0 8px 12px;
}
.cta-btn:hover { background: var(--gold-light); }
.cta-btn-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 40px;
  text-decoration: none;
  transition: all 0.2s;
  margin: 0 8px 12px;
}
.cta-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(192,146,52,0.12);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; font-weight:400; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; cursor: pointer; pointer-events: auto; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* ── UTILS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.divider { height: 1px; background: var(--rule); margin: 0 40px; }
.divider-dark { height: 1px; background: rgba(255,255,255,0.06); }
.text-gold { color: var(--gold); }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
    border-top: 1px solid rgba(192,146,52,0.2);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 24px; font-size: 14px; }
  .nav-cta { margin: 12px 24px; padding: 12px 20px !important; text-align: center; display: block; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 18px;
    background: none; border: none;
    cursor: pointer; padding: 0;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero, .dark-section, .cta-block { padding-left: 20px; padding-right: 20px; }
  .gold-band { padding: 16px 20px; }
  .section, .section-sm { padding: 48px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 40px 20px 28px; }
  .service-desc { display: none; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* Hide Netlify chat widget */
[data-netlify-identity-button],
netlify-identity-widget,
iframe[src*='netlify'],
iframe[src*='identity'],
.netlify-identity-widget { display: none !important; }


/* Hide video controls and play button */
video::-webkit-media-controls { display: none !important; }
video::-webkit-media-controls-enclosure { display: none !important; }
video::-webkit-media-controls-panel { display: none !important; }
video::-webkit-media-controls-play-button { display: none !important; }
video::-webkit-media-controls-start-playback-button { display: none !important; }
video.video-bg { pointer-events: none; }
