/* ============================================================
   ESSY BLIZZY EVENTS — Design System & Global Styles
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --ivory:       #FAF7F2;
  --champagne:   #F0E6D3;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #9E7840;
  --charcoal:    #2C2925;
  --charcoal-mid:#4A4540;
  --warm-gray:   #9E9891;
  --white:       #FFFFFF;
  --black:       #1A1714;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 80px;
  --max-w: 1440px;
  --pad:   clamp(1.5rem, 5vw, 5rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* --- Custom Cursor --- */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.3s, opacity 0.3s;
  opacity: 0.7;
}
body.cursor-hover #cursor { width: 6px; height: 6px; background: var(--charcoal); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--charcoal); opacity: 0.25; }

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.1s forwards;
}
.loader-logo span { color: var(--gold); font-style: italic; }
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.loader-bar-inner {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loadBar 1s var(--ease-out) 0.3s forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Navigation --- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,41,37,0.07);
}
#nav.dark {
  background: transparent;
}
#nav.dark.scrolled {
  background: rgba(28, 24, 20, 0.92);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory);
  transition: color 0.4s;
  line-height: 1;
}
.nav-logo span { color: var(--gold); font-style: italic; }
#nav.scrolled .nav-logo { color: var(--charcoal); }
#nav.dark.scrolled .nav-logo { color: var(--ivory); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
#nav.scrolled .nav-links a { color: var(--charcoal-mid); }
#nav.scrolled .nav-links a:hover { color: var(--gold); }
#nav.dark.scrolled .nav-links a { color: rgba(250,247,242,0.8); }
#nav.dark.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 0.65rem 1.6rem;
  border-radius: 0;
  transition: background 0.3s, color 0.3s !important;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s var(--ease-out);
}
#nav.scrolled .hamburger span { background: var(--charcoal); }

/* Mobile Nav Drawer */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
#mobile-nav.open { opacity: 1; pointer-events: all; }
#mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
#mobile-nav a:hover { color: var(--gold); }
.mobile-nav-footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  text-transform: uppercase;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(5rem, 10vw, 10rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 6rem) 0; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}
.h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--charcoal);
}
.body-text {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--charcoal-mid);
  font-weight: 300;
}
.italic { font-style: italic; }
.gold-text { color: var(--gold); }
.light-text { color: var(--ivory); }
.center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: color 0.35s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}
.btn-gold::before { background: var(--charcoal); }
.btn-gold:hover { color: var(--ivory); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250,247,242,0.4);
}
.btn-outline::before { background: var(--ivory); }
.btn-outline:hover { color: var(--charcoal); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(44,41,37,0.35);
}
.btn-outline-dark::before { background: var(--charcoal); }
.btn-outline-dark:hover { color: var(--ivory); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}
.btn-arrow:hover { gap: 0.9rem; }
.btn-arrow svg { transition: transform 0.3s var(--ease-out); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* --- Image Masking --- */
.img-mask {
  overflow: hidden;
}
.img-mask img {
  transform: scale(1.08);
  transition: transform 0.8s var(--ease-out);
}
.img-mask:hover img { transform: scale(1); }

/* Parallax */
.parallax-img {
  will-change: transform;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  object-position: center 30%;
  transition: transform 12s var(--ease-out);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.78) 0%, rgba(28,24,20,0.3) 50%, rgba(28,24,20,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(4rem, 8vh, 8rem);
  max-width: 1100px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.8s; }
.hero-line:nth-child(2) { animation-delay: 1.0s; font-style: italic; color: var(--gold-light); }
.hero-line:nth-child(3) { animation-delay: 1.1s; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(0.88rem, 1.3vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,0.72);
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 2s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  padding: 1.8rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(250,247,242,0.12);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: none;
}
.service-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.85) 0%, rgba(28,24,20,0.1) 60%);
  transition: background 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card:hover .service-card-img::after {
  background: linear-gradient(to top, rgba(28,24,20,0.92) 0%, rgba(28,24,20,0.35) 60%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 1;
}
.service-card-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.service-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
}
.service-card:hover .service-card-desc { max-height: 100px; opacity: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s var(--ease-out);
}
.service-card:hover .service-card-link { opacity: 1; transform: none; }

/* ============================================================
   STORY / ABOUT SECTION
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.story-image-col {
  position: relative;
  aspect-ratio: 3/4;
}
.story-image-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.story-image-accent {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: 0 20px 60px rgba(28,24,20,0.2);
}
.story-text-col {
  padding: clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vw, 7rem);
}
.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 2.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--champagne);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ============================================================
   PORTFOLIO / GALLERY SECTION
   ============================================================ */
