/* ========================================
   Gaia Studio — SiteLift Demo
   Style.css — All pages
   ======================================== */

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

:root {
  --dark: #0c0b09;
  --dark-warm: #1a160f;
  --brand: #c8a87a;
  --brand-light: #dfc49c;
  --brand-dark: #9c7d52;
  --gold: #e8c97a;
  --white: #ffffff;
  --cream: #faf7f2;
  --cream-dark: #f0ebe2;
  --text: #2a1f10;
  --text-muted: #7a6a56;
  --text-light: #a89880;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 32px; font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all var(--transition); cursor: pointer;
}
.btn-gold {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 20px rgba(200,168,122,0.35);
}
.btn-gold:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,168,122,0.45); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { border-color: var(--brand); background: var(--brand); }
.btn-outline-dark { border: 1px solid var(--brand); color: var(--brand); }
.btn-outline-dark:hover { background: var(--brand); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-warm); transform: translateY(-2px); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); }
.section-dark-warm { background: var(--dark-warm); }

.label {
  display: block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header h2 { color: var(--text); margin-bottom: 16px; font-style: italic; }
.section-dark .section-header h2,
.section-dark-warm .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 580px; }
.section-header.center p { margin: 0 auto; }
.thin-rule {
  width: 48px; height: 1px; background: var(--brand);
  margin: 18px 0; display: block;
}
.section-header.center .thin-rule { margin: 18px auto; }

/* ---- Topbar ---- */
.topbar { background: var(--dark); padding: 10px 0; border-bottom: 1px solid rgba(200,168,122,0.15); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.5px; }
.topbar-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.topbar-item a:hover { color: var(--brand); }
.topbar-right { display: flex; gap: 24px; }

/* ---- Navbar ---- */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(200,168,122,0.2); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { text-align: center; }
.nav-logo .logo-word { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--text); letter-spacing: 1px; line-height: 1; }
.nav-logo .logo-tag { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); font-family: var(--font-body); font-weight: 400; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  transition: color var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-dark); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--brand);
}
.nav-book { font-size: 0.78rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--cream-dark); padding: 16px 28px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  min-height: 92vh; background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(200,168,122,0.1) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 25%, rgba(200,168,122,0.06) 0%, transparent 45%);
}

/* Shimmer sweep animation */
.hero-shimmer {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.hero-shimmer::before {
  content: '';
  position: absolute; top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(200,168,122,0.06) 50%, rgba(232,201,122,0.08) 55%, rgba(200,168,122,0.06) 60%, transparent 70%);
  animation: shimmerSweep 5s ease-in-out infinite;
  transform: skewX(-15deg);
}
@keyframes shimmerSweep {
  0% { left: -80%; }
  100% { left: 130%; }
}

/* Sparkle particles */
.sparkle { position: absolute; pointer-events: none; z-index: 2; }
.sparkle::before, .sparkle::after {
  content: '✦'; position: absolute;
  color: var(--brand); opacity: 0;
  animation: sparkleFade 3s ease-in-out infinite;
  font-size: 0.8rem;
}
.sparkle::after { animation-delay: 1.5s; font-size: 0.5rem; top: -12px; left: 8px; color: var(--gold); }
@keyframes sparkleFade {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  30% { opacity: 0.8; }
  60% { opacity: 0.4; transform: scale(1) translateY(-12px); }
}

