

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Josefin+Sans:wght@200;300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  /* ── Primary Brand (Deep Blue — "Beautious Aesthetics" logo text) ── */
  --gold: #155196;
  --gold-rgb: 21, 81, 150;
  --gold-light: #4A83C4;
  /* Lighter tint of brand blue */
  --gold-dark: #0D3666;
  /* Darker shade of brand blue */

  /* ── Accent 1 — Violet ("Hair" text & logo swirl) ── */
  --violet: #6B5CE7;
  --violet-rgb: 107, 92, 231;
  --violet-light: #9B8FF5;
  --violet-dark: #3D2B6B;
  /* Dark purple — logo B icon */

  /* ── Accent 2 — Orange-Red ("&" symbol) ── */
  --rust: #E25E29;
  --rust-rgb: 226, 94, 41;

  /* ── Accent 3 — Peach ("Skin" text) ── */
  --peach: #F4A261;
  --peach-rgb: 244, 162, 97;

  /* ── Backgrounds & Surfaces (cool-white, matching blue brand) ── */
  --deep: #F5F7FA;
  /* Page background — cool light */
  --surface: #FFFFFF;
  --surface2: #EAEFF5;
  /* Slight blue tint */
  --surface3: #DDE5F0;
  /* More pronounced blue tint */

  /* ── Text ── */
  --text: #111827;
  /* Near-black */
  --text-muted: #2E3A52;
  /* Dark blue-grey */
  --text-dim: #5A6A84;
  /* Mid blue-grey */

  /* ── Misc ── */
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.hovered {
  width: 6px;
  height: 6px;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), var(--gold));
  border-radius: 2px;
}

/* ─── Grain Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.12;
}

/* ─── Utility ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.gold {
  color: var(--gold);
}

.violet {
  color: var(--violet);
}

.peach {
  color: var(--peach);
}

.section-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Divider now uses a violet → blue gradient reflecting the logo palette */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--gold), transparent);
  margin: 24px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

/* Primary — blue brand */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
}

/* Outlined — blue brand */
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(var(--gold-rgb), 0.08);
}

/* Violet variant — for hair/services CTAs */
.btn-violet {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  color: #fff;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.header.scrolled {
  background: rgba(245, 247, 250, 0.93);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  filter: brightness(1.05);
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  /* Underline uses violet on hover — nods to the "Hair" brand colour */
  background: var(--violet);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  border-left-color: var(--violet);
  background: rgba(var(--gold-rgb), 0.05);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger span:nth-child(2) {
  width: 20px;
  align-self: flex-end;
}

.hamburger:hover span:nth-child(2) {
  width: 28px;
}

.hamburger:hover span {
  background: var(--rust);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Three-color radial wash: blue (brand), violet (Hair), peach (Skin) */
  background:
    radial-gradient(ellipse 70% 70% at 75% 35%, rgba(var(--gold-rgb), 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 15% 75%, rgba(var(--violet-rgb), 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 55% 90%, rgba(var(--peach-rgb), 0.06) 0%, transparent 50%),
    linear-gradient(150deg, var(--deep) 0%, var(--surface) 55%, var(--surface2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--gold-rgb), 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

/* Blue orb — brand primary */
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(var(--gold-rgb), 0.13);
  right: -100px;
  top: -100px;
  animation-delay: 0s;
}

/* Violet orb — Hair accent */
.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(var(--violet-rgb), 0.1);
  left: 28%;
  bottom: 0;
  animation-delay: -4s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, -40px) scale(1.05);
  }
}

.hero-slider-container {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-slider {
  display: grid;
  width: 100%;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateX(30px);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text {
  padding-right: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  /* Violet eyebrow — "Hair" brand colour */
  color: var(--violet);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--violet);
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* Italic spans use peach — "Skin" brand colour */
.hero-heading em {
  font-style: italic;
  color: var(--peach);
  display: block;
}

.hero-sub {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface3);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
  position: relative;
  z-index: 5;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.6s forwards;
}

.hero-card-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 380px;
  position: relative;
}

.hero-card-image {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 50%, var(--surface3) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--surface2));
}

.hero-logo-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 24px;
}

.hero-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--violet);
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 6px;
}

.hero-card-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-floating-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 3s ease-in-out infinite alternate;
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.08);
}

.hero-floating-badge.badge-top {
  top: -20px;
  right: -30px;
  animation-delay: -1s;
  z-index:999;
}

