/* ============================================
   BESPOKE SPIRE — Global Stylesheet
   ============================================ */

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

/* ── Variables ──────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7D9;
  --cream-deep:  #E5DDD0;
  --ink:         #1A1A1A;
  --ink-light:   #4A4A4A;
  --gold:        #B8960C;
  --gold-light:  #D4AF37;
  --gold-pale:   #F0E8C8;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', sans-serif;

  --max-width:   1280px;
  --section-pad: 100px 0;
  --transition:  0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.9;
  max-width: 620px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 38px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #9A7D0A;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: var(--cream);
  height: 68px;
  box-shadow: 0 2px 32px rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -32px;
  margin-top: 30px;
}

.nav-logo img {
  height: 83px;
  width: auto;
  mix-blend-mode: multiply;
  transition: height var(--transition);
}

.site-nav.scrolled .nav-logo img {
  height: 74px;
}

.site-nav.scrolled .nav-logo {
  margin-top: 0;
  margin-left: -32px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.site-nav.scrolled .nav-logo-name {
  color: var(--ink);
  text-shadow: none;
}

.nav-logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 5px;
  transition: color var(--transition);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.site-nav.scrolled .nav-logo-tagline {
  color: var(--gold);
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color var(--transition);
}

.site-nav.scrolled .nav-links a { color: var(--ink-light); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--white); }
.site-nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 10px 24px;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
}

.site-nav.scrolled .nav-cta {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.site-nav.scrolled .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.site-nav.scrolled .hamburger span { background: var(--ink); }

.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 nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  padding: 110px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,8,5,0.62) 0%,
    rgba(10,8,5,0.38) 55%,
    rgba(10,8,5,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.55s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.78);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.95s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

/* ── Stats bar ──────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 3;
  display: flex;
  background: var(--cream);
}

.stat-item {
  padding: 28px 40px;
  border-left: 1px solid var(--cream-deep);
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 6px;
  display: block;
}

/* ═══════════════════════════════════════════
   INTRO BAND
═══════════════════════════════════════════ */
.intro-band {
  background: var(--ink);
  padding: 56px 0;
}

.intro-band-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-band-line {
  width: 1px;
  height: 72px;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-band-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.intro-band-text strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   ABOUT INTRO
═══════════════════════════════════════════ */
.about-intro { padding: var(--section-pad); }

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.about-intro-image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-intro-image-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 32px;
  text-align: center;
}

.about-intro-image-badge strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.about-intro-image-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.about-intro-content { padding-right: 20px; }

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section {
  background: var(--cream-dark);
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .divider { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--cream);
  padding: 52px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover { transform: translateY(-4px); background: var(--white); }

.service-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  transition: color var(--transition);
}

.service-card:hover .service-number { color: var(--gold-pale); }

.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 22px;
}

.service-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.2; }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 28px;
}

.service-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition);
}

.service-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .service-link { gap: 16px; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-section { padding: var(--section-pad); }

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.process-steps { margin-top: 16px; }

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-deep);
  position: relative;
}

.process-step:first-child { padding-top: 0; }

.step-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-body {}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.85;
}

.process-image {
  position: sticky;
  top: 100px;
}

.process-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.process-image-caption {
  background: var(--ink);
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-image-caption p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
}

.process-image-caption span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   GALLERY PREVIEW
═══════════════════════════════════════════ */
.gallery-preview { background: var(--cream-dark); padding: var(--section-pad); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.3);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 20px;
}

/* ═══════════════════════════════════════════
   AREAS
═══════════════════════════════════════════ */
.areas-section {
  background: var(--ink);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: 'Melbourne';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 18vw;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.areas-content .section-label { color: var(--gold-light); }
.areas-content .section-heading { color: var(--white); }
.areas-content .divider { background: var(--gold); }
.areas-content .body-text { color: rgba(255,255,255,0.65); }

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.area-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.area-item:hover {
  background: rgba(184,150,12,0.1);
  border-color: rgba(184,150,12,0.3);
}

.area-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.area-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-section { padding: var(--section-pad); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.pillar {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: flex-start;
}

.pillar:last-child { border-bottom: none; }

.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.pillar-text h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.pillar-text p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════ */
.testimonial-section {
  background: var(--gold);
  padding: 80px 0;
}

.testimonial-inner {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.testimonial-stars span { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-label { text-align: center; display: block; }
.cta-section .section-heading { text-align: center; margin-inline: auto; }
.cta-section .divider { margin-inline: auto; }
.cta-section .body-text { text-align: center; margin-inline: auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta-contact-item span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-contact-item a,
.cta-contact-item span:last-child {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  transition: color var(--transition);
}

.cta-contact-item a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink); color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wa-tooltip::after {
  content: '';
  position: absolute; top: 50%; left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #111111;
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.footer-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-list li span:first-child {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.footer-contact-list li a,
.footer-contact-list li span:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-contact-list li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-intro-inner,
  .process-inner,
  .why-inner,
  .areas-inner { grid-template-columns: 1fr; gap: 48px; }

  .about-intro-image { order: -1; }
  .about-intro-image img { height: 420px; }
  .process-image { position: static; }
  .process-image img { height: 420px; }
  .why-image img { height: 380px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }

  .hero-stats { display: none; }

  .intro-band-inner { flex-direction: column; gap: 24px; }
  .intro-band-line { width: 40px; height: 1px; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }

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

@media (max-width: 600px) {
  :root { --section-pad: 56px 0; }

  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-contact-info { flex-direction: column; gap: 28px; }
  .cta-actions { flex-direction: column; }

  .nav-logo-tagline { display: none; }
}
