/* ============================================================
   HOMEPAGE.CSS v3 — Premium editorial redesign
   Loaded only by index.html. Inner pages use styles.css only.
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --espresso-deep: #160F0D;
  --deep-cocoa:    #241714;
  --warm-ivory:    #F7F1EA;
  --soft-nude:     #E7CFC1;
  --champagne:     #D2AF78;
  --gold-muted:    #B98545;
  --muted-rose:    #B9857B;
  --light-text:    #F8F2EA;
  --dark-text:     #261C19;
  --sec-text:      #75645E;
  --subtle-border: rgba(185,133,69,0.30);
  --services-bg:   #FBF7F1;
  --artist-bg:     #EDE4DB;
}

/* ── BG HELPERS ──────────────────────────────────────────── */
.bg-espresso-deep { background: var(--espresso-deep); }
.bg-warm-ivory    { background: var(--warm-ivory); }
.bg-soft-nude     { background: var(--soft-nude); }

/* ── BUTTON VARIANTS ─────────────────────────────────────── */
.btn-champagne {
  background: var(--champagne);
  color: var(--dark-text);
  min-height: 50px;
}
.btn-champagne:hover { background: #d4aa74; transform: translateY(-1px); }

.btn-outline-ivory {
  border: 1px solid rgba(247,242,236,0.45);
  color: var(--light-text);
  background: transparent;
  min-height: 50px;
}
.btn-outline-ivory:hover { background: rgba(247,242,236,0.07); }

.btn-outline-dark {
  border: 1.5px solid rgba(36,26,24,0.4);
  color: var(--dark-text);
  background: transparent;
  min-height: 50px;
}
.btn-outline-dark:hover { background: rgba(36,26,24,0.07); }

/* ── MOBILE STICKY ───────────────────────────────────────── */
.mobile-sticky-v2 {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 89;
  background: var(--espresso-deep);
  border-top: 1px solid var(--subtle-border);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: stretch;
}
.mobile-sticky-v2 .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  min-height: 50px;
}

/* ═══════════════════════════════════════════════════════════
   S1 — EDITORIAL HERO (Split: dark text left | bride right)
   ══════════════════════════════════════════════════════════ */
.h-hero {
  background: var(--espresso-deep);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Shift content-area down by header height so align-items:center
     visually centers text in the viewport below the header */
  padding-top: var(--header-h, 72px);
}

/* LEFT COLUMN — text, 48% width */
.h-hero-text {
  position: relative;
  z-index: 2;
  width: 48%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-left: max(56px, calc((100vw - 1440px) / 2 + 56px));
  padding-right: 40px;
}

.h-hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 32px;
  opacity: 0;
  animation: hUp 0.7s ease forwards 0.2s;
}

.h-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--light-text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: hUp 0.7s ease forwards 0.35s;
}
.h-hero-h1 em {
  font-style: italic;
  color: var(--champagne);
}

.h-hero-rule {
  width: 56px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  animation: hUp 0.7s ease forwards 0.48s;
}

.h-hero-lead {
  font-size: 17px;
  color: rgba(220,196,182,0.72);
  max-width: 340px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  animation: hUp 0.7s ease forwards 0.58s;
}

.h-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hUp 0.7s ease forwards 0.72s;
}

/* RIGHT COLUMN — bride portrait fills right 60%, bleeds out at all edges */
.h-hero-img-col {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
}

/* Image fills column, then CSS mask fades all edges into dark bg */
.h-hero-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  /* Mask: fade left strongly, fade top/right/bottom gently */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 22%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 22%, black 75%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 85%, transparent 100%);
  mask-composite: intersect;
}

/* No pseudo-element gradients needed — mask on img handles all edge fading */
.h-hero-img-col::before,
.h-hero-img-col::after { display: none; }

/* Eye inset removed */
.h-hero-inset { display: none; }

/* Gold corner frame in top-right of image column */
.h-hero-corner {
  position: absolute;
  top: 32px;
  right: 28px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-top: 1px solid var(--subtle-border);
  border-right: 1px solid var(--subtle-border);
  pointer-events: none;
  display: block;
}

