/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #0a0906; scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   VARIABLES
============================================================ */
:root {
  --bg:        #0a0906;
  --bg-alt:    #0f0d0a;
  --bg-card:   #141210;
  --border:    rgba(200,169,110,0.12);
  --border-mid: rgba(200,169,110,0.22);
  --gold:      #c8a96e;
  --gold-light: #d9bc8a;
  --gold-pale: rgba(200,169,110,0.08);
  --text:      #f0ebe2;
  --text-sub:  #8a847c;
  --text-muted: #4a4640;
  --radius:    2px;
  --header-h:  72px;
}

/* ============================================================
   CURSOR
============================================================ */
@media (pointer: fine) {
  * { cursor: none !important; }
  .cursor {
    position: fixed; width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.2s ease;
  }
  .cursor-follower {
    position: fixed; width: 32px; height: 32px;
    border: 1px solid rgba(200,169,110,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.2s ease, border-color 0.3s ease;
  }
}

/* ============================================================
   LOADER
============================================================ */
.loader {
  position: fixed; inset: 0; background: var(--bg); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--gold);
  letter-spacing: 8px; margin-bottom: 32px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 160px; height: 1px; background: rgba(200,169,110,0.2); margin: 0 auto;
}
.loader-progress {
  height: 100%; background: var(--gold); width: 0%;
  transition: width 0.05s linear;
}
@keyframes loaderPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

/* ============================================================
   CONTAINER
============================================================ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 6%; }
section[id] { scroll-margin-top: var(--header-h); }

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h); padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#site-header.scrolled {
  background: rgba(8,7,5,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.logo-link { display: flex; align-items: center; }
.logo { height: 40px; width: auto; object-fit: contain; object-position: left center; }

nav { display: flex; gap: 36px; }
nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-sub); text-decoration: none;
  transition: color 0.2s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 24px; }
.header-social-link { color: var(--text-sub); transition: color 0.2s; display: flex; }
.header-social-link:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); background: var(--gold); text-decoration: none;
  padding: 10px 22px; border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.mobile-call-btn {
  display: none;
  align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg); background: var(--gold); text-decoration: none;
  padding: 10px 18px; border-radius: 999px;
  transition: background 0.2s;
}
.mobile-call-btn:hover { background: var(--gold-light); }

@media (max-width: 1024px) {
  .mobile-call-btn { display: flex; }
}

.nav-hamburger {
  display: none; background: none; border: none; cursor: none;
  padding: 6px; flex-direction: column; gap: 7px; align-items: flex-end;
}
.nav-hamburger span {
  display: block; height: 1px; background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 24px; }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(8,7,5,0.98);
  backdrop-filter: blur(24px); z-index: 400;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 6%; background: none; border: none;
  color: var(--text-sub); transition: color 0.2s; display: flex;
}
.mobile-nav-close:hover { color: var(--text); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 48px; }
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300;
  color: var(--text); text-decoration: none; line-height: 1.15;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-phone {
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--border-mid); border-radius: 999px; padding: 12px 28px;
  transition: background 0.2s;
}
.mobile-nav-phone:hover { background: var(--gold-pale); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block; text-decoration: none; border: none;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; line-height: 1;
  padding: 18px 36px; border-radius: 999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
  will-change: transform;
}
.btn-primary { background: var(--gold); color: #0a0906; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,169,110,0.35); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-sub); border: 1px solid var(--border-mid); }
.btn-outline:hover { color: var(--text); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  height: 100vh; height: 100dvh; min-height: 640px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 110%; object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  will-change: transform;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,6,4,0.88) 0%, rgba(8,6,4,0.55) 50%, rgba(8,6,4,0.4) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative; z-index: 2; padding: 0 6%;
  max-width: 820px; padding-top: var(--header-h);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.eyebrow-line { display: block; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 32px;
}
.title-line { display: block; }
.title-line-italic { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px; color: rgba(240,235,226,0.7); max-width: 480px;
  line-height: 1.8; margin-bottom: 44px; font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400;
  color: var(--gold); line-height: 1;
  display: inline-block; min-width: 2.5ch;
}
.stat-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.stat-l { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-sub); }
.hero-stat-div { width: 1px; height: 36px; background: var(--border); }

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 6%; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  overflow: hidden; border-top: 1px solid var(--border);
  background: rgba(8,6,4,0.7); backdrop-filter: blur(8px);
  padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-sub);
  transition: animation-duration 0.5s;
}
.ticker-dot { color: var(--gold); opacity: 0.5; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION LABELS & HEADERS
============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.section-header { margin-bottom: 72px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 300;
  letter-spacing: -1px; line-height: 1.05; color: var(--text);
}
.section-header h2 em { font-style: italic; color: var(--gold); }

/* ============================================================
   INTRO
============================================================ */
.intro { padding: 140px 0; background: var(--bg-alt); }
.intro-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start;
}
.intro-label {
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); padding-top: 8px;
}
.intro-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.5px; color: var(--text);
  margin-bottom: 24px;
}
.intro-large em { font-style: italic; color: var(--gold); }
.intro-body { font-size: 16px; color: var(--text-sub); line-height: 1.9; max-width: 540px; margin-bottom: 32px; font-weight: 300; }
.intro-available {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: var(--text-sub);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,0.5)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0)} }

