/* ─────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --color-black:        #0D0B08;
  --color-dark:         #1C1917;
  --color-cream:        #F5F0E8;
  --color-cream-mid:    #EDE8DC;
  --color-warm-white:   #FAFAF9;
  --color-gold:         #C9A84C;
  --color-gold-dark:    #A07828;
  --color-purple:       #4A1942;
  --color-purple-light: #FDFAFF;
  --color-btn-cream:    #F4EFE7;
  --color-text-primary: #1C1917;
  --color-text-muted:   #78716C;
  --color-text-light:   rgba(245, 240, 232, 0.75);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-primary);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ─────────────────────────────────────────────
   SHARED UTILITIES
───────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}
.section-label-light { color: var(--color-gold); }

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 28px 0;
}

/* ─────────────────────────────────────────────
   GLOBAL BUTTON / CTA STYLE
   Applied to .nav-cta, .hero-cta, .cta-arrow-btn
───────────────────────────────────────────── */
.btn,
.nav-cta,
.hero-cta,
.cta-arrow-btn {
  display: inline-block;
  background: var(--color-purple-light);
  color: var(--color-purple);
  border: none;
  outline: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1),
              color 300ms ease,
              transform 200ms ease,
              box-shadow 300ms ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover,
.nav-cta:hover,
.hero-cta:hover {
  background: var(--color-purple);
  color: var(--color-purple-light);
  border: none;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 25, 66, 0.25);
}
.btn:active,
.nav-cta:active,
.hero-cta:active,
.cta-arrow-btn:active {
  transform: translateY(0);
  box-shadow: none;
  transition: transform 100ms ease;
  border: none;
  outline: none;
}
.btn:focus,
.nav-cta:focus,
.hero-cta:focus,
.cta-arrow-btn:focus {
  outline: none;
}

/* ─────────────────────────────────────────────
   ARROW SPAN — inside every CTA button
───────────────────────────────────────────── */
.btn-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 300ms ease;
}
.nav-cta:hover .btn-arrow,
.hero-cta:hover .btn-arrow,
.cta-arrow-btn:hover .btn-arrow,
.services-closing-link:hover .btn-arrow,
a[href^="sms"]:hover .btn-arrow,
a[href^="tel"]:hover .btn-arrow {
  transform: translateX(5px);
}

/* ─────────────────────────────────────────────
   HERO ITALIC em — "happy."
───────────────────────────────────────────── */
.hero-italic {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

/* ─────────────────────────────────────────────
   SMOOTH SCROLL
───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS (IntersectionObserver)
   Strong cubic-bezier for pronounced entrance
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* nth-child stagger for grid items */
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 150ms; }
.reveal:nth-child(3) { transition-delay: 300ms; }
.reveal:nth-child(4) { transition-delay: 450ms; }
.reveal:nth-child(5) { transition-delay: 600ms; }
.reveal:nth-child(6) { transition-delay: 750ms; }

/* About section animated gold rule */
.about-divider {
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 400ms;
  margin: 28px 0;
}
.about-divider.visible {
  width: 60px;
}

/* Section labels — letter-spacing expand on reveal */
.section-label {
  opacity: 0;
  letter-spacing: 0.06em;
  transition: opacity 700ms ease, letter-spacing 700ms ease;
}
.section-label.visible {
  opacity: 1;
  letter-spacing: 0.18em;
}
/* Reset: labels that are part of hero use anim-hero instead */
.hero-label { opacity: 0; letter-spacing: 0.2em; }


/* ═══════════════════════════════════════════════
   SECTION 0 — NAV
═══════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 350ms ease, transform 350ms ease;
}
#main-nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.08);
}
#main-nav.nav-hidden {
  transform: translateY(-100%);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Nav logo */
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: none;
  transition: opacity 300ms ease;
}
/* Logo over dark hero: show as-is (already white on black bg) */
.nav-logo-img { filter: none; }
/* When nav scrolled to cream bg: invert to show dark logo */
#main-nav.scrolled .nav-logo-img { filter: invert(1); }