.hero .container { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 28px; }
.hero-text .pre-label { color: rgba(200,168,122,0.7); font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-text .pre-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--brand); }
.hero-text h1 { color: var(--white); font-style: italic; margin-bottom: 8px; font-weight: 300; }
.hero-text h1 strong { font-weight: 600; font-style: normal; color: var(--brand-light); display: block; }
.hero-text p { color: rgba(255,255,255,0.6); font-size: 1rem; margin: 24px 0 40px; max-width: 420px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-book { display: flex; align-items: center; gap: 16px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-book-text { color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.5px; }
.hero-book a { color: var(--brand); font-size: 1.1rem; font-family: var(--font-heading); font-style: italic; }

/* Colour Swatch Visual */
.hero-visual { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.colour-showcase { position: relative; }
.colour-card {
  width: 260px; height: 200px; border-radius: 8px; position: relative;
  overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.colour-card:hover { transform: scale(1.02); }
.colour-card.main-card { width: 300px; height: 260px; }
.colour-gradient-1 { background: linear-gradient(135deg, #f5e6c8 0%, #d4a76a 30%, #8b6220 60%, #3d2407 100%); }
.colour-gradient-2 { background: linear-gradient(135deg, #1a0a00 0%, #6b3a1f 40%, #c8805a 70%, #f5d0a0 100%); }
.colour-gradient-3 { background: linear-gradient(135deg, #f0ece8 0%, #d4c4b0 40%, #9c8068 70%, #5c3e2a 100%); }
.colour-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9); padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
/* Shimmer overlay on colour cards */
.colour-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  background-size: 200% 100%; animation: cardShimmer 3s ease-in-out infinite;
}
@keyframes cardShimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

.hero-stats-row { display: flex; gap: 32px; margin-top: 16px; }
.h-stat { text-align: center; }
.h-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 500; color: var(--brand); font-style: italic; }
.h-stat-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ---- Banner ---- */
.brand-banner { background: var(--brand); padding: 18px 0; overflow: hidden; position: relative; }
.brand-banner-inner { display: flex; gap: 0; animation: marquee 18s linear infinite; white-space: nowrap; }
.brand-banner-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 32px; color: var(--white); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; flex-shrink: 0; }
.brand-banner-item::after { content: '✦'; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Services / Colour Cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-swatch {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  group: true;
}
.service-swatch-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.service-swatch:hover .service-swatch-bg { transform: scale(1.05); }
.service-swatch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.service-swatch-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.service-swatch h3 { color: var(--white); font-size: 1.4rem; font-style: italic; margin-bottom: 6px; }
.service-swatch p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-bottom: 16px; }
.service-swatch .swatch-link { color: var(--brand-light); font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 8px; opacity: 0; transition: opacity var(--transition); }
.service-swatch:hover .swatch-link { opacity: 1; }
/* Sparkle on hover */
.service-swatch::after {
  content: '✦'; position: absolute; top: 20px; right: 20px;
  color: var(--gold); font-size: 1.2rem; opacity: 0;
  transition: opacity var(--transition); animation: sparkleSpin 2s linear infinite paused;
}
.service-swatch:hover::after { opacity: 1; animation-play-state: running; }
@keyframes sparkleSpin { from { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.2); } to { transform: rotate(360deg) scale(1); } }

/* ---- About Section ---- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-left { background: var(--dark-warm); padding: 80px 64px 80px 28px; display: flex; align-items: center; justify-content: flex-end; }
.about-left-inner { max-width: 480px; }
.about-left .section-header h2 { color: var(--white); }
.about-left p { color: rgba(255,255,255,0.6); margin-bottom: 14px; font-size: 0.95rem; }
.about-right { background: var(--brand); padding: 80px 28px 80px 64px; display: flex; align-items: center; }
.about-right-inner { max-width: 400px; }
.about-stat-big { font-family: var(--font-heading); font-size: 4rem; font-weight: 300; color: var(--white); font-style: italic; line-height: 1; margin-bottom: 8px; }
.about-stat-big + p { color: rgba(255,255,255,0.8); font-size: 0.88rem; letter-spacing: 1px; }
.about-features { margin-top: 32px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.af-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0; margin-top: 8px; }
.about-feature h4 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; margin-bottom: 3px; }
.about-feature p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ---- Process ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(to right, var(--brand), var(--brand-light), var(--brand));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--cream);
  border: 1px solid var(--brand); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-heading); font-size: 1.4rem; font-style: italic; color: var(--brand);
  position: relative; background: var(--white);
  transition: all var(--transition);
}
.process-step:hover .step-num { background: var(--brand); color: var(--white); transform: scale(1.05); }
.process-step h4 { color: var(--text); font-family: var(--font-heading); font-size: 1rem; font-style: italic; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.84rem; }

/* ---- Reviews ---- */
.reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 32px; }
.review-stars { color: var(--brand); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-family: var(--font-heading); font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.review-author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: unset; min-height: 200px; }
.gallery-item-inner { position: absolute; inset: 0; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(200,168,122,0.2); }
.gallery-overlay span { color: var(--white); font-family: var(--font-heading); font-size: 1rem; font-style: italic; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ---- Services Page ---- */
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-item {
  padding: 44px 40px; border: 1px solid var(--cream-dark); position: relative;
  transition: all var(--transition); cursor: default;
}
.service-item:hover { background: var(--cream); border-color: var(--brand); }
.service-item-num { font-family: var(--font-heading); font-size: 3rem; font-style: italic; color: var(--cream-dark); position: absolute; top: 24px; right: 28px; line-height: 1; transition: color var(--transition); }
.service-item:hover .service-item-num { color: rgba(200,168,122,0.2); }
.service-item h3 { color: var(--text); font-size: 1.4rem; margin-bottom: 12px; font-style: italic; }
.service-item p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.service-includes { margin-top: 16px; }
.service-includes li { font-size: 0.84rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--cream-dark); display: flex; align-items: center; gap: 8px; }
.service-includes li::before { content: '—'; color: var(--brand); font-size: 0.8rem; }

/* ---- Contact ---- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: var(--dark); padding: 80px 48px 80px 28px; display: flex; justify-content: flex-end; }
.contact-left-inner { max-width: 440px; width: 100%; }
.contact-left h2 { color: var(--white); font-style: italic; margin-bottom: 12px; }
.contact-left > div > p { color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; }
.cd-icon { width: 44px; height: 44px; border: 1px solid rgba(200,168,122,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.cd-value { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.cd-value a { color: rgba(255,255,255,0.8); }
.contact-right { background: var(--cream); padding: 80px 28px 80px 48px; }
.contact-right-inner { max-width: 440px; }
.contact-right h3 { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--text); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd5c8;
  background: var(--white); font-family: var(--font-body); font-size: 0.92rem; color: var(--text);
  outline: none; transition: border-color var(--transition); border-radius: 2px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.78rem; }
.form-success { display: none; text-align: center; padding: 20px; background: rgba(200,168,122,0.12); border: 1px solid rgba(200,168,122,0.4); color: var(--brand-dark); font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; margin-top: 16px; }

/* ---- Page Hero (interior pages) ---- */
.page-hero { background: var(--dark); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(200,168,122,0.12) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.35); }
.page-hero .breadcrumb a:hover { color: var(--brand); }
.page-hero .breadcrumb .sep { color: rgba(200,168,122,0.4); }
.page-hero h1 { color: var(--white); font-style: italic; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; }

/* ---- CTA ---- */
.cta-section { background: var(--dark-warm); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(200,168,122,0.1) 0%, transparent 70%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-style: italic; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer { background: #080705; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .logo-word { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; color: var(--white); letter-spacing: 1px; }
.footer-brand .logo-tag { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 16px; max-width: 240px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(200,168,122,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all var(--transition); font-size: 0.85rem; }
.social-btn:hover { border-color: var(--brand); color: var(--brand); }
.footer h4 { color: rgba(255,255,255,0.3); font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--transition); font-style: italic; font-family: var(--font-heading); font-size: 1rem; }
.footer ul li a:hover { color: var(--brand); }
.footer-contact .fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.86rem; color: rgba(255,255,255,0.45); }
.footer-contact .fc-item svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(200,168,122,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ---- Password Gate ---- */
.password-gate { position: fixed; inset: 0; z-index: 9999; background: linear-gradient(135deg, #070503 0%, #120e08 100%); display: flex; align-items: center; justify-content: center; padding: 24px; }
.password-gate-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,122,0.2); border-radius: 16px; padding: 56px 44px; max-width: 400px; width: 100%; text-align: center; backdrop-filter: blur(20px); }
.gate-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 500; color: var(--white); font-style: italic; letter-spacing: 2px; margin-bottom: 6px; }
.gate-subtitle { color: rgba(200,168,122,0.6); font-size: 0.7rem; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 40px; }
.gate-title { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.gate-input { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(200,168,122,0.25); color: var(--white); font-family: var(--font-body); font-size: 1rem; text-align: center; letter-spacing: 4px; outline: none; transition: border-color var(--transition); border-radius: 2px; margin-bottom: 12px; }
.gate-input::placeholder { letter-spacing: 1px; color: rgba(255,255,255,0.2); }
.gate-input:focus { border-color: var(--brand); }
.gate-error { color: rgba(255,100,100,0.8); font-size: 0.8rem; margin-bottom: 10px; display: none; }
.gate-btn { width: 100%; padding: 14px; background: var(--brand); color: var(--white); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; cursor: pointer; border: none; transition: background var(--transition); border-radius: 2px; }
.gate-btn:hover { background: var(--brand-dark); }
.gate-note { color: rgba(255,255,255,0.2); font-size: 0.72rem; margin-top: 24px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .about-left { padding: 60px 40px 60px 20px; }
  .about-right { padding: 60px 20px 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 60px 28px; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-book { justify-content: center; }
  .hero-visual { align-items: center; }
  .colour-card.main-card { width: 240px; height: 200px; }
  .colour-card { width: 200px; height: 160px; }
  .hero-stats-row { justify-content: center; }
  .about-split { grid-template-columns: 1fr; }
  .about-left { padding: 60px 28px; justify-content: flex-start; }
  .about-right { padding: 60px 28px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 28px; justify-content: flex-start; }
  .contact-right { padding: 60px 28px; }
  .services-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; min-height: unset; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up-1 { animation: fadeUp 0.7s ease 0.15s both; }
.animate-up-2 { animation: fadeUp 0.7s ease 0.3s both; }
.animate-up-3 { animation: fadeUp 0.7s ease 0.45s both; }