/* ============================================================
   WORK / GALLERY
============================================================ */
.work { padding: 120px 0 80px; background: var(--bg); overflow: hidden; }
.work .section-header h2 em { font-style: italic; color: var(--gold); }

.work-scroll-container { overflow-x: auto; padding: 0 6% 0; scrollbar-width: none; margin-bottom: 40px; }
.work-scroll-container::-webkit-scrollbar { display: none; }

.work-track {
  display: flex; gap: 20px; padding-bottom: 8px;
  width: max-content;
}

.work-item { width: 480px; flex-shrink: 0; position: relative; }
.work-img-wrap {
  height: 600px; overflow: hidden; border-radius: 4px;
  background: var(--bg-card); margin-bottom: 16px;
}
.work-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.work-item:hover .work-img-wrap img { transform: scale(1.04); }

.work-label { display: flex; justify-content: space-between; align-items: center; padding: 0 4px; }
.work-type { font-size: 13px; font-weight: 500; color: var(--text); }
.work-location { font-size: 12px; color: var(--text-sub); letter-spacing: 0.5px; }

.work-nav {
  display: flex; align-items: center; gap: 24px; padding: 0 6%; margin-bottom: 32px;
}
.work-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-mid); background: transparent;
  color: var(--text-sub); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.work-btn:hover { background: var(--gold-pale); color: var(--gold); border-color: var(--gold); }
.work-progress { flex: 1; height: 1px; background: var(--border); position: relative; }
.work-progress-bar { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); transition: width 0.3s ease; }

.work-instagram { padding: 0 6%; }
.instagram-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-sub); text-decoration: none;
  transition: color 0.2s;
}
.instagram-link:hover { color: var(--gold); }

/* ============================================================
   SERVICES
============================================================ */
.services { padding: 120px 0; background: var(--bg-alt); }
.services-inner { display: grid; grid-template-columns: 340px 1fr; gap: 100px; align-items: start; }
.services-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 60px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.services-left h2 em { font-style: italic; color: var(--gold); }
.services-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 300; }