/* Nav CTA — scrolled state (cream nav bg) */
#main-nav.scrolled .nav-cta {
  background: var(--color-purple);
  color: var(--color-purple-light);
  border: none;
}
#main-nav.scrolled .nav-cta:hover {
  background: var(--color-purple-light);
  color: var(--color-purple);
  border: none;
}


/* ═══════════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 8, 0.58);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 120px;
  max-width: 960px;
}
.hero-label {
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 88px;
  line-height: 1.05;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(13, 11, 8, 0.4);
}
.hero-headline span { display: block; }

/* ─────────────────────────────────────────────
   HEADLINE TRACKING — Cormorant Garamond only
   Applied to display-font headings, never to
   uppercase labels, body copy, or Jost elements
───────────────────────────────────────────── */
.hero-headline,
.about-headline,
.services-headline,
.portfolio-headline,
.testimonials-headline,
.faq-headline,
.cta-headline,
h1, h2 {
  letter-spacing: -0.02em;
}

.service-card-name,
h3 {
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(13, 11, 8, 0.5);
}
/* Hero CTA — purple default, white hover (overrides global .btn) */
.hero-cta {
  padding: 18px 44px;
  font-size: 14px;
  margin-bottom: 20px;
  background: var(--color-purple);
  color: var(--color-purple-light);
  border: none;
  border-radius: 0;
  transition: background 250ms ease,
              color 250ms ease,
              transform 200ms ease,
              box-shadow 250ms ease;
}
.hero-cta:hover {
  background: var(--color-purple-light);
  color: var(--color-purple);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 25, 66, 0.35);
}
.hero-cta:active {
  transform: translateY(0);
  box-shadow: none;
  transition: transform 100ms ease;
}

/* Final CTA arrow button — overrides global .btn defaults */
.cta-arrow-btn {
  background: var(--color-dark);
  color: var(--color-btn-cream);
  border: none;
  border-radius: 0;
  padding: 18px 48px;
  font-size: 15px;
  margin: 32px auto;
  display: inline-block;
  transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1),
              color 300ms ease,
              transform 200ms ease,
              box-shadow 300ms ease;
}
.cta-arrow-btn:hover {
  background: var(--color-purple);
  color: var(--color-btn-cream);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 25, 66, 0.4);
}
.hero-hours {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
}

/* ── Hero staggered load animation ── */
.anim-hero {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-gold);
  font-size: 28px;
  line-height: 1;
  animation: bounce 2s ease-in-out infinite;
  transition: opacity 400ms ease;
  pointer-events: none;
  user-select: none;
}
.scroll-indicator.hidden { opacity: 0; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}


/* ═══════════════════════════════════════════════
   SECTION 2 — TRUST BAR
═══════════════════════════════════════════════ */
#trust-bar {
  background: var(--color-dark);
  padding: 28px 0;
  width: 100%;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  gap: 8px;
}
.trust-separator {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.trust-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-align: center;
}


/* ═══════════════════════════════════════════════
   SECTION 3 — ABOUT
═══════════════════════════════════════════════ */
#about {
  background: var(--color-cream);
  padding: 100px 80px;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.about-image-col {
  flex: 0 0 45%;
  max-width: 45%;
}
.about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-image-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  z-index: 0;
  border-radius: 2px;
}
.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.about-copy-col {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 60px;
}
.about-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 52px;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.about-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: #44403C;
  line-height: 1.8;
  margin-bottom: 20px;
}
.pull-quote-wrapper { margin-top: 32px; }
.pull-quote-rule {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 24px;
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--color-gold);
  line-height: 1.5;
  quotes: none;
}
.pull-quote-attr {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}