.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}
.port-item { overflow: hidden; cursor: none; }
.port-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; aspect-ratio: 4/5; }
.port-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; aspect-ratio: 3/5; }
.port-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; aspect-ratio: 4/5; margin-top: 3rem; }
.port-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; aspect-ratio: 4/3; margin-top: -3rem; }
.port-item:nth-child(5) { grid-column: 5 / 10; grid-row: 2; aspect-ratio: 16/10; }
.port-item:nth-child(6) { grid-column: 10 / 13; grid-row: 2; aspect-ratio: 3/4; }
.port-item img { transition: transform 0.8s var(--ease-out); }
.port-item:hover img { transform: scale(1.06); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--charcoal); }
.process-section .h2, .process-section .label { color: var(--ivory); }
.process-section .label::before { background: var(--gold); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.2));
}
.process-step {
  padding: 0 2.5rem;
  text-align: center;
  position: relative;
}
.step-num {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin: 0 auto 2rem;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--charcoal); }
.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}
.step-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,0.5);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--champagne); overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  transition: transform 0.7s var(--ease-out);
}
.testimonial-card {
  min-width: calc(33.333% - 1.4rem);
  background: var(--ivory);
  padding: 3rem;
  position: relative;
  flex-shrink: 0;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.star { color: var(--gold); font-size: 0.8rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}
.author-event {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--warm-gray);
  margin-top: 0.15rem;
}
.testimonial-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testi-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(44,41,37,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); }
.testi-btn:hover svg { color: var(--charcoal); }
.testi-btn svg { color: var(--charcoal-mid); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--champagne);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--charcoal);
  cursor: none;
  gap: 1rem;
  text-align: left;
  width: 100%;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
}
.faq-answer-inner {
  padding-bottom: 1.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,0.7);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem var(--pad);
}
.cta-content .h2 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.cta-content p {
  color: rgba(250,247,242,0.7);
  margin-bottom: 3rem;
}
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: clamp(4rem, 7vw, 7rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,247,242,0.08);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.footer-brand-name span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,0.45);
  max-width: 280px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(250,247,242,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,0.45);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250,247,242,0.5);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(250,247,242,0.25);
  letter-spacing: 0.06em;
}
.footer-credits {
  font-size: 0.72rem;
  color: rgba(250,247,242,0.2);
  letter-spacing: 0.04em;
}
.footer-credits a {
  color: rgba(201,169,110,0.5);
  transition: color 0.3s;
}
.footer-credits a:hover { color: var(--gold); }

/* Sticky WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,0.45); }
.whatsapp-float svg { color: white; }

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */
.page-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.82) 0%, rgba(28,24,20,0.25) 65%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) clamp(3.5rem, 6vw, 6rem);
  width: 100%;
}
.page-hero-content .h1 { margin-bottom: 1rem; }
.page-hero-content p {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: rgba(250,247,242,0.7);
  max-width: 520px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.value-item {
  padding: 3rem;
  border: 1px solid var(--champagne);
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.value-item:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(201,169,110,0.08);
}
.value-icon { color: var(--gold); margin-bottom: 1.5rem; }
.value-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.value-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.team-card {
  position: relative;
}
.team-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-img img { transition: transform 0.7s var(--ease-out); }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline {
  position: relative;
  padding-left: 3rem;
  margin-top: 4rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-3.5px);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-mid);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--champagne);
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail:nth-child(even) .service-detail-text { order: 1; }
.service-detail-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.service-detail-img img { transition: transform 0.8s var(--ease-out); }
.service-detail:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: -1.5rem;
}
.service-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.service-detail-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-mid);
  margin-bottom: 2rem;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.service-include {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--charcoal-mid);
}
.service-include svg { color: var(--gold); flex-shrink: 0; }

.pricing-strip {
  background: var(--charcoal);
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.pricing-card {
  background: rgba(250,247,242,0.04);
  padding: 3.5rem 3rem;
  position: relative;
  transition: background 0.4s;
}
.pricing-card.featured {
  background: var(--gold);
}
.pricing-card:hover:not(.featured) { background: rgba(250,247,242,0.07); }
.pricing-tier {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-tier { color: rgba(28,24,20,0.65); }
.pricing-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-name { color: var(--charcoal); }
.pricing-start {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(250,247,242,0.45);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-start { color: rgba(28,24,20,0.55); }
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 2.5rem;
}
.pricing-card.featured .pricing-amount { color: var(--charcoal); }
.pricing-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250,247,242,0.6);
}
.pricing-card.featured .pricing-features li { color: rgba(28,24,20,0.7); }
.pricing-features li svg { color: var(--gold); flex-shrink: 0; }
.pricing-card.featured .pricing-features li svg { color: var(--charcoal); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(44,41,37,0.18);
  color: var(--charcoal-mid);
  transition: all 0.3s;
  cursor: none;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  cursor: none;
  position: relative;
}
.gallery-item img { transition: transform 0.7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--ivory); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(28,24,20,0.7), transparent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-caption { transform: none; }
.gallery-caption span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.06em;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,24,20,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: var(--pad);
}
#lightbox.active { opacity: 1; pointer-events: all; }
#lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: rgba(250,247,242,0.6);
  transition: color 0.3s;
  cursor: none;
}
#lightbox-close:hover { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8rem;
  align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 3rem); }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--champagne);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--champagne);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-form { padding-top: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 0.6rem;
}
.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(44,41,37,0.2);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--warm-gray); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: none; }
.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover { color: var(--charcoal); }
.form-success {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon { color: var(--gold); margin: 0 auto 1.5rem; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.form-success p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-image-col { aspect-ratio: 16/9; }
  .story-image-accent { display: none; }
  .story-text-col { padding: 3rem 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .port-item { grid-column: auto !important; grid-row: auto !important; margin-top: 0 !important; aspect-ratio: 4/3; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail:nth-child(even) .service-detail-img,
  .service-detail:nth-child(even) .service-detail-text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-info { position: static; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .portfolio-intro { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #mobile-nav { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
  .trust-sep { display: none; }
  .trust-bar { gap: 1.5rem; justify-content: flex-start; }
  .testimonial-card { min-width: calc(85vw); }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .service-detail { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-bar { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { transition: none; }
}