.hero-floating-badge.badge-bottom {
  bottom: 20px;
  left: -40px;
  animation-delay: -2s;
}

@keyframes badgeFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.badge-icon {
  width: 32px;
  height: 32px;
  /* Badge icons alternate between blue and violet */
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.badge-icon.badge-icon--violet {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
}

.badge-text {
  font-size: 0.7rem;
}

.badge-text strong {
  display: block;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.badge-text span {
  color: var(--text-dim);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  /* Line uses violet → transparent reflecting logo accent */
  background: linear-gradient(var(--violet), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════ */
.marquee-strip {
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  background: var(--surface);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Marquee separators — alternate blue/violet */
.marquee-item span {
  color: var(--violet);
  font-size: 0.7rem;
}

.marquee-item span.blue {
  color: var(--gold);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════
   ABOUT / INTRO
════════════════════════════════════════ */
.about {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface2);
  aspect-ratio: 4/5;
}

.about-img-bg {
  width: 100%;
  height: 100%;
  /* Subtle blue-to-violet gradient wash */
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface3) 40%, rgba(var(--violet-rgb), 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(var(--gold-rgb), 0.12) 0%, transparent 60%);
}

.about-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.08);
}

.about-accent .big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.about-accent .big-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.about-corner {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
  border-radius: 4px 0 0 0;
}

.about-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(var(--violet-rgb), 0.08);
  border: 1px solid rgba(var(--violet-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--violet);
  font-size: 0.9rem;
}

.feature-title {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services {
  padding: 60px 0;
  background: var(--surface);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--gold), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header .divider {
  margin: 24px auto;
}

.services-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 56px;
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 2px;
  cursor: none;
  transition: all 0.3s ease;
}

/* Active tab — blue primary */
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
}

/* Hair tab variant — violet */
.tab-btn.active.tab-hair {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Top stripe — blue by default */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Hair service cards get violet stripe */
.service-card.card-hair::before {
  background: linear-gradient(90deg, var(--violet-dark), var(--violet));
}

.service-card:hover {
  border-color: rgba(var(--gold-rgb), 0.22);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(var(--gold-rgb), 0.1);
}

.service-card.card-hair:hover {
  border-color: rgba(var(--violet-rgb), 0.22);
  box-shadow: 0 30px 60px rgba(var(--violet-rgb), 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--gold-rgb), 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card.card-hair .service-card-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--violet-rgb), 0.05) 0%, transparent 60%);
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.card-hair .service-icon {
  background: rgba(var(--violet-rgb), 0.08);
  border-color: rgba(var(--violet-rgb), 0.15);
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

/* Price tag — violet for hair, blue for skin */
.service-price {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card-hair .service-price {
  color: var(--violet);
}

.service-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.service-arrow {
  margin-top: 24px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card-hair .service-arrow {
  color: var(--violet);
}

.service-card:hover .service-arrow {
  gap: 14px;
}

/* ════════════════════════════════════════
   WHY US / TRUST SIGNALS
════════════════════════════════════════ */
.trust {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(var(--violet-rgb), 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(var(--gold-rgb), 0.06) 0%, transparent 55%);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.metric-card {
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* Bottom bar alternates blue/violet */
.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}

.metric-card:nth-child(even)::after {
  background: linear-gradient(90deg, var(--violet-dark), var(--violet), transparent);
}

.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.metric-card:nth-child(even) .metric-num {
  color: var(--violet);
}

.metric-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.3s ease;
}

.trust-badge:hover {
  border-color: rgba(var(--gold-rgb), 0.25);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--gold-rgb), 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-badge:nth-child(odd) .trust-badge-icon {
  background: rgba(var(--violet-rgb), 0.08);
}

.trust-badge-title {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--gold), transparent);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .divider {
  margin: 24px auto;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  width: 420px;
  max-width: 85vw;
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  /* Violet quote mark — "Hair" accent */
  color: var(--violet);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-stars {
  color: var(--peach);
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--violet), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-name {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
}

.author-tag {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: none;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery {
  padding: 120px 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
}

.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-item-bg {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(13, 54, 102, 0.75));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Gallery colour themes — mixing brand palette */
.gallery-item:nth-child(1) .gallery-item-bg {
  background: linear-gradient(135deg, var(--surface3), var(--surface2));
}

.gallery-item:nth-child(2) .gallery-item-bg {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.3), rgba(var(--violet-rgb), 0.3));
}

.gallery-item:nth-child(3) .gallery-item-bg {
  background: linear-gradient(135deg, var(--surface2), var(--surface));
}

.gallery-item:nth-child(4) .gallery-item-bg {
  background: linear-gradient(135deg, rgba(var(--peach-rgb), 0.25), rgba(var(--rust-rgb), 0.15));
}

.gallery-item:nth-child(5) .gallery-item-bg {
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
}

.gallery-item:nth-child(6) .gallery-item-bg {
  background: linear-gradient(135deg, rgba(var(--violet-rgb), 0.3), rgba(var(--gold-rgb), 0.2));
}

/* ════════════════════════════════════════
   CREATIVE CTA SECTION
════════════════════════════════════════ */
.creative-cta {
  padding: 60px 0;
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.creative-cta .container {
  position: relative;
  z-index: 2;
}

.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.45;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

/* Orb 1 — rust (logo "&" colour) */
.cta-glow-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--rust);
  top: -100px;
  left: -100px;
}

/* Orb 2 — violet (logo "Hair" colour) */
.cta-glow-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--violet);
  bottom: -50px;
  right: 10%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* CTA card — blue primary gradient */