/* ═══════════════════════════════════════════════
   SECTION 4 — SERVICES
═══════════════════════════════════════════════ */
#services {
  background: var(--color-black);
  padding: 100px 80px;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
}
.services-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 24px 0 60px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 300ms ease,
              box-shadow 350ms ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.service-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Per-card focal point adjustments */
.service-card:nth-child(1) .service-card-img { object-position: center 30%; }
.service-card:nth-child(2) .service-card-img { object-position: center 40%; }
.service-card:nth-child(3) .service-card-img { object-position: center 35%; }
.service-card:nth-child(4) .service-card-img { object-position: center 15%; }
.service-card:nth-child(5) .service-card-img { object-position: center 40%; }
.service-card:nth-child(6) .service-card-img { object-position: center 35%; }
.service-card:nth-child(7) .service-card-img { object-position: center 35%; }
.service-card:nth-child(8) .service-card-img { object-position: center 40%; }
.service-card-body { padding: 24px; }
.service-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}
.service-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-top: 10px;
}
.secondary-services { margin-bottom: 40px; }
.secondary-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 8px 18px;
  color: rgba(245, 240, 232, 0.8);
  font-family: var(--font-body);
  font-size: 13px;
}
.services-closing {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 48px;
}
.services-closing-link {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-closing-link:hover { color: var(--color-gold-dark); }


/* ═══════════════════════════════════════════════
   SECTION 5 — PORTFOLIO
═══════════════════════════════════════════════ */
#portfolio {
  background: var(--color-dark);
  padding: 100px 80px;
}
.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
}
.portfolio-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: #fff;
  line-height: 1.2;
}
.portfolio-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-light);
  margin: 16px 0 48px;
  line-height: 1.7;
}
.portfolio-masonry {
  column-count: 3;
  column-gap: 14px;
}
.portfolio-item {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.93);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: inset 0 0 0 3px var(--color-gold);
}


/* ═══════════════════════════════════════════════
   SECTION 6 — TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonials {
  background: var(--color-cream);
  padding: 100px 80px;
}
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: flex;
  gap: 28px;
}
.testimonial-card {
  flex: 1;
  background: var(--color-warm-white);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  box-shadow: 0 2px 24px rgba(28, 25, 23, 0.06);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 350ms ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.35;
  line-height: 0.8;
  display: block;
}
.testimonial-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: var(--color-text-primary);
  line-height: 1.75;
  margin: 16px 0 24px;
}
.testimonial-attr {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   SECTION 7 — FAQ
═══════════════════════════════════════════════ */
#faq {
  background: var(--color-cream-mid);
  padding: 100px 80px;
}
.faq-container {
  max-width: 780px;
  margin: 0 auto;
}
.faq-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 52px;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 48px;
}
.faq-item {
  border-bottom: 1px solid rgba(28, 25, 23, 0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  min-height: 44px;
  border-radius: 0;
  background: none;
  border: none;
}
.faq-chevron {
  color: var(--color-gold);
  font-size: 20px;
  transition: transform 300ms ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding-bottom: 24px;
}


/* ═══════════════════════════════════════════════
   SECTION 8 — FINAL CTA
═══════════════════════════════════════════════ */
#final-cta {
  background: var(--color-gold);
}

/* ── Upper part ── */
.cta-upper {
  padding: 100px 80px 60px;
  text-align: center;
}
.cta-upper-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Label with flanking lines */
.cta-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.cta-label-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(13, 11, 8, 0.35);
  flex-shrink: 0;
}
.cta-label-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 11, 8, 0.6);
  white-space: nowrap;
}

/* Headline */
.cta-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 68px;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}
.cta-headline em {
  font-style: italic;
  font-weight: 400;
}

/* Body */
.cta-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(13, 11, 8, 0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-align: center;
}

/* (cta-phone-btn and cta-secondary-contact removed — replaced by .cta-arrow-btn) */

/* Divider between upper and lower */
.cta-divider {
  height: 1px;
  background: rgba(13, 11, 8, 0.15);
  margin: 0 80px;
}