/* Scroll cue */
.h-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: max(32px, calc((100vw - 1280px) / 2 + 48px));
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.h-hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198,161,104,0.35);
}
.h-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(198,161,104,0.4), transparent);
  animation: scrollBlink 2.5s ease-in-out infinite;
}

@keyframes hUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollBlink {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.72; }
}
@media (prefers-reduced-motion: reduce) {
  .h-hero-eyebrow, .h-hero-h1, .h-hero-rule,
  .h-hero-lead, .h-hero-ctas { opacity: 1; animation: none; }
  .h-hero-scroll-line { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   S2 — FEATURED BRIDAL ARTISTRY (Warm Ivory #F7F0E8)
   ══════════════════════════════════════════════════════════ */
.h-gallery {
  background: var(--warm-ivory);
  padding: 96px 0 80px;
}

.h-gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left: sticky heading */
.h-gallery-head {
  position: sticky;
  top: 96px;
}

.h-gallery-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark-text);
  margin-bottom: 14px;
}
.h-gallery-h2 em { font-style: italic; }

.h-gallery-rule {
  width: 44px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin-bottom: 18px;
}

.h-gallery-lead {
  font-size: 15px;
  color: var(--sec-text);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Filter pills */
.h-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
}

.h-filter-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 50px;
  border: 1px solid rgba(36,26,24,0.2);
  background: transparent;
  color: var(--sec-text);
  cursor: pointer;
  transition: all 0.2s;
}
.h-filter-pill.active,
.h-filter-pill:hover {
  border-color: var(--champagne);
  color: var(--dark-text);
  background: rgba(198,161,104,0.1);
}

/* Right: mosaic grid — 1.15fr left column + 2 equal columns, auto-rows control height */
.h-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 248px;
  gap: 8px;
}

.h-mosaic-cell {
  overflow: hidden;
  position: relative;
  background: rgba(36,26,24,0.08);
  cursor: pointer;
}

.h-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease;
}
.h-mosaic-cell:hover img { transform: scale(1.04); }
.h-mosaic-cell.hidden { display: none; }

/* Tall variant: spans 2 rows — used for the hero-left cell */
.h-mosaic-cell.h-tall { grid-row: span 2; }

/* Hover overlay */
.h-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,15,13,0);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: background 0.32s;
}
.h-mosaic-cell:hover .h-mosaic-overlay { background: rgba(22,15,13,0.38); }

.h-mosaic-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,236,0.9);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.28s;
}
.h-mosaic-cell:hover .h-mosaic-tag { opacity: 1; transform: none; }

.h-gallery-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,161,104,0.35);
  padding-bottom: 2px;
  margin-top: 28px;
  transition: color 0.2s, border-color 0.2s;
}
.h-gallery-cta-link:hover {
  color: var(--dark-text);
  border-color: var(--dark-text);
}

/* ═══════════════════════════════════════════════════════════
   S3 — CREDENTIAL STRIP (Warm Ivory, inline minimal)
   ══════════════════════════════════════════════════════════ */
.h-cred-strip {
  background: var(--warm-ivory);
  border-top: 1px solid rgba(198,161,104,0.22);
  border-bottom: 1px solid rgba(198,161,104,0.22);
  padding: 20px 0;
}

.h-cred-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.h-cred-item {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sec-text);
  padding: 4px 28px;
  position: relative;
}
.h-cred-item + .h-cred-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(198,161,104,0.45);
}

/* ═══════════════════════════════════════════════════════════
   S4 — MEET ARIA (Warm artist bg #EDE4DB)
   ══════════════════════════════════════════════════════════ */
.h-artist {
  background: var(--artist-bg);
  padding: 96px 0;
}

.h-artist-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Left: photo composition */
.h-artist-photos {
  position: relative;
  padding-bottom: 40px;
  padding-right: 32px;
}

.h-artist-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.h-artist-inset-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
  height: 215px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--artist-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

/* Right: content */
.h-artist-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 16px;
}

.h-artist-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 14px;
}
.h-artist-h2 em { font-style: italic; }

.h-artist-rule {
  width: 44px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin: 16px 0 22px;
}