.creative-cta-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(var(--gold-rgb), 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.creative-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.creative-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

/* Italic CTA emphasis uses peach ("Skin" colour) */
.creative-cta-title em {
  color: var(--peach);
  font-style: italic;
}

.creative-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.creative-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--rust-rgb), 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--rust-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--rust-rgb), 0);
  }
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--gold-dark);
}

/* ════════════════════════════════════════
   APPOINTMENT SECTION
════════════════════════════════════════ */
.appointment-section {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--violet), transparent);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.appointment-info {
  padding-right: 40px;
}

.appointment-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.1;
}

/* Appointment italic uses rust ("&" logo colour) */
.appointment-heading em {
  font-style: italic;
  color: var(--rust);
}

.appointment-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-block {
  margin-bottom: 32px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(var(--gold-rgb), 0.2);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-label i {
  color: var(--rust);
  font-size: 0.8rem;
}

.contact-value {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.appointment-form-wrapper {
  background: var(--surface);
  padding: 26px 19px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  box-shadow: 0 40px 80px rgba(var(--gold-rgb), 0.06);
}

.appointment-form-inner .appointment-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.appointment-form .form-group {
  margin-bottom: 24px;
}

.appointment-form label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 0;
  color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.appointment-form input::placeholder {
  color: var(--text-dim);
  opacity: 0.5;
  font-style: italic;
}

.appointment-form input:focus,
.appointment-form select:focus {
  outline: none;
  border-bottom-color: var(--rust);
  background: rgba(var(--gold-rgb), 0.02);
}

/* Submit button — rust accent */
.btn-full {
  width: 100%;
  padding: 18px;
  text-align: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--rust), #c24015);
  border: none;
  color: white;
  border-radius: var(--radius);
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(var(--rust-rgb), 0.2);
}

.btn-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--rust-rgb), 0.35);
}

.form-disclaimer {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .appointment-info {
    padding-right: 0;
  }
}

/* ── Prevent form wrapper from overflowing on mobile ── */
.appointment-form-wrapper,
.appointment-form-inner,
.appointment-form,
.appointment-grid {
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Force all inputs including date to respect container ── */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
}

/* ── iOS Safari specific date fix ── */
.appointment-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .appointment-grid {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .appointment-form-wrapper {
    width: 100%;
    overflow: hidden;
  }
}
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: none;
}

.social-btn:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: rgba(var(--violet-rgb), 0.08);
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-contact-item span:first-child {
  color: var(--violet);
}

.footer-bottom {
  border-top: 1px solid rgba(var(--gold-rgb), 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-nav-header .nav-logo img {
  height: 40px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-nav-link,
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.05);
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  padding: 16px 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-link:hover,
.mobile-dropdown-toggle:hover {
  color: var(--gold);
}

.mobile-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--violet);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  grid-template-rows: 1fr;
}

.mobile-dropdown-menu-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface2);
  border-radius: var(--radius);
  margin-top: 4px;
  margin-bottom: 4px;
}

.mobile-dropdown-menu-inner a {
  padding: 12px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.05);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.mobile-dropdown-menu-inner a:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu-inner a:hover {
  background: rgba(var(--gold-rgb), 0.05);
  color: var(--gold);
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  background: var(--surface);
}