/* ── Lower part — 3 steps ── */
.cta-lower {
  padding: 60px 80px 100px;
}
.cta-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-step {
  flex: 1;
  padding: 0 48px;
}
.cta-step:first-child { padding-left: 0; }
.cta-step:last-child  { padding-right: 0; }

.cta-step-divider {
  width: 1px;
  background: rgba(13, 11, 8, 0.15);
  flex-shrink: 0;
  align-self: stretch;
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  color: rgba(13, 11, 8, 0.25);
  margin-bottom: 16px;
  line-height: 1;
}
.step-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(13, 11, 8, 0.65);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   SECTION 9 — FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--color-black);
}

/* Four-column body */
.footer-body {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 72px 80px 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Column 1 — Brand */
.footer-col-brand {
  flex: 0 0 240px;
  max-width: 240px;
}
.footer-logo-img {
  width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 28px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  /* Logo file is white on black bg — display as-is on dark footer */
  filter: none;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
  max-width: 200px;
}

/* Columns 2-4 */
.footer-col {
  flex: 1;
}
.footer-col-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}
.footer-details {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 2.1;
}
.footer-map-link,
.footer-contact-link {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-map-link:hover,
.footer-contact-link:hover {
  color: var(--color-gold);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 56px 80px 0;
  max-width: calc(1280px - 160px);
  margin-left: auto;
  margin-right: auto;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom-left {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.28);
}

/* Built-by credit — inline in copyright line */
.built-by-link {
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.built-by-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}
.footer-bottom-right {
  display: flex;
  gap: 28px;
}
.footer-bottom-link {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.28);
  transition: color 200ms ease;
}
.footer-bottom-link:hover { color: rgba(245, 240, 232, 0.7); }


/* ─────────────────────────────────────────────
   TESTIMONIALS — star ratings + review badge
───────────────────────────────────────────── */
.review-stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 12px;
  display: block;
}

.review-source {
  text-align: center;
  margin-top: 48px;
}
.review-source-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}
.review-source-link {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 1px;
  transition: border-color 200ms ease;
}
.review-source-link:hover {
  border-color: var(--color-gold);
}


/* ─────────────────────────────────────────────
   SERVICE CARDS — image zoom on hover
───────────────────────────────────────────── */
.service-card-img-wrap {
  overflow: hidden;
}
.service-card-img {
  transition: transform 500ms ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.06);
}

/* ─────────────────────────────────────────────
   PORTFOLIO — gold border overlay + zoom on hover
───────────────────────────────────────────── */
.portfolio-item-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
  break-inside: avoid;
}
.portfolio-item-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid var(--color-gold);
  transition: border-width 300ms ease;
  pointer-events: none;
  z-index: 1;
}
.portfolio-item-wrap:hover::after {
  border-width: 5px;
}
.portfolio-item {
  display: block;
  width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.93);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 400ms ease;
}
.portfolio-item-wrap:hover .portfolio-item {
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.05);
}

/* ─────────────────────────────────────────────
   FAQ — chevron + answer with opacity
───────────────────────────────────────────── */
.faq-chevron {
  transition: transform 300ms ease;
  color: var(--color-gold);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 400ms ease,
              padding-top 400ms ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 20px;
}

/* ─────────────────────────────────────────────
   TRUST BAR — scale + fade entrance
───────────────────────────────────────────── */
.trust-item {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 600ms ease,
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.trust-item:nth-child(1) { transition-delay: 0ms; }
.trust-item:nth-child(2) { transition-delay: 120ms; }
.trust-item:nth-child(3) { transition-delay: 240ms; }
.trust-item:nth-child(4) { transition-delay: 360ms; }

/* ─────────────────────────────────────────────
   PROCESS STEPS — number colour on scroll
───────────────────────────────────────────── */
.step-number {
  transition: color 400ms ease;
  color: rgba(13, 11, 8, 0.1);
}
.cta-step.visible .step-number {
  color: rgba(13, 11, 8, 0.25);
}

/* ─────────────────────────────────────────────
   NAV LINKS — gold underline slide from left
───────────────────────────────────────────── */
nav a:not(.nav-cta):not(.nav-logo-link) {
  position: relative;
  text-decoration: none;
}
nav a:not(.nav-cta):not(.nav-logo-link)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-gold);
  transition: width 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