.h-artist-bio {
  font-size: 16px;
  color: var(--sec-text);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}

/* Stats */
.h-artist-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(198,161,104,0.22);
  border-bottom: 1px solid rgba(198,161,104,0.22);
  margin-bottom: 36px;
}

.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 4px;
}

.h-stat-label {
  font-size: 11px;
  color: var(--sec-text);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   S5 — SIGNATURE SERVICES (Very light #FAF6F2)
   ══════════════════════════════════════════════════════════ */
.h-services {
  background: var(--services-bg);
  padding: 96px 0;
}

.h-services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.h-services-head {
  text-align: center;
  margin-bottom: 64px;
}

.h-services-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 16px;
}

.h-services-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.12;
}
.h-services-h2 em { font-style: italic; }

/* Three borderless editorial panels */
.h-svc-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
  align-items: start;
}

.h-svc-panel {}

.h-svc-img-wrap {
  overflow: hidden;
  margin-bottom: 22px;
}
.h-svc-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}
.h-svc-panel:hover .h-svc-img-wrap img { transform: scale(1.03); }

.h-svc-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
}

.h-svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.h-svc-desc {
  font-size: 14px;
  color: var(--sec-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.h-svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 14px;
}
.h-svc-price strong { color: var(--champagne); }

.h-svc-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(36,26,24,0.22);
  padding-bottom: 3px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.h-svc-link:hover { gap: 14px; color: var(--champagne); border-color: var(--champagne); }

/* Secondary services */
.h-svc-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(198,161,104,0.2);
  padding-top: 28px;
}

.h-svc-sec-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sec-text);
  padding: 6px 22px;
  position: relative;
  cursor: default;
}
.h-svc-sec-item + .h-svc-sec-item::before {
  content: '·';
  position: absolute;
  left: -2px;
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════
   S6 — BRIDAL JOURNEY (Dark Espresso #160F0D)
   ══════════════════════════════════════════════════════════ */
.h-journey {
  background: var(--espresso-deep);
  padding: 96px 0;
}

.h-journey-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

/* Left: BTS image */
.h-journey-img-wrap {}
.h-journey-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Right: content */
.h-journey-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 16px;
}

.h-journey-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.1;
  margin-bottom: 48px;
}
.h-journey-h2 em { font-style: italic; }

/* Timeline */
.h-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.h-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(to bottom, var(--champagne) 0%, rgba(198,161,104,0.08) 100%);
}

.h-timeline-step {
  display: flex;
  gap: 24px;
  padding-bottom: 38px;
  position: relative;
}
.h-timeline-step:last-child { padding-bottom: 0; }

.h-timeline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--champagne);
  width: 40px;
  flex-shrink: 0;
  padding-top: 4px;
  position: relative;
  z-index: 1;
  text-align: right;
}

.h-timeline-dot {
  position: absolute;
  left: 16px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  z-index: 2;
}

.h-timeline-body {}
.h-timeline-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--light-text);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}
.h-timeline-body p {
  font-size: 13px;
  color: rgba(220,196,182,0.62);
  line-height: 1.65;
}

.h-journey-cta { margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════
   S7 — TESTIMONIALS ("Words That Stay") (Warm Ivory, editorial)
   ══════════════════════════════════════════════════════════ */
.h-testi {
  background: var(--warm-ivory);
  padding: 96px 0;
}

.h-testi-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.h-testi-head {
  text-align: center;
  margin-bottom: 64px;
}

.h-testi-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 14px;
}

.h-testi-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.1;
}
.h-testi-h2 em { font-style: italic; }

/* 3-part editorial layout */
.h-testi-editorial {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}

.h-testi-side {
  display: flex;
  flex-direction: column;
}

.h-testi-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 20px;
}

/* Featured center card */
.h-testi-center {
  background: var(--espresso-deep);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-testi-qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--champagne);
  line-height: 0.55;
  display: block;
  margin-bottom: 22px;
}

.h-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.62;
  margin-bottom: 22px;
}

.h-testi-side .h-testi-quote { color: var(--dark-text); font-size: 18px; }
.h-testi-center .h-testi-quote { color: var(--light-text); font-size: 22px; }