.mobile-nav-footer .btn-full {
  margin: 0;
  width: 100%;
  padding: 16px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .testimonial-card {
    width: 320px;
    max-width: 85vw;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .container {
    padding: 0 16px;
  }

  .metric-num {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.65rem;
  }

  .footer-grid {
    gap: 24px;
  }

  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ════════════════════════════════════════
   PAGE HEADER & BREADCRUMB
════════════════════════════════════════ */
.page-header {
  padding: 180px 0 80px;
  background: var(--deep);
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  overflow: hidden;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 20, 40, 0.72), rgba(13, 54, 102, 0.88)),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--peach);
}

.breadcrumb i {
  font-size: 0.6rem;
  color: var(--peach);
}

/* ════════════════════════════════════════
   SERVICE DETAILS PAGE
════════════════════════════════════════ */
.service-details-wrapper {
  background: var(--bg);
}

.service-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.05);
}

.service-section.sec-alternate {
  background: var(--surface);
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-split.reverse .service-split-text {
  order: 2;
}

.service-split.reverse .service-split-img {
  order: 1;
}

.service-split-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.08);
}

.service-split-text .section-title {
  margin-bottom: 24px;
}

.service-split-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.service-benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text);
}

.service-benefits-list li i {
  color: var(--violet);
  font-size: 1.2rem;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.acc-item {
  background: var(--surface2);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.acc-item strong {
  color: var(--violet);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--violet-dark);
  font-weight: 300;
  line-height: 1;
  border-bottom: 1px solid var(--violet);
  padding-bottom: 4px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-desc strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .service-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-split.reverse .service-split-text {
    order: 1;
  }

  .service-split.reverse .service-split-img {
    order: 2;
  }
}

/* ════════════════════════════════════════
   TRANSPARENT HEADER (For dark backgrounds)
════════════════════════════════════════ */
.header.header-dark-bg:not(.scrolled) .nav-links>a,
.header.header-dark-bg:not(.scrolled) .nav-links>.nav-dropdown>a {
  color: rgba(255, 255, 255, 0.85);
}

.header.header-dark-bg:not(.scrolled) .nav-links>a:hover,
.header.header-dark-bg:not(.scrolled) .nav-links>.nav-dropdown>a:hover {
  color: #ffffff;
}

.header.header-dark-bg:not(.scrolled) .nav-links>a::after,
.header.header-dark-bg:not(.scrolled) .nav-links>.nav-dropdown>a::after {
  background: rgba(255, 255, 255, 0.7);
}

.header.header-dark-bg:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.header.header-dark-bg:not(.scrolled) .hamburger span {
  background: #ffffff;
}

/* ════════════════════════════════════════
   CREATIVE PROCESS (Timeline)
════════════════════════════════════════ */
.process-section {
  padding: 60px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.process-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--deep);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.08);
  border-color: rgba(var(--gold-rgb), 0.3);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(var(--violet-rgb), 0.04), transparent);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(var(--gold-rgb), 0.12);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 300;
  transition: color 0.4s ease;
}

.process-card:hover .process-card-num {
  color: var(--gold);
}

.process-card-icon {
  font-size: 2rem;
  color: var(--rust);
  margin-bottom: 24px;
}

.process-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 16px;
}