.service-row {
  display: flex; align-items: flex-start; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s ease, border-bottom-color 0.3s ease;
  position: relative;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 8px; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 1px; padding-top: 3px; flex-shrink: 0; width: 28px;
}
.service-info { flex: 1; }
.service-info h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px; }
.service-info p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
.service-arrow {
  font-size: 18px; color: var(--text-muted); padding-top: 2px; flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.service-row:hover .service-arrow { color: var(--gold); transform: translateX(4px); }

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
  background: var(--gold); padding: 48px 6%;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 300;
  color: #0a0906; letter-spacing: -0.5px;
}
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: #0a0906; color: var(--gold); }
.cta-strip .btn-primary:hover { background: #1a1512; }
.cta-strip .btn-outline { border-color: rgba(10,9,6,0.3); color: #0a0906; }
.cta-strip .btn-outline:hover { background: rgba(10,9,6,0.08); border-color: #0a0906; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: 120px 0; background: var(--bg); overflow: hidden; }
.reviews-rating {
  display: flex; align-items: center; gap: 20px; margin-top: 32px;
}
.rating-score {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; }
.rating-count { font-size: 12px; color: var(--text-sub); letter-spacing: 0.5px; }

.reviews-carousel-wrap { position: relative; overflow: hidden; margin-bottom: 32px; }
.reviews-track {
  display: flex; gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.review-card {
  min-width: 380px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.review-card p { font-size: 15px; color: rgba(240,235,226,0.8); line-height: 1.8; margin-bottom: 28px; font-style: italic; font-weight: 300; }
.review-author { border-top: 1px solid var(--border); padding-top: 20px; }
.review-name { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.review-via { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

.review-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-mid);
  background: rgba(10,9,6,0.8); backdrop-filter: blur(8px);
  color: var(--text-sub); display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.review-nav-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.review-prev { left: -22px; }
.review-next { right: -22px; }

.reviews-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; }
.reviews-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-muted); transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }

.reviews-cta { text-align: center; }

/* ============================================================
   INSTAGRAM SECTION
============================================================ */
.instagram-section { padding: 120px 0; background: var(--bg-alt); overflow: hidden; }

.insta-feed-wrap { padding: 0 6%; }

.insta-feed-grid {
  display: none; /* shown only if we add real grid items */
}

.insta-placeholder {
  display: flex; justify-content: center; margin-bottom: 48px;
}

.insta-follow-card {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 48px 64px; border: 1px solid var(--border);
  border-radius: 4px; background: var(--bg-card);
  text-decoration: none; color: var(--text-sub);
  transition: border-color 0.3s, transform 0.3s, color 0.3s;
}
.insta-follow-card:hover { border-color: var(--gold); transform: translateY(-4px); color: var(--gold); }
.insta-follow-card svg { color: var(--gold); }
.insta-handle { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.3px; }
.insta-cta-text { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

/* Instagram embeds container */
.insta-embeds {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  margin-bottom: 48px;
}
.insta-embeds .instagram-media {
  flex: 1 1 320px; max-width: 400px !important; min-width: 280px !important;
  border-radius: 4px !important; overflow: hidden;
}

.insta-footer { text-align: center; padding: 0 6%; }
.insta-btn {
  display: inline-flex; align-items: center; gap: 10px;
}

/* ============================================================
   PROCESS
============================================================ */
.process { padding: 120px 0; background: var(--bg); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
}
.process-step { flex: 1; padding-right: 60px; }
.process-connector {
  width: 1px; background: var(--border); align-self: stretch;
  flex-shrink: 0; margin-top: 16px; margin-right: 60px;
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px; font-weight: 800; letter-spacing: -3px;
  color: var(--gold); opacity: 0.18; line-height: 1;
  margin-bottom: 24px;
}
.process-step h3 { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 14px; letter-spacing: -0.3px; }
.process-step p { font-size: 14px; color: var(--text-sub); line-height: 1.9; font-weight: 300; }

/* ============================================================
   AREAS
============================================================ */
.areas { padding: 120px 0; background: var(--bg-alt); }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.areas-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.areas-left h2 em { font-style: italic; color: var(--gold); }
.areas-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.areas-note { font-size: 13px; color: var(--text-muted); }
.areas-note a { color: var(--text-sub); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.2s, border-color 0.2s; }
.areas-note a:hover { color: var(--gold); border-color: var(--gold); }

.areas-right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.areas-primary, .areas-secondary {
  padding: 36px; border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg);
}
.areas-primary h4, .areas-secondary h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.areas-primary ul, .areas-secondary ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.areas-primary li, .areas-secondary li {
  font-size: 15px; color: var(--text); font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.area-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.7; }

/* ============================================================
   QUOTE
============================================================ */
.quote { padding: 120px 0; background: var(--bg); }
.quote-inner { display: grid; grid-template-columns: 380px 1fr; gap: 100px; align-items: start; }
.quote-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--text); margin-bottom: 20px;
}
.quote-left h2 em { font-style: italic; color: var(--gold); }
.quote-left p { font-size: 15px; color: var(--text-sub); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }

.quote-contact-links { display: flex; flex-direction: column; gap: 16px; }
.quote-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  text-decoration: none; transition: color 0.2s;
}
.quote-link:hover { color: var(--gold); }
.quote-link svg { color: var(--gold); flex-shrink: 0; }