.h-testi-sep {
  width: 32px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin-bottom: 14px;
}

.h-testi-name {
  font-size: 13px;
  font-weight: 600;
}
.h-testi-side .h-testi-name { color: var(--dark-text); }
.h-testi-center .h-testi-name { color: var(--light-text); }

.h-testi-occasion {
  font-size: 12px;
  margin-top: 2px;
}
.h-testi-side .h-testi-occasion { color: var(--sec-text); }
.h-testi-center .h-testi-occasion { color: rgba(220,196,182,0.55); }

.h-testi-source {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.h-testi-side .h-testi-source { color: var(--champagne); }
.h-testi-center .h-testi-source { color: rgba(198,161,104,0.6); }

.h-testi-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════
   S8 — ACADEMY PREVIEW (Soft Nude #DCC4B6)
   ══════════════════════════════════════════════════════════ */
.h-academy {
  background: var(--soft-nude);
  padding: 96px 0;
}

.h-academy-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.h-academy-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.h-academy-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(36,26,24,0.5);
  display: block;
  margin-bottom: 16px;
}

.h-academy-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.08;
  margin-bottom: 14px;
}
.h-academy-h2 em { font-style: italic; }

.h-academy-rule {
  width: 44px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin: 16px 0 22px;
}

.h-academy-desc {
  font-size: 16px;
  color: var(--sec-text);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 400px;
}

.h-academy-courses {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.h-course-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36,26,24,0.16);
  font-size: 15px;
  color: var(--dark-text);
  font-weight: 500;
  transition: all 0.22s;
}
.h-course-link:first-child { border-top: 1px solid rgba(36,26,24,0.16); }
.h-course-link:hover { color: var(--espresso-deep); padding-left: 10px; }

.h-course-arrow {
  font-size: 18px;
  color: var(--champagne);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   S9 — FINAL CTA + ENQUIRY FORM (Dark #160F0D)
   ══════════════════════════════════════════════════════════ */
.h-final {
  background: var(--espresso-deep);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.h-final-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.12) saturate(0.4);
  pointer-events: none;
}

.h-final-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.h-final-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 18px;
}

.h-final-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.08;
  margin-bottom: 18px;
}
.h-final-h2 em { font-style: italic; }

.h-final-lead {
  font-size: 16px;
  color: rgba(220,196,182,0.7);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 400px;
}

.h-final-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.h-final-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(220,196,182,0.68);
}

.h-final-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  flex-shrink: 0;
}

/* Form */
.h-form-wrap {
  background: var(--deep-cocoa);
  border: 1px solid var(--subtle-border);
  padding: 40px 36px;
}

.h-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--light-text);
  margin-bottom: 28px;
}

/* 2-column form grid */
.h-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.h-form-grid .h-full { grid-column: 1 / -1; }

.h-field-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(198,161,104,0.5);
  display: block;
  margin-bottom: 6px;
}

.h-field {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,161,104,0.18);
  color: var(--light-text);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  padding: 13px 14px;
  transition: border-color 0.22s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.h-field:focus { outline: none; border-color: var(--champagne); }
.h-field.error { border-color: #b94040 !important; }
.h-field::placeholder { color: rgba(255,255,255,0.2); }
.h-field option { background: var(--deep-cocoa); }

.h-field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(198,161,104,0.45)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.h-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.h-form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--champagne); flex-shrink: 0; }
.h-form-consent label { font-size: 11px; color: rgba(163,143,133,0.72); line-height: 1.5; }