.process-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════ */
.faq-section {
  padding: 60px 0;
  background: var(--deep);
  border-top: 1px solid rgba(var(--gold-rgb), 0.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(var(--violet-rgb), 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 32px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  font-weight: 400;
}

.faq-question:hover {
  background: rgba(var(--gold-rgb), 0.02);
}

.faq-question i {
  color: var(--violet);
  transition: transform 0.4s ease;
  font-size: 0.9rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
  background: var(--surface2);
}

.faq-answer-inner {
  padding: 0 32px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ════════════════════════════════════════
   LEAD CONVERSION / BEFORE & AFTER
════════════════════════════════════════ */
.conversion-section {
  padding: 60px 0;
  background: var(--surface2);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.conversion-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.conversion-visual {
  padding-right: 40px;
}

.ba-card {
  margin-top: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.06);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ba-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 54, 102, 0.75);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.ba-caption {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

.conversion-form-box {
  background: var(--deep);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  box-shadow: 0 30px 60px rgba(var(--gold-rgb), 0.06);
}

.cf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.cf-title span {
  color: var(--violet);
  font-style: italic;
}

.cf-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.quick-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-lead-form input {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.quick-lead-form input:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(var(--rust-rgb), 0.08);
}

.quick-lead-form .btn-full {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.cf-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .conversion-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .conversion-visual {
    padding-right: 0;
  }

  .conversion-form-box {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-img img {
    aspect-ratio: 4/3;
  }
}


/* newww */
 /* ─── BLOG SECTION ─── */
        .blog-section {
            padding: 100px 0 120px;
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }

        /* Subtle background pattern */
        .blog-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 15% 20%, rgba(var(--gold-rgb), 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(var(--violet-rgb), 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .blog-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }

        /* ─── SECTION HEADER ─── */
        .blog-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 70px;
            gap: 24px;
        }

        .blog-header-left {
            max-width: 560px;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }

        .section-eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1.5px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 5vw, 58px);
            font-weight: 400;
            line-height: 1.1;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .section-title em {
            font-style: italic;
            color: var(--gold);
        }

        .section-subtitle {
            margin-top: 16px;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.05em;
            color: var(--text-dim);
            line-height: 1.8;
            max-width: 440px;
        }

        .blog-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            text-decoration: none;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(var(--gold-rgb), 0.3);
            transition: var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .blog-cta-link:hover {
            color: var(--gold-dark);
            border-color: var(--gold-dark);
            gap: 16px;
        }

        .blog-cta-link svg {
            width: 16px;
            height: 16px;
            transition: var(--transition);
        }

        /* ─── BLOG GRID ─── */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        /* ─── BLOG CARD ─── */
        .blog-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(var(--gold-rgb), 0.08);
            box-shadow: 0 4px 24px rgba(var(--gold-rgb), 0.04);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(var(--gold-rgb), 0.12);
            border-color: rgba(var(--gold-rgb), 0.2);
        }

        /* Featured card — spans 2 columns */
        .blog-card--featured {
            grid-column: span 2;
            flex-direction: row;
        }

        .blog-card--featured .blog-card__image-wrap {
            width: 50%;
            flex-shrink: 0;
        }

        .blog-card--featured .blog-card__body {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-card--featured .blog-card__title {
            font-size: clamp(20px, 2.2vw, 28px);
        }

        .blog-card--featured .blog-card__excerpt {
            display: block;
        }

        /* Image wrapper */
        .blog-card__image-wrap {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .blog-card--featured .blog-card__image-wrap {
            height: 100%;
            min-height: 300px;
        }

        .blog-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
        }

        .blog-card:hover .blog-card__image {
            transform: scale(1.06);
        }

        /* Image overlay */
        .blog-card__image-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(var(--gold-dark), 0.15) 100%);
            pointer-events: none;
            transition: var(--transition);
        }

        .blog-card:hover .blog-card__image-wrap::after {
            background: linear-gradient(180deg, transparent 20%, rgba(var(--gold-dark), 0.25) 100%);
        }

        /* Category badge */
        .blog-card__badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 2px;
            backdrop-filter: blur(12px);
        }

        .badge--blue {
            background: rgba(var(--gold-rgb), 0.9);
            color: #fff;
        }

        .badge--violet {
            background: rgba(var(--violet-rgb), 0.9);
            color: #fff;
        }

        .badge--rust {
            background: rgba(var(--rust-rgb), 0.9);
            color: #fff;
        }

        .badge--peach {
            background: rgba(var(--peach-rgb), 0.92);
            color: var(--text);
        }

        /* Card body */
        .blog-card__body {
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .blog-card__meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .blog-card__date {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.12em;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        .blog-card__dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(var(--gold-rgb), 0.4);
            flex-shrink: 0;
        }

        .blog-card__read-time {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.1em;
            color: var(--text-dim);
        }

        .blog-card__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 12px;
            transition: color var(--transition);
            letter-spacing: -0.01em;
        }

        .blog-card:hover .blog-card__title {
            color: var(--gold);
        }

        .blog-card__excerpt {
            display: none;
            font-size: 13px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-dim);
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }

        .blog-card__footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 18px;
            border-top: 1px solid var(--surface3);
        }

        .blog-card__author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blog-card__avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--violet));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            flex-shrink: 0;
            letter-spacing: 0;
        }

        .blog-card__author-name {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 0.06em;
        }

        .blog-card__read-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .blog-card__read-btn:hover {
            gap: 10px;
            color: var(--gold-dark);
        }

        .blog-card__read-btn svg {
            width: 12px;
            height: 12px;
            transition: var(--transition);
        }

        /* ─── DECORATIVE DIVIDER ─── */
        .section-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--violet));
            margin: 0 auto 16px;
            border-radius: 99px;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-card--featured {
                grid-column: span 2;
                flex-direction: column;
            }

            .blog-card--featured .blog-card__image-wrap {
                width: 100%;
                height: 280px;
                min-height: unset;
            }

            .blog-card--featured .blog-card__body {
                padding: 32px 28px;
            }

            .blog-card--featured .blog-card__excerpt {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 70px 0 90px;
            }

            .blog-container {
                padding: 0 20px;
            }

            .blog-header {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 48px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .blog-card--featured {
                grid-column: span 1;
            }
        }

        @media (max-width: 480px) {
            .blog-card__image-wrap {
                height: 200px;
            }

            .blog-card--featured .blog-card__image-wrap {
                height: 220px;
            }
        }

        /* ─── ANIMATION on scroll ─── */
        .blog-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition), border-color var(--transition);
        }

        .blog-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays */
        .blog-card:nth-child(1) {
            transition-delay: 0s;
        }

        .blog-card:nth-child(2) {
            transition-delay: 0.1s;
        }

        .blog-card:nth-child(3) {
            transition-delay: 0.2s;
        }

        .blog-card:nth-child(4) {
            transition-delay: 0.05s;
        }

        .blog-card:nth-child(5) {
            transition-delay: 0.15s;
        }

        .blog-card:nth-child(6) {
            transition-delay: 0.25s;
        }

        /* Blog header animation */
        .blog-header {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .blog-header.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hover card lift with correct transition override */
        .blog-card.is-visible:hover {
            transform: translateY(-6px);
            transition: opacity 0.6s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
        }

/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */
.gallery-section { padding: 60px 0 90px; }

/* ── Filters ── */
.filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center;
    margin-bottom: 44px;
}
.f-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: .66rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
    padding: 8px 18px; border-radius: 2px;
    border: 1.5px solid var(--surface3);
    background: var(--surface); color: var(--text-dim);
    cursor: pointer; transition: all var(--transition);
}
.f-btn:hover,
.f-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── Grid ── */
.gallery-grid {
    columns: 4 240px;
    column-gap: 12px;
}