.quote-form { display: flex; flex-direction: column; gap: 20px; }
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-sub);
}
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text); font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 400; line-height: 1.5;
  padding: 14px 18px; border-radius: 2px;
  outline: none; width: 100%; -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235e5854' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field select option { background: #141210; color: var(--text); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #c0392b;
}

.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.form-submit-btn { cursor: none; }

.form-success { display: none; text-align: center; padding: 80px 40px; }
.success-inner { max-width: 360px; margin: 0 auto; }
.success-inner svg { color: var(--gold); margin: 0 auto 24px; }
.success-inner h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--text); margin-bottom: 12px; }
.success-inner p { font-size: 15px; color: var(--text-sub); }

/* ============================================================
   FOOTER
============================================================ */
footer { background: #050403; padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo { height: 36px; width: auto; object-fit: contain; object-position: left; margin-bottom: 20px; opacity: 0.8; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--text-muted); text-decoration: none; display: flex; transition: color 0.2s; }
.footer-socials a:hover { color: var(--gold); }
.footer-links h4, .footer-contact-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-links a, .footer-contact-col a, .footer-contact-col span {
  display: block; font-size: 14px; color: var(--text-muted);
  text-decoration: none; margin-bottom: 12px; transition: color 0.2s;
}
.footer-links a:hover, .footer-contact-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FLOATING ACTIONS
============================================================ */
.floating-actions { position: fixed; bottom: 28px; right: 28px; z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.float-btn:hover { transform: translateY(-2px); }
.float-call { background: #fff; color: #111; }
.float-call:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.6); }
.float-whatsapp { background: #25D366; color: #fff; }
.float-whatsapp:hover { box-shadow: 0 14px 40px rgba(37,211,102,0.4); }

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .intro-inner { grid-template-columns: 140px 1fr; gap: 48px; }
  .services-inner { grid-template-columns: 280px 1fr; gap: 60px; }
  .quote-inner { grid-template-columns: 300px 1fr; gap: 60px; }
}

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  nav { display: none; }
  .nav-hamburger { display: flex; }
  .header-right .header-social-link { display: none; }

  .intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .intro-label { display: none; }

  .services-inner { grid-template-columns: 1fr; gap: 60px; }
  .services-left { max-width: 500px; }

  .areas-inner { grid-template-columns: 1fr; gap: 48px; }

  .quote-inner { grid-template-columns: 1fr; gap: 56px; }
  .quote-left { max-width: 500px; }

  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .process-steps { flex-direction: column; gap: 0; }
  .process-connector { width: 1px; height: 40px; align-self: auto; margin: 0 0 0 18px; }
  .process-step { padding-right: 0; padding-bottom: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 20px; }
  .hero-stat-div { display: none; }

  .work-item { width: 320px; }
  .work-img-wrap { height: 400px; }

  .areas-right { grid-template-columns: 1fr; }

  .review-card { min-width: 300px; }
  .review-prev { left: -16px; }
  .review-next { right: -16px; }

  .field-group { grid-template-columns: 1fr; }

  .cta-strip-inner { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .intro, .services, .reviews, .process, .areas, .quote, .instagram-section { padding: 80px 0; }
  .work { padding: 80px 0 60px; }

  .insta-follow-card { padding: 36px 40px; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .logo { height: 32px; }
  .nav-cta { font-size: 10px; padding: 9px 14px; }

  .hero-eyebrow { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .work-item { width: 280px; }
  .work-img-wrap { height: 340px; }

  .review-card { min-width: 280px; padding: 28px; }

  .form-actions { flex-direction: column; }
  .form-actions .btn { text-align: center; }

  .footer-bottom { flex-direction: column; gap: 8px; }

  .floating-actions { bottom: 18px; right: 14px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; width: 52px; height: 52px; justify-content: center; gap: 0; }

  .intro, .services, .reviews, .process, .areas, .quote, .instagram-section { padding: 64px 0; }
}
