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

:root {
  --navy: #0a1628;
  --deep: #060e1c;
  --gold: #c8a96e;
  --gold-light: #e8c98e;
  --white: #f5f3ef;
  --gray: #8a8f9a;
  --mid: #1a2540;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(6,14,28,0.97) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(6,14,28,0.97);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,243,239,0.7); text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 9px 22px; text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--deep); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(6,14,28,0.98);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding: 24px 32px; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,243,239,0.7); text-decoration: none;
}
.mobile-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 20px; text-align: center;
  margin-top: 8px;
}

/* ── HERO (home) ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #061018 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(200,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(10,22,40,0.8) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.0; margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(245,243,239,0.65); max-width: 480px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 38vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 48px 60px;
  background: linear-gradient(135deg, #0a1628 0%, #061018 100%);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem; color: rgba(245,243,239,0.55); max-width: 500px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--deep);
  padding: 16px 36px; text-decoration: none; font-weight: 600;
  transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(245,243,239,0.3);
  padding: 16px 36px; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION UTILITIES ── */
.section-pad { padding: 100px 48px; }
.bg-navy { background: var(--navy); }
.bg-deep { background: var(--deep); }
.section-divider-top {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 80px;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; margin-bottom: 48px; line-height: 1.1;
}

/* ── VIDEO ── */
.video-wrapper { max-width: 1100px; margin: 0 auto; }
.video-embed {
  width: 100%; aspect-ratio: 16/9;
  border: 1px solid rgba(200,169,110,0.2); display: block;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 0;
}
.service-card {
  background: var(--navy); padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover { border-color: var(--gold); background: var(--mid); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(200,169,110,0.2); line-height: 1; margin-bottom: 20px; display: block;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.service-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(245,243,239,0.6); }

/* ── SERVICES FULL (services page) ── */
.services-grid-full { display: flex; flex-direction: column; gap: 2px; }
.service-card-full {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--mid); min-height: 380px;
}
.service-card-full:nth-child(even) { }
.service-card-img { overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
  transition: transform 0.6s, filter 0.4s;
}
.service-card-full:hover .service-card-img img {
  transform: scale(1.04); filter: brightness(0.9) saturate(1);
}
.service-card-body {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.service-card-full:hover .service-card-body { border-color: var(--gold); }
.service-list {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  font-size: 0.88rem; color: rgba(245,243,239,0.5);
  padding-left: 16px; position: relative;
}
.service-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}

/* ── STATS ── */
.stats-bar {
  background: var(--gold); padding: 48px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; color: var(--deep); line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(6,14,28,0.65); margin-top: 6px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}
.gallery-grid-full { grid-auto-rows: 300px; }
.gallery-item { overflow: hidden; position: relative; background: var(--mid); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.1); }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.normal { grid-column: span 4; }
.gallery-item.half { grid-column: span 6; }

/* ── BEFORE / AFTER ── */
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px;
}
.ba-grid img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
}
.ba-line { height: 2px; background: var(--gold); }
.ba-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); padding: 10px 0;
  border-bottom: 1px solid rgba(200,169,110,0.2); margin-bottom: 12px;
}
.ba-desc { font-size: 0.9rem; color: rgba(245,243,239,0.55); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--mid); padding: 80px 48px; text-align: center;
  border-top: 1px solid rgba(200,169,110,0.15);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem; color: rgba(245,243,239,0.55); margin-bottom: 36px;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  margin-bottom: 24px; line-height: 1.15;
}
.contact-heading em { font-style: italic; color: var(--gold-light); }
.contact-body {
  font-size: 1rem; line-height: 1.7;
  color: rgba(245,243,239,0.6); margin-bottom: 40px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px;
}
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
}
.contact-detail-text strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif; margin-bottom: 3px;
}
.contact-detail-text span { font-size: 0.95rem; color: rgba(245,243,239,0.7); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,243,239,0.05);
  border: 1px solid rgba(245,243,239,0.12);
  color: var(--white); padding: 14px 18px;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.25s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--deep);
  padding: 18px 40px; border: none; cursor: pointer;
  font-weight: 600; transition: all 0.25s; margin-top: 8px; align-self: flex-start;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--deep); padding: 40px 48px;
  border-top: 1px solid rgba(200,169,110,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.82rem; color: rgba(245,243,239,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,243,239,0.4); text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  #hero, .page-hero { padding-left: 24px; padding-right: 24px; }
  .section-pad { padding: 60px 24px; }
  .stats-bar { padding: 36px 24px; }
  footer { padding: 30px 24px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide, .gallery-item.normal, .gallery-item.half { grid-column: span 1; }

  .ba-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-card-full { grid-template-columns: 1fr; }
  .service-card-img { height: 240px; }
  .service-card-body { padding: 36px 28px; }
  .cta-band { padding: 60px 24px; }
}