/* Form success */
.h-form-success {
  display: none;
  padding: 20px 0;
}
.h-form-success.show { display: block; }
.h-form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--light-text);
  margin-bottom: 12px;
  font-weight: 400;
}
.h-form-success p { font-size: 14px; color: rgba(220,196,182,0.7); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (supplement app.js)
   ══════════════════════════════════════════════════════════ */
/* app.js handles .reveal → .in, reuse those here for homepage */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.26s; }
.reveal-delay-3 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1100px (Tablet)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Hero: collapse split to full-bleed at tablet */
  .h-hero { min-height: 100dvh; }
  .h-hero-text {
    width: 100%;
    padding: calc(var(--header-h) + 60px) 32px 80px;
    max-width: 560px;
  }
  .h-hero-img-col {
    top: 0; right: 0;
    width: 100%;
    height: 100%;
  }
  .h-hero-img-col::before {
    background: linear-gradient(
      105deg,
      rgba(22,15,13,0.93) 0%,
      rgba(22,15,13,0.78) 35%,
      rgba(22,15,13,0.38) 65%,
      rgba(22,15,13,0.08) 100%
    );
  }
  .h-hero-inset  { display: none; }
  .h-hero-corner { display: none; }

  /* Gallery: stack */
  .h-gallery-inner { grid-template-columns: 1fr; gap: 40px; }
  .h-gallery-head { position: static; }
  .h-gallery-mosaic { grid-template-columns: repeat(3, 1fr); }

  /* Artist: stack */
  .h-artist-inner { grid-template-columns: 1fr; gap: 48px; }
  .h-artist-photos { padding-right: 0; padding-bottom: 24px; max-width: 480px; }
  .h-artist-main-img { aspect-ratio: 4/5; object-position: center top; }
  .h-artist-inset-img { width: 130px; height: 165px; }
  .h-artist-stats { grid-template-columns: repeat(2, 1fr); }

  /* Services: 1 col */
  .h-svc-panels { grid-template-columns: 1fr; }
  .h-svc-img-wrap img { aspect-ratio: 4/5; object-position: center top; }

  /* Journey: stack */
  .h-journey-inner { grid-template-columns: 1fr; gap: 48px; }
  .h-journey-img-wrap { display: none; }

  /* Testimonials: stack */
  .h-testi-editorial { grid-template-columns: 1fr; }
  .h-testi-photo { aspect-ratio: 4/5; object-position: center top; }

  /* Academy: stack */
  .h-academy-inner { grid-template-columns: 1fr; gap: 40px; }
  .h-academy-img-wrap img { aspect-ratio: 4/5; max-width: 480px; object-position: center top; }

  /* Final CTA: stack */
  .h-final-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Mobile sticky */
  .mobile-sticky-v2 { display: flex; }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .h-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .h-mosaic-cell.h-tall { grid-row: span 1; }

  .h-testi-editorial { grid-template-columns: 1fr; }

  .h-form-grid { grid-template-columns: 1fr; }
}

/* ── 640px ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .h-hero-text { max-width: 100%; padding: calc(var(--header-h) + 48px) 20px 72px; }
  .h-hero-h1 { font-size: clamp(44px, 11vw, 58px); }
  .h-hero-ctas { flex-direction: column; }
  .h-hero-scroll { display: none; }

  .h-gallery-inner { padding: 0 20px; }
  .h-gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }

  .h-cred-strip-inner { padding: 0 20px; }
  .h-cred-item { padding: 4px 16px; }

  .h-artist-inner, .h-services-inner, .h-journey-inner,
  .h-testi-inner, .h-academy-inner, .h-final-inner { padding: 0 20px; }

  .h-artist-stats { grid-template-columns: repeat(2, 1fr); }

  .h-testi-editorial { grid-template-columns: 1fr; }

  .h-form-wrap { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   REFINEMENTS v2 — UI/UX finishing pass
   ══════════════════════════════════════════════════════════ */

/* ── BTN heights: 44–48px minimum ───────────────────────── */
.btn { min-height: 46px; padding: 13px 28px; font-size: 12px; letter-spacing: 0.08em; }
.btn-sm { min-height: 40px; padding: 10px 22px; }

/* ── HERO: larger lead, updated sizes ────────────────────── */
.h-hero-h1 {
  font-size: clamp(58px, 6.8vw, 100px);
  line-height: 1.0;
}
.h-hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(220,196,182,0.80);
}
.h-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
}

/* ── TRUST STRIP (below hero) ────────────────────────────── */
.h-trust-strip {
  background: var(--espresso-deep);
  border-top: 1px solid rgba(198,161,104,0.18);
  border-bottom: 1px solid rgba(198,161,104,0.18);
  padding: 18px 0;
}
.h-trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
.h-trust-item {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,242,234,0.72);
  padding: 4px 20px;
}
.h-trust-sep {
  color: var(--champagne);
  font-size: 14px;
  opacity: 0.6;
  padding: 4px 0;
}