nav a:not(.nav-cta):not(.nav-logo-link):hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (768–1023px)
═══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-container { flex-direction: column; }
  .about-image-col,
  .about-copy-col { flex: 0 0 100%; max-width: 100%; }
  .about-copy-col { padding-left: 0; margin-top: 48px; }

  /* Portfolio / testimonials */
  .testimonials-grid { flex-direction: column; }
  .portfolio-masonry { column-count: 2; }

  /* CTA */
  .cta-headline { font-size: 48px; }
  .cta-steps { flex-direction: column; }
  .cta-step { padding: 0 0 32px; }
  .cta-step:last-child { padding-bottom: 0; }
  .cta-step-divider { width: 100%; height: 1px; }
  .cta-divider { margin: 0 40px; }
  .cta-lower { padding: 48px 40px 72px; }
  .cta-upper { padding: 80px 40px 48px; }

  /* Footer */
  .footer-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 48px 0;
  }
  .footer-col-brand { grid-column: 1 / -1; max-width: 100%; flex: none; }
  .footer-divider { margin: 40px 48px 0; }
  .footer-bottom { padding: 20px 48px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (<768px)
═══════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Nav */
  .nav-inner { padding: 16px 20px; }
  .nav-logo-img { width: 90px; }
  .nav-cta { padding: 12px 20px; font-size: 12px; letter-spacing: 0.06em; }

  /* Hero */
  .hero-content { padding: 0 24px 80px; }
  .hero-headline { font-size: 56px; }
  .hero-cta { display: block; width: 100%; text-align: center; }

  /* Trust bar */
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
  .trust-separator { display: none; }
  .trust-item { padding: 16px 12px; }

  /* About */
  #about { padding: 64px 24px; }
  .about-container { flex-direction: column; }
  .about-image-col,
  .about-copy-col { flex: 0 0 100%; max-width: 100%; }
  .about-copy-col { padding-left: 0; margin-top: 40px; }
  .about-headline { font-size: 36px; }

  /* Services */
  #services { padding: 64px 24px; }
  .services-headline { font-size: 38px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  #portfolio { padding: 64px 24px; }
  .portfolio-masonry { column-count: 1; }
  .portfolio-headline { font-size: 38px; }

  /* Testimonials */
  #testimonials { padding: 64px 24px; }
  .testimonials-headline { font-size: 38px; }
  .testimonials-grid { flex-direction: column; }

  /* FAQ */
  #faq { padding: 64px 24px; }
  .faq-headline { font-size: 34px; }
  .faq-question { min-height: 44px; }

  /* Final CTA */
  .cta-upper { padding: 72px 24px 48px; }
  .cta-headline { font-size: 42px; }
  .cta-arrow-btn { width: 100%; text-align: center; padding: 18px 32px; }
  .cta-divider { margin: 0 24px; }
  .cta-lower { padding: 48px 24px 72px; }
  .cta-steps { flex-direction: column; gap: 0; }
  .cta-step { padding: 0 0 36px; }
  .cta-step:last-child { padding-bottom: 0; }
  .cta-step-divider { width: 100%; height: 1px; margin-bottom: 36px; }

  /* Footer */
  .footer-body {
    flex-direction: column;
    gap: 40px;
    padding: 56px 24px 0;
  }
  .footer-col-brand { flex: none; max-width: 100%; }
  .footer-divider { margin: 40px 24px 0; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 20px 24px; text-align: center; }
  .footer-bottom-right { justify-content: center; }
}