.g-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--surface2);
    display: block;
}
.g-item img {
    width: 100%; display: block;
    transition: transform .55s ease;
}
.g-item:hover img { transform: scale(1.05); }

.g-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(13,54,102,.85) 0%,
        transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 16px 18px;
}
.g-item:hover .g-item-overlay { opacity: 1; }

.g-cat {
    font-size: .58rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
    color: var(--peach); margin-bottom: 4px;
}
.g-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 400; color: #fff; line-height: 1.3;
}

.badge-ba {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    font-size: .55rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
    background: var(--rust); color: #fff;
    padding: 3px 8px; border-radius: 2px;
}
.badge-vid {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.g-item:hover .badge-vid { background: var(--gold); border-color: var(--gold); }
.badge-vid svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }

.g-item.hidden { display: none; }

/* ── Empty state ── */
.empty-state {
    text-align: center; padding: 60px 0;
    color: var(--text-dim); display: none;
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.empty-state.show { display: block; }

/* ── Lightbox ── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8,15,30,.95); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

#lbMedia img, #lbMedia video {
    max-width: 90vw; max-height: 88vh;
    border-radius: var(--radius); display: block;
    box-shadow: 0 24px 64px rgba(0,0,0,.55);
}

.lb-close {
    position: fixed; top: 20px; right: 24px;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.lb-close:hover { background: var(--rust); border-color: var(--rust); }
.lb-close svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2; fill: none; }

.lb-arrow {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border: 1.5px solid rgba(255,255,255,.18); border-radius: 50%;
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.lb-arrow:hover { background: var(--gold); border-color: var(--gold); }
.lb-arrow svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2; fill: none; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-caption {
    position: fixed; bottom: 24px; left: 0; right: 0; text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem; font-style: italic; color: rgba(255,255,255,.38);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .gallery-grid { columns: 3 180px; }
}
@media (max-width: 600px) {
    .gallery-grid { columns: 2 140px; }
    .filters { gap: 6px; margin-bottom: 32px; }
    .f-btn { font-size: .6rem; padding: 7px 12px; }
}




/* Fix 1 — make the anchor itself clickable */
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 10;
  text-decoration: none;
}

/* Fix 2 — if .service-card has position: relative + a pseudo overlay, remove it */
.service-card::before,
.service-card::after {
  pointer-events: none;  /* stops glow/overlay from blocking clicks */
}

/* Fix 3 — glow element must not block clicks */
.service-card-glow {
  pointer-events: none;
}