/* ── GALLERY: eyebrow + CTA button ──────────────────────── */
.h-gallery-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 16px;
}
.h-gallery-h2 { font-size: clamp(44px, 4.8vw, 72px); }
.h-gallery-lead { font-size: 16px; line-height: 1.78; }
.h-gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--dark-text) !important;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ── ARTIST: remove inset photo ──────────────────────────── */
.h-artist-inset-img { display: none !important; }
.h-artist-photos { padding-right: 0; padding-bottom: 0; }
.h-artist-main-img { border-radius: 2px; }
.h-artist-bio { font-size: 16px; line-height: 1.78; }
.h-stat-num { font-size: 40px; }
.h-stat-label { font-size: 12px; line-height: 1.5; }

/* ── SERVICES: clickable card link ───────────────────────── */
.h-svc-panel-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.h-svc-panel-link:hover { transform: translateY(-4px); }
.h-svc-panel-link:hover .h-svc-img-wrap img { transform: scale(1.04); }
.h-svc-name { font-size: clamp(20px, 2.2vw, 24px); }
.h-svc-desc { font-size: 15px; line-height: 1.72; }
.h-svc-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(36,26,24,0.22);
  padding-bottom: 3px;
  transition: gap 0.2s, color 0.2s;
  margin-top: 4px;
}
.h-svc-panel-link:hover .h-svc-link { gap: 14px; color: var(--champagne); border-color: var(--champagne); }

/* ── AI CARDS: "Try Tool" action ─────────────────────────── */
.h-ai-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.h-ai-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.h-ai-card:hover img { transform: scale(1.05); }
.h-ai-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.84) 0%, rgba(15,12,10,0.2) 55%, transparent 100%);
  transition: background 0.3s ease;
}
.h-ai-card:hover .h-ai-card-overlay {
  background: linear-gradient(to top, rgba(15,12,10,0.92) 0%, rgba(15,12,10,0.35) 55%, transparent 100%);
}
.h-ai-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-ai-card-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
}
.h-ai-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--light-text);
  line-height: 1.2;
  margin: 0;
}
.h-ai-card-action {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: block;
  margin-top: 6px;
}
.h-ai-card:hover .h-ai-card-action { opacity: 1; transform: none; }
.h-ai-preview-desc { font-size: 16px; line-height: 1.72; }

/* ── JOURNEY: bigger numbers, better spacing ─────────────── */
.h-timeline-num {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: var(--champagne);
  width: 44px;
  flex-shrink: 0;
  padding-top: 2px;
  position: relative;
  z-index: 1;
  text-align: right;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.04em;
}
.h-timeline-body h4 {
  font-size: clamp(17px, 1.8vw, 20px);
  font-style: normal;
  letter-spacing: 0.01em;
}
.h-timeline-body p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(220,196,182,0.68);
}
.h-timeline-step { padding-bottom: 32px; }
.h-journey-h2 { margin-bottom: 36px; }

/* ── TESTIMONIALS: single slider ────────────────────────── */
.h-testi-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  outline: none;
}
.h-testi-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  animation: testiIn 0.4s ease;
}
.h-testi-slide.active { display: flex; }
@keyframes testiIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.h-testi-big-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 0.6;
  color: var(--champagne);
  opacity: 0.45;
  display: block;
  margin-bottom: 24px;
  pointer-events: none;
}
.h-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-text);
  max-width: 640px;
  margin: 0 auto 32px;
}
.h-testi-slide-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.h-testi-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(198,161,104,0.4);
  flex-shrink: 0;
}
.h-testi-portrait-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(198,161,104,0.12);
  border: 2px solid rgba(198,161,104,0.3);
  flex-shrink: 0;
}
.h-testi-sep {
  width: 28px;
  height: 1px;
  background: var(--champagne);
  display: block;
  margin-bottom: 10px;
}
.h-testi-name  { font-size: 14px; font-weight: 600; color: var(--dark-text); }
.h-testi-occasion { font-size: 13px; color: var(--sec-text); margin-top: 2px; }
.h-testi-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 8px;
}
/* Controls */
.h-testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.h-testi-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36,26,24,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark-text);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.h-testi-arrow:hover { border-color: var(--champagne); color: var(--champagne); background: rgba(198,161,104,0.07); }
.h-testi-dots { display: flex; gap: 8px; align-items: center; }
.h-testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(36,26,24,0.18);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.h-testi-dot.active { background: var(--champagne); transform: scale(1.3); }
/* Trust strip below testimonials */
.h-testi-trust-strip {
  text-align: center;
  border-top: 1px solid rgba(198,161,104,0.2);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
.h-testi-trust-item {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-text);
  padding: 4px 20px;
}
.h-testi-trust-sep { color: var(--champagne); opacity: 0.6; font-size: 14px; padding: 4px 0; }

/* ── ACADEMY: highlights badges ──────────────────────────── */
.h-academy-desc { font-size: 16px; line-height: 1.75; margin-bottom: 22px; }
.h-academy-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.h-academy-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(36,26,24,0.65);
  border: 1px solid rgba(36,26,24,0.2);
  border-radius: 50px;
  padding: 5px 14px;
}
.h-course-link { font-size: 15px; padding: 18px 0; }

/* ── FORM: improvements ──────────────────────────────────── */
.h-form-title {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 24px;
}
.h-field-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(198,161,104,0.65);
  margin-bottom: 7px;
}
.h-field {
  font-size: 15px;
  padding: 14px 16px;
}
.h-form-note {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(220,196,182,0.5);
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

/* WhatsApp secondary option */
.h-final-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(220,196,182,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,161,104,0.25);
  padding-bottom: 2px;
  margin-top: 24px;
  transition: color 0.2s, border-color 0.2s;
}
.h-final-wa-link:hover { color: var(--champagne); border-color: var(--champagne); }
.h-final-lead { font-size: 16px; line-height: 1.78; }
.h-final-h2 { font-size: clamp(36px, 4vw, 58px); }

/* ── FOOTER: improvements ────────────────────────────────── */
.footer { padding: 80px 0 0; }
.footer-inner { padding-bottom: 56px; gap: 72px; }
.footer-brand .logo-mark { width: 58px !important; height: 58px !important; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-top: 14px; }
.footer-contact-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-line {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-line:hover { color: var(--ivory); }
.footer-col-title { font-size: 11px; letter-spacing: 0.18em; margin-bottom: 20px; }
.footer-link { font-size: 14px; margin-bottom: 12px; }
.footer-bottom {
  padding: 24px 24px;
  font-size: 13px;
  justify-content: center;
}

/* ── CONSISTENCY: max-width & padding ───────────────────── */
.h-gallery-inner,
.h-artist-inner,
.h-services-inner,
.h-journey-inner,
.h-testi-inner,
.h-academy-inner,
.h-final-inner {
  max-width: 1240px;
}

/* ── RESPONSIVE ADDITIONS ────────────────────────────────── */
@media (max-width: 1100px) {
  .h-trust-strip-inner { padding: 0 24px; }
  .h-trust-sep { display: none; }
  .h-trust-item { padding: 4px 12px; }
  .h-testi-slider { padding: 0 16px; }
}
@media (max-width: 768px) {
  .h-trust-item { font-size: 11px; padding: 3px 10px; }
  .h-testi-quote { font-size: clamp(18px, 5vw, 22px); }
  .h-testi-big-q { font-size: 72px; margin-bottom: 16px; }
  .h-academy-highlights { gap: 6px; }
  .h-ai-card-action { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .h-trust-strip-inner { padding: 0 16px; flex-direction: column; gap: 4px; }
  .h-trust-sep { display: none; }
  .h-trust-item { padding: 2px 0; text-align: center; }
  .h-testi-slide-meta { flex-direction: column; align-items: center; text-align: center; }
  .h-testi-sep { margin: 0 auto 10px; }
  .h-gallery-cta-btn { width: 100%; justify-content: center; }
  .h-svc-panel-link { transform: none !important; }
  .h-final-wa-link { font-size: 13px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
