/* ============================================================
   SXY GARMENTS — styles.css  v3 Premium
   Inter (body) · Playfair Display (headings)
   Brand: Orange #C87137 · Olive #5C6B2E · Sky #3AABCA
   ============================================================ */

/* ── Variables ── */
:root {
  --black:      #0a0a0a;
  --ink:        #141414;
  --ink-2:      #1c1c1c;
  --ink-3:      #242424;
  --charcoal:   #333;
  --white:      #ffffff;
  --off-white:  #f6f6f4;
  --warm:       #f9f5f0;
  --grey-1:     #e4e4e0;
  --grey-2:     #c8c8c4;
  --grey-3:     #9a9a96;
  --grey-4:     #6a6a66;
  --grey-5:     #444440;
  --gold:       #c9a84c;

  /* ── SXY Brand Colors ── */
  --primary:       #C87137;
  --primary-dark:  #a55c28;
  --primary-light: #f0d4bc;
  --olive:         #5C6B2E;
  --olive-dark:    #3e4a1e;
  --olive-light:   #d4ddb8;
  --sky:           #3AABCA;
  --sky-dark:      #2887a3;
  --sky-light:     #c0e8f2;

  --border:     rgba(0,0,0,.08);
  --border-md:  rgba(0,0,0,.13);

  --sh-xs:  0 1px 4px rgba(0,0,0,.05);
  --sh-sm:  0 2px 16px rgba(0,0,0,.07);
  --sh-md:  0 8px 40px rgba(0,0,0,.10);
  --sh-lg:  0 24px 72px rgba(0,0,0,.14);
  --sh-xl:  0 40px 100px rgba(0,0,0,.18);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;

  --ease:    all .28s cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --header-h: 72px;
  --max-w:    1200px;
  --r:        4px;
  --r-md:     8px;
  --r-lg:     14px;
  --r-xl:     20px;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { font-size:16px; scroll-behavior:smooth; overflow-x:hidden }
body { font-family:var(--font-body); background:var(--white); color:var(--black); line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden }
a { text-decoration:none; color:inherit; transition:var(--ease) }
img { display:block; max-width:100% }
button { cursor:pointer; font-family:var(--font-body); border:none; background:none }
ul,ol { list-style:none }
::selection { background:var(--black); color:var(--white) }
::-webkit-scrollbar { width:3px }
::-webkit-scrollbar-track { background:transparent }
::-webkit-scrollbar-thumb { background:var(--charcoal); border-radius:2px }

/* ── Base typography ── */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-head); font-weight:700; line-height:1.18; letter-spacing:-.015em; color:var(--black) }
p { color:var(--grey-4); line-height:1.75 }

/* ── Layout ── */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 clamp(20px,5vw,64px) }
.text-center { text-align:center }

/* ── Reveal ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out) }
.reveal.visible { opacity:1; transform:none }
.reveal-delay-1 { transition-delay:.08s }
.reveal-delay-2 { transition-delay:.16s }
.reveal-delay-3 { transition-delay:.24s }
.reveal-delay-4 { transition-delay:.32s }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h);
  overflow:visible;          /* allow logo badge to hang below the header bar */
  background:var(--white);
  border-bottom:1px solid var(--border);
  transition:background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header--solid {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--border), var(--sh-sm);
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:100%; max-width:var(--max-w); margin:0 auto;
  padding:0 clamp(20px,5vw,64px);
  overflow:visible;
}
.header-logo { display:flex; flex-direction:column; gap:1px }
.header-logo-name { font-family:var(--font-head); font-size:1.22rem; font-weight:700; color:var(--black); line-height:1; letter-spacing:-.01em }
.header-logo-sub { font-family:var(--font-body); font-size:.56rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--grey-3) }
.header-nav { display:flex; align-items:center; gap:0 }
.nav-link {
  font-size:.8rem; font-weight:500; letter-spacing:.01em;
  padding:7px 14px; border-radius:var(--r);
  color:var(--grey-5); position:relative; transition:var(--ease)
}
.nav-link:hover { color:var(--black) }
.nav-link.active { color:var(--black); font-weight:600 }
.nav-link.active::after {
  content:''; position:absolute;
  bottom:-2px; left:14px; right:14px;
  height:2px; background:var(--black); border-radius:2px
}
.nav-cta {
  display:inline-flex; align-items:center;
  padding:8px 20px; margin-left:10px;
  background:var(--black); color:var(--white);
  font-size:.78rem; font-weight:600; letter-spacing:.04em;
  border-radius:var(--r); transition:var(--ease)
}
.nav-cta:hover { background:var(--charcoal); transform:translateY(-1px); box-shadow:var(--sh-sm) }
.header-hamburger {
  display:none; flex-direction:column; gap:5px;
  width:40px; height:40px; align-items:center; justify-content:center;
  border:1px solid var(--border); border-radius:var(--r)
}
.header-hamburger span { display:block; width:18px; height:1.5px; background:var(--black); transition:var(--ease) }
.header-hamburger.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg) }
.header-hamburger.active span:nth-child(2) { opacity:0 }
.header-hamburger.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg) }
.mobile-nav {
  position:fixed; inset:0; z-index:999; background:var(--white);
  padding:96px 40px 40px; transform:translateX(100%);
  transition:transform .38s var(--ease-out);
  display:flex; flex-direction:column; gap:4px;
  overflow-y:auto; -webkit-overflow-scrolling:touch;
}
.mobile-nav.open { transform:translateX(0) }
.mobile-nav-link { font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--black); padding:14px 0; border-bottom:1px solid var(--grey-1) }
.mobile-nav-cta { display:inline-flex; align-items:center; justify-content:center; margin-top:24px; padding:14px 32px; background:var(--black); color:var(--white); font-size:.85rem; font-weight:600; letter-spacing:.04em; border-radius:var(--r) }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background:var(--ink); padding:72px 0 0 }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.06) }
.footer-brand { display:flex; flex-direction:column }
.footer-logo { display:inline-block; margin-bottom:14px }
.footer-logo-name { font-family:var(--font-head); font-size:1.22rem; font-weight:700; color:var(--white) }

/* ── Footer brand: logo left, content right ── */
.footer-brand-inner {
  display:flex;
  align-items:flex-start;
  gap:20px;
}
.footer-brand-content {
  flex:1;
  min-width:0;
}
.footer-logo-portrait {
  display:block;
  flex-shrink:0;
  text-decoration:none;
}
.footer-logo-portrait img {
  display:block;
  width:90px;
  height:auto;
  filter:drop-shadow(0 4px 18px rgba(200,113,55,.3));
  transition:opacity .25s ease, transform .25s ease;
}
.footer-logo-portrait:hover img {
  opacity:.85;
  transform:translateY(-2px);
}
.footer-desc { font-size:.83rem; color:rgba(255,255,255,.32); line-height:1.8; max-width:256px }
.footer-social { display:flex; flex-direction:row; align-items:center; gap:10px; margin-top:22px }
.footer-social-link { width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:rgba(255,255,255,.38); transition:var(--ease) }
.footer-social-link:hover { border-color:rgba(255,255,255,.3); color:var(--white); background:rgba(255,255,255,.07) }
.footer-col { display:flex; flex-direction:column }
.footer-col-title { font-family:var(--font-body); font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:18px }
.footer-links { display:flex; flex-direction:column; gap:11px }
.footer-links a { font-size:.83rem; color:rgba(255,255,255,.42); transition:color .2s }
.footer-links a:hover { color:var(--white) }
.footer-contact-list { display:flex; flex-direction:column; gap:14px; margin-top:4px }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:.82rem; color:rgba(255,255,255,.38); line-height:1.5 }
.footer-contact-item svg { width:14px; height:14px; flex-shrink:0; margin-top:2px; color:rgba(255,255,255,.22) }
.footer-hours { display:flex; flex-direction:column; gap:10px; margin-top:4px }
.footer-hours-row { display:flex; justify-content:space-between; gap:8px; font-size:.78rem; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.05) }
.footer-hours-day { color:rgba(255,255,255,.38) }
.footer-hours-time { color:rgba(255,255,255,.62); font-weight:600 }
.footer-hours-row--closed .footer-hours-time { color:rgba(255,255,255,.2) }
.footer-enquiry-btn { display:inline-flex; align-items:center; gap:8px; margin-top:18px; padding:9px 18px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r); color:rgba(255,255,255,.55); font-size:.76rem; font-weight:600; transition:var(--ease) }
.footer-enquiry-btn:hover { background:rgba(255,255,255,.1); color:var(--white) }
.footer-enquiry-btn svg { width:12px; height:12px }
.footer-divider { height:1px; background:rgba(255,255,255,.05) }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:20px 0 }
.footer-copy { font-size:.76rem; color:rgba(255,255,255,.2) }
.footer-legal { display:flex; gap:20px }
.footer-legal a { font-size:.73rem; color:rgba(255,255,255,.2) }
.footer-legal a:hover { color:rgba(255,255,255,.5) }

/* Back to top */
.back-to-top { position:fixed; bottom:32px; right:32px; z-index:500; width:44px; height:44px; border-radius:50%; background:var(--black); color:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:var(--sh-md); transition:var(--ease); opacity:0; pointer-events:none; transform:translateY(14px) }
.back-to-top.visible { opacity:1; pointer-events:all; transform:none }
.back-to-top:hover { background:var(--charcoal); transform:translateY(-3px) }
.back-to-top svg { width:17px; height:17px }

/* Breadcrumb */
.breadcrumb { display:flex; align-items:center; justify-content:center; gap:6px; font-family:var(--font-body); font-size:.77rem; color:rgba(255,255,255,.35); margin-top:14px }
.breadcrumb-link { color:rgba(255,255,255,.42) }
.breadcrumb-link:hover { color:var(--white) }
.breadcrumb-sep { opacity:.3 }
.breadcrumb-current { color:rgba(255,255,255,.7); font-weight:600 }

/* ============================================================
   HOMEPAGE — shared atoms
   ============================================================ */
.hp-section { padding:100px 0 }
.hp-section--white { background:var(--white) }
.hp-section--warm  { background:var(--warm) }
.hp-section--ink   { background:var(--ink) }
.hp-section--grey  { background:var(--off-white) }

.hp-eyebrow { display:block; font-family:var(--font-body); font-size:.67rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:var(--grey-3); margin-bottom:12px }
.hp-eyebrow--pale { color:rgba(255,255,255,.35) }

.hp-heading { font-family:var(--font-head); font-size:clamp(1.9rem,3.5vw,2.75rem); font-weight:700; color:var(--black); line-height:1.18; margin-bottom:14px }
.hp-heading--white { color:var(--white) }

.hp-rule { width:40px; height:3px; background:var(--black); margin:14px 0 26px; border-radius:2px }
.hp-rule--center { margin-left:auto; margin-right:auto }
.hp-rule--dim { background:rgba(255,255,255,.2) }

.hp-body-text { font-size:.95rem; color:var(--grey-4); line-height:1.8; margin-bottom:14px }

.hp-split-head { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:60px }
.hp-split-sub { font-size:.92rem; color:var(--grey-4); max-width:400px; line-height:1.75 }
.hp-split-sub--pale { color:rgba(255,255,255,.45) }

.hp-center-head { text-align:center; margin-bottom:56px }
.hp-center-sub { font-size:.95rem; color:var(--grey-4); max-width:500px; margin:0 auto }
.hp-center-cta { text-align:center; margin-top:40px }

/* Buttons */
.hp-btn-solid { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; background:var(--black); color:var(--white); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.hp-btn-solid:hover { background:var(--charcoal); transform:translateY(-2px); box-shadow:var(--sh-md) }

.hp-btn-outline-dark { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; background:transparent; color:var(--black); border:1.5px solid var(--black); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.hp-btn-outline-dark:hover { background:var(--black); color:var(--white) }

.hp-btn-outline-white { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.3); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.hp-btn-outline-white:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6) }

.hp-btn-bare { display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--grey-4); transition:var(--ease) }
.hp-btn-bare svg { width:14px; height:14px; transition:transform .25s }
.hp-btn-bare:hover { color:var(--black) }
.hp-btn-bare:hover svg { transform:translateX(4px) }
.hp-btn-bare--dark { color:var(--black) }

/* CTA buttons in hero slides */
.hp-cta-solid { display:inline-flex; align-items:center; gap:8px; padding:14px 30px; background:var(--white); color:var(--black); font-size:.78rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.hp-cta-solid:hover { background:var(--off-white); transform:translateY(-2px); box-shadow:0 12px 32px rgba(0,0,0,.3) }
.hp-cta-line { display:inline-flex; align-items:center; gap:9px; padding:14px 6px; color:rgba(255,255,255,.7); font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,.25); transition:var(--ease) }
.hp-cta-line svg { width:14px; height:14px; transition:transform .3s }
.hp-cta-line:hover { color:var(--white); border-bottom-color:rgba(255,255,255,.6) }
.hp-cta-line:hover svg { transform:translateX(5px) }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hp-hero { position:relative; width:100%; height:100vh; min-height:620px; overflow:hidden; background:var(--ink); margin-top:var(--header-h) }
.hp-slides { position:absolute; inset:0 }

/* Individual slide */
.hp-slide {
  position:absolute; inset:0; overflow:hidden;
  opacity:0; z-index:0;
  transition:opacity 1.1s ease;
  pointer-events:none;
}
.hp-slide.is-active {
  opacity:1; z-index:2;
  pointer-events:all;
}
.hp-slide.is-prev {
  opacity:0; z-index:1;
  pointer-events:none;
}
.hp-slide-bg {
  position:absolute; inset:-5%;
  background-size:cover; background-position:center;
  transition:transform 8s ease;
  transform:scale(1.06)
}
.hp-slide.is-active .hp-slide-bg { transform:scale(1) }
.hp-slide.is-prev .hp-slide-bg  { transform:scale(1.04) }
.hp-slide-overlay {
  position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.3) 100%)
}
.hp-slide-noise {
  position:absolute; inset:0; pointer-events:none; opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px;
}

/* Slide content — animated per-element */
.hp-slide-body {
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:center;
  padding-bottom:80px;
}
.hp-slide-tag,
.hp-slide-title,
.hp-slide-desc,
.hp-slide-actions {
  opacity:0; transform:translateY(30px);
  transition:opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.hp-slide.is-active .hp-slide-tag   { opacity:1; transform:none; transition-delay:.2s }
.hp-slide.is-active .hp-slide-title { opacity:1; transform:none; transition-delay:.38s }
.hp-slide.is-active .hp-slide-desc  { opacity:1; transform:none; transition-delay:.52s }
.hp-slide.is-active .hp-slide-actions { opacity:1; transform:none; transition-delay:.66s }

/* On leave — fade out quickly */
.hp-slide.is-prev .hp-slide-tag,
.hp-slide.is-prev .hp-slide-title,
.hp-slide.is-prev .hp-slide-desc,
.hp-slide.is-prev .hp-slide-actions {
  opacity:0; transform:translateY(-16px);
  transition:opacity .45s ease, transform .45s ease;
}

.hp-slide-tag {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-body); font-size:.68rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.55);
  margin-bottom:22px; width:fit-content;
  padding:6px 14px; border:1px solid rgba(255,255,255,.16); border-radius:20px;
}
.hp-slide-tag-dot { width:6px; height:6px; border-radius:50%; background:var(--white); opacity:.6; flex-shrink:0; animation:tagPulse 2s ease-in-out infinite }
@keyframes tagPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

.hp-slide-title {
  font-family:var(--font-head);
  font-size:clamp(2.6rem,6vw,5rem);
  font-weight:700; color:var(--white);
  line-height:1.1; letter-spacing:-.025em;
  margin-bottom:20px; max-width:700px;
}
.hp-slide-desc {
  font-family:var(--font-body);
  font-size:clamp(.92rem,1.4vw,1.05rem);
  color:rgba(255,255,255,.62); line-height:1.8;
  max-width:500px; margin-bottom:40px;
}
.hp-slide-actions { display:flex; gap:16px; flex-wrap:wrap; align-items:center }

/* Hero progress bar */
.hp-hero-progress {
  position:absolute; bottom:0; left:0; right:0; height:2px;
  background:rgba(255,255,255,.08); z-index:5
}
.hp-hero-progress-fill { height:100%; background:var(--white); width:0% }

/* Hero side nav */
.hp-hero-sidenav {
  position:absolute; right:36px; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; align-items:center; gap:14px; z-index:5
}
.hp-hero-sidenav-btn {
  width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.6);
  display:flex; align-items:center; justify-content:center;
  transition:var(--ease); backdrop-filter:blur(4px)
}
.hp-hero-sidenav-btn:hover { background:rgba(255,255,255,.16); color:var(--white); border-color:rgba(255,255,255,.4) }
.hp-hero-sidenav-btn svg { width:18px; height:18px }
.hp-hero-counter {
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-family:var(--font-body); font-size:.68rem; font-weight:600; letter-spacing:.06em
}
.hp-hero-counter span:first-child { color:var(--white) }
.hp-hero-counter-sep { width:1px; height:20px; background:rgba(255,255,255,.2) }
.hp-hero-counter span:last-child { color:rgba(255,255,255,.3) }

/* Scroll cue */
.hp-scroll-cue {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px; z-index:5;
  font-family:var(--font-body); font-size:.6rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3)
}
.hp-scroll-mouse {
  width:22px; height:34px; border:1.5px solid rgba(255,255,255,.25); border-radius:11px;
  display:flex; justify-content:center; padding-top:5px
}
.hp-scroll-mouse-wheel {
  width:3px; height:7px; background:rgba(255,255,255,.5); border-radius:2px;
  animation:scrollWheel 2s ease-in-out infinite
}
@keyframes scrollWheel { 0%,100%{transform:translateY(0);opacity:.8} 50%{transform:translateY(6px);opacity:.2} }

/* ============================================================
   MARQUEE BAR
   ============================================================ */
.hp-marquee-bar { background:var(--black); overflow:hidden; border-bottom:1px solid rgba(255,255,255,.06); padding:14px 0 }
.hp-marquee-track {
  display:flex; gap:0;
  animation:marqueeScroll 28s linear infinite;
  white-space:nowrap; width:max-content
}
.hp-marquee-bar:hover .hp-marquee-track { animation-play-state:paused }
.hp-marquee-item {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-size:.7rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.35);
  padding:0 36px
}
.hp-marquee-item svg { width:5px; height:5px; color:rgba(255,255,255,.2) }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   STATS SECTION
   ============================================================ */
.hp-stats-section { background:var(--white); padding:80px 0; border-bottom:1px solid var(--grey-1) }
.hp-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0 }
.hp-stat-item {
  padding:40px 44px;
  border-right:1px solid var(--grey-1);
  position:relative
}
.hp-stat-item:last-child { border-right:none }
.hp-stat-num {
  font-family:var(--font-head);
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-weight:700; color:var(--black);
  line-height:1; margin-bottom:10px; display:flex; align-items:baseline; gap:2px
}
.hp-stat-suf { font-size:.55em; color:var(--grey-3); font-family:var(--font-body); font-weight:600 }
.hp-stat-label { font-family:var(--font-body); font-size:.74rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--grey-3); margin-bottom:14px }
.hp-stat-bar { height:2px; background:var(--grey-1); border-radius:2px; overflow:hidden }
.hp-stat-bar-fill { height:100%; background:var(--black); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform 1.2s var(--ease-out) }
.reveal.visible .hp-stat-bar-fill { transform:scaleX(1) }

/* ============================================================
   ABOUT
   ============================================================ */
.hp-about-grid { display:grid; grid-template-columns:1fr 1fr; gap:96px; align-items:center }
.hp-about-visual { position:relative }
.hp-about-img-wrap { position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-xl) }
.hp-about-img-wrap > img { width:100%; aspect-ratio:4/5; object-fit:cover; display:block }
.hp-about-img-card {
  position:absolute; bottom:-32px; right:-28px;
  width:52%; border-radius:var(--r-lg); overflow:hidden;
  border:5px solid var(--white); box-shadow:var(--sh-lg)
}
.hp-about-img-card img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block }
.hp-about-exp-badge {
  position:absolute; top:-18px; left:-18px;
  background:var(--black); color:var(--white);
  padding:24px 26px; border-radius:var(--r-lg);
  display:flex; flex-direction:column; align-items:center; gap:5px;
  box-shadow:var(--sh-lg); z-index:1
}
.hp-about-exp-num { font-family:var(--font-head); font-size:2.4rem; font-weight:700; line-height:1; color:var(--white) }
.hp-about-exp-num span { font-size:.6em; opacity:.6 }
.hp-about-exp-text { font-family:var(--font-body); font-size:.65rem; color:rgba(255,255,255,.42); text-align:center; line-height:1.5 }
.hp-about-body { display:flex; flex-direction:column }
.hp-about-features { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:22px 0 32px }
.hp-about-feature { display:flex; align-items:center; gap:10px; font-size:.85rem; font-weight:500; color:var(--charcoal) }
.hp-about-feature-icon { width:20px; height:20px; flex-shrink:0; background:var(--black); border-radius:50%; display:flex; align-items:center; justify-content:center }
.hp-about-feature-icon svg { width:10px; height:10px; stroke:var(--white) }
.hp-about-actions { display:flex; align-items:center; gap:24px; flex-wrap:wrap }

/* ============================================================
   SERVICES
   ============================================================ */
.hp-services-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-xl); overflow:hidden
}
.hp-svc-card {
  padding:44px 36px;
  border-right:1px solid rgba(255,255,255,.07);
  display:flex; flex-direction:column; gap:0;
  position:relative; overflow:hidden;
  transition:background .4s ease
}
.hp-svc-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.03) 0%, transparent 60%);
  pointer-events:none; opacity:0; transition:opacity .4s ease
}
.hp-svc-card:last-child { border-right:none }
.hp-svc-card:hover { background:rgba(255,255,255,.04) }
.hp-svc-card:hover::before { opacity:1 }
.hp-svc-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:28px }
.hp-svc-num { font-family:var(--font-body); font-size:.62rem; font-weight:700; letter-spacing:.16em; color:rgba(255,255,255,.2) }
.hp-svc-icon {
  width:44px; height:44px;
  background:rgba(255,255,255,.07); border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease
}
.hp-svc-icon svg { width:20px; height:20px; color:rgba(255,255,255,.6); transition:color .3s }
.hp-svc-card:hover .hp-svc-icon { background:rgba(255,255,255,.12) }
.hp-svc-card:hover .hp-svc-icon svg { color:var(--white) }
.hp-svc-title { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:12px }
.hp-svc-text { font-family:var(--font-body); font-size:.83rem; color:rgba(255,255,255,.42); line-height:1.75; margin-bottom:28px; flex:1 }
.hp-svc-link {
  display:flex; align-items:center; justify-content:space-between;
  font-family:var(--font-body); font-size:.73rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.35); padding-top:20px;
  border-top:1px solid rgba(255,255,255,.07); transition:var(--ease)
}
.hp-svc-link-arrow {
  width:32px; height:32px; border-radius:50%;
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  transition:var(--ease)
}
.hp-svc-link-arrow svg { width:13px; height:13px; transition:transform .3s }
.hp-svc-card:hover .hp-svc-link { color:rgba(255,255,255,.7) }
.hp-svc-card:hover .hp-svc-link-arrow { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.25) }
.hp-svc-card:hover .hp-svc-link-arrow svg { transform:translateX(3px) }
.hp-services-footer { text-align:right; margin-top:28px }

/* ============================================================
   GALLERY
   ============================================================ */
.hp-gallery-masonry { columns:3; column-gap:14px }
.hp-gallery-item {
  break-inside:avoid; margin-bottom:14px;
  position:relative; overflow:hidden; border-radius:var(--r-md);
  cursor:pointer; display:block
}
.hp-gallery-item img { width:100%; height:auto; display:block; transition:transform .55s var(--ease-out) }
.hp-gallery-item:hover img { transform:scale(1.07) }
.hp-gallery-hover {
  position:absolute; inset:0;
  background:rgba(0,0,0,0); transition:background .35s ease;
  display:flex; align-items:center; justify-content:center;
  border-radius:var(--r-md)
}
.hp-gallery-item:hover .hp-gallery-hover { background:rgba(0,0,0,.5) }
.hp-gallery-zoom {
  width:48px; height:48px; border-radius:50%;
  background:var(--white); display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(.65);
  transition:opacity .35s ease, transform .35s var(--ease-out)
}
.hp-gallery-zoom svg { width:20px; height:20px; color:var(--black) }
.hp-gallery-item:hover .hp-gallery-zoom { opacity:1; transform:scale(1) }

/* Lightbox */
.hp-lb {
  position:fixed; inset:0; z-index:9999;
  opacity:0; pointer-events:none;
  transition:opacity .35s ease
}
.hp-lb.is-open { opacity:1; pointer-events:all }
.hp-lb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.92); cursor:pointer }
.hp-lb img {
  position:relative; z-index:1;
  max-width:90vw; max-height:88vh; object-fit:contain;
  border-radius:var(--r-md);
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%)
}
.hp-lb-close {
  position:absolute; top:24px; right:28px; z-index:2;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.1); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  transition:var(--ease)
}
.hp-lb-close:hover { background:rgba(255,255,255,.2) }
.hp-lb-close svg { width:20px; height:20px }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hp-testi-layout { display:grid; grid-template-columns:360px 1fr; gap:80px; align-items:start }
.hp-testi-left { display:flex; flex-direction:column }
.hp-testi-nav { display:flex; align-items:center; gap:14px; margin:28px 0 24px }
.hp-testi-arrow {
  width:42px; height:42px; border-radius:50%;
  border:1.5px solid var(--black); color:var(--black);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:var(--ease)
}
.hp-testi-arrow:hover { background:var(--black); color:var(--white) }
.hp-testi-arrow svg { width:18px; height:18px }
.hp-testi-dots-row { display:flex; gap:6px; align-items:center }
.hp-testi-dot { width:7px; height:7px; border-radius:50%; background:var(--grey-2); transition:var(--ease); cursor:pointer }
.hp-testi-dot.is-on { background:var(--black); transform:scale(1.4) }

/* Stacked card effect */
.hp-testi-right { position:relative; min-height:380px }
.hp-testi-card {
  position:absolute; width:100%;
  background:var(--white); border:1px solid var(--grey-1);
  border-radius:var(--r-xl); padding:44px 44px 36px;
  box-shadow:var(--sh-lg);
  opacity:0; transform:translateY(24px) scale(.97);
  transition:opacity .55s var(--ease-out), transform .55s var(--ease-out);
  pointer-events:none
}
.hp-testi-card.is-active {
  opacity:1; transform:none;
  pointer-events:all; z-index:2;
  box-shadow:var(--sh-xl)
}
.hp-testi-card.is-next {
  opacity:.35; transform:translateY(12px) scale(.97);
  z-index:1; pointer-events:none;
  box-shadow:var(--sh-md)
}
.hp-testi-quote-mark { font-family:var(--font-head); font-size:5rem; line-height:.6; color:var(--grey-1); margin-bottom:16px; font-weight:700 }
.hp-testi-text { font-family:var(--font-head); font-size:1rem; font-style:italic; color:var(--grey-5); line-height:1.8; margin-bottom:24px }
.hp-testi-stars { display:flex; gap:3px; margin-bottom:24px }
.t-star-on  { color:var(--gold); font-size:1rem }
.t-star-off { color:var(--grey-2); font-size:1rem }
.hp-testi-person { display:flex; align-items:center; gap:14px; padding-top:22px; border-top:1px solid var(--grey-1) }
.hp-testi-av { width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0 }
.hp-testi-av--init { background:var(--black); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.95rem }
.hp-testi-pname { font-family:var(--font-body); font-size:.9rem; font-weight:700; color:var(--black) }
.hp-testi-pcap  { font-family:var(--font-body); font-size:.73rem; color:var(--grey-3); margin-top:2px }

/* ============================================================
   BLOGS
   ============================================================ */
.hp-blogs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px }
.hp-blog-card { background:var(--white); border:1px solid var(--grey-1); border-radius:var(--r-lg); overflow:hidden; transition:var(--ease) }
.hp-blog-card:hover { box-shadow:var(--sh-md); transform:translateY(-4px) }
.hp-blog-img { display:block; overflow:hidden; aspect-ratio:16/10; position:relative }
.hp-blog-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-out) }
.hp-blog-img-overlay { position:absolute; inset:0; background:rgba(0,0,0,0); transition:background .3s }
.hp-blog-card:hover .hp-blog-img img { transform:scale(1.05) }
.hp-blog-card:hover .hp-blog-img-overlay { background:rgba(0,0,0,.08) }
.hp-blog-body { padding:26px }
.hp-blog-meta { display:flex; align-items:center; gap:8px; font-size:.72rem; color:var(--grey-3); margin-bottom:10px }
.hp-blog-meta-dot { width:3px; height:3px; border-radius:50%; background:var(--grey-2); flex-shrink:0 }
.hp-blog-title { font-family:var(--font-head); font-size:1.06rem; font-weight:700; color:var(--black); margin-bottom:10px; line-height:1.35 }
.hp-blog-title a:hover { color:var(--grey-5) }
.hp-blog-excerpt { font-size:.83rem; color:var(--grey-4); line-height:1.7; margin-bottom:18px }
.hp-blog-read { display:inline-flex; align-items:center; gap:6px; font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--black); transition:var(--ease) }
.hp-blog-read svg { width:13px; height:13px; transition:transform .25s }
.hp-blog-read:hover svg { transform:translateX(4px) }

/* ============================================================
   CONTACT
   ============================================================ */
.hp-contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start }
.hp-contact-left { display:flex; flex-direction:column }
.hp-contact-details { display:flex; flex-direction:column; gap:22px }
.hp-contact-row { display:flex; align-items:flex-start; gap:16px }
.hp-contact-icon-wrap { width:44px; height:44px; flex-shrink:0; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:var(--r); display:flex; align-items:center; justify-content:center }
.hp-contact-icon-wrap svg { width:18px; height:18px; color:rgba(255,255,255,.5) }
.hp-contact-lbl { font-size:.66rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:3px }
.hp-contact-val { font-size:.9rem; font-weight:600; color:rgba(255,255,255,.75) }
.hp-contact-right { background:var(--white); border-radius:var(--r-xl); padding:44px; box-shadow:0 32px 80px rgba(0,0,0,.3) }
.hp-form { display:flex; flex-direction:column; gap:18px }
.hp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px }
.hp-field { display:flex; flex-direction:column; gap:7px }
.hp-field-label { font-size:.76rem; font-weight:600; color:var(--charcoal) }
.hp-field-input {
  width:100%; padding:12px 15px;
  border:1.5px solid var(--grey-1); border-radius:var(--r);
  font-family:var(--font-body); font-size:.88rem; color:var(--black);
  background:var(--off-white); outline:none; transition:border-color .2s, background .2s
}
.hp-field-input:focus { border-color:var(--black); background:var(--white) }
.hp-field-err { font-size:.73rem; color:#dc2626 }
.hp-req { color:#dc2626 }
.hp-form-send {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px 24px;
  background:var(--black); color:var(--white);
  font-size:.8rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  border-radius:var(--r); transition:var(--ease)
}
.hp-form-send:hover { background:var(--charcoal); transform:translateY(-2px); box-shadow:var(--sh-md) }
.hp-form-send svg { width:15px; height:15px }
.hp-form-ok { display:flex; align-items:center; gap:10px; padding:13px 16px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:var(--r); color:#166534; font-size:.85rem; font-weight:600; margin-bottom:14px }
.hp-form-ok svg { width:17px; height:17px; flex-shrink:0 }

/* ============================================================
   INNER PAGE HERO (shared across other pages)
   ============================================================ */
.page-hero { position:relative; background:var(--ink); padding:140px 0 80px; text-align:center; overflow:hidden }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.15 }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,.7)) }
.page-hero-content { position:relative; z-index:1 }
.page-hero-eyebrow { display:inline-block; font-family:var(--font-body); font-size:.66rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:14px }
.page-hero-title { font-family:var(--font-head); font-size:clamp(2rem,4vw,3.4rem); font-weight:700; color:var(--white); margin-bottom:14px }

/* Shared inner section utilities */
.section { padding:96px 0 }
.section-white { background:var(--white) }
.section-grey  { background:var(--off-white) }
.section-dark  { background:var(--ink) }
.section-eyebrow { display:inline-block; font-family:var(--font-body); font-size:.66rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--grey-3); margin-bottom:12px }
.section-eyebrow--light { color:rgba(255,255,255,.32) }
.section-title { font-family:var(--font-head); font-size:clamp(1.8rem,3.5vw,2.65rem); font-weight:700; color:var(--black); margin-bottom:14px }
.section-title--light { color:var(--white) }
.section-divider { width:40px; height:3px; background:var(--black); margin:14px 0 26px; border-radius:2px }
.section-divider--light { background:rgba(255,255,255,.2) }
.text-center .section-divider { margin:14px auto 26px }
.section-subtitle { font-size:.95rem; color:var(--grey-4); max-width:520px; line-height:1.75 }
.section-subtitle--light { color:rgba(255,255,255,.5) }
.text-center .section-subtitle { margin:0 auto }

/* CTA section */
.cta-section { position:relative; padding:96px 0; overflow:hidden }
.cta-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(.18) }
.cta-overlay { position:absolute; inset:0; background:rgba(0,0,0,.55) }
.cta-content { position:relative; z-index:1; text-align:center; max-width:640px; margin:0 auto }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:32px }

/* Gallery page */
.gallery-page-grid { columns:3; column-gap:14px; margin-top:36px }
.gallery-page-grid>* { break-inside:avoid; margin-bottom:14px; display:block }
.gallery-page-item { position:relative; overflow:hidden; border-radius:var(--r-md); cursor:pointer; display:block; width:100% }
.gallery-page-item img { width:100%; display:block; transition:transform .5s var(--ease-out); border-radius:var(--r-md) }
.gallery-page-item:hover img { transform:scale(1.06) }
.gallery-page-overlay { position:absolute; inset:0; background:rgba(0,0,0,0); transition:background .3s; border-radius:var(--r-md); display:flex; flex-direction:column; justify-content:flex-end; padding:16px }
.gallery-page-item:hover .gallery-page-overlay { background:rgba(0,0,0,.52) }
.gallery-page-info { opacity:0; transform:translateY(6px); transition:all .3s; margin-top:auto }
.gallery-page-item:hover .gallery-page-info { opacity:1; transform:none }
.gallery-page-cat { display:inline-block; font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:3px 9px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); border-radius:20px; color:rgba(255,255,255,.9); margin-bottom:5px }
.gallery-page-title { font-size:.84rem; font-weight:600; color:var(--white); line-height:1.3 }
.gallery-page-zoom { position:absolute; top:12px; right:12px; width:34px; height:34px; background:rgba(255,255,255,.9); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(.7); transition:all .3s }
.gallery-page-item:hover .gallery-page-zoom { opacity:1; transform:scale(1) }
.gallery-page-zoom svg { width:14px; height:14px; color:var(--black) }
.gallery-filter { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin:36px 0 12px }
.filter-btn { padding:7px 18px; border-radius:20px; font-size:.76rem; font-weight:600; border:1.5px solid var(--grey-1); color:var(--grey-4); background:var(--white); cursor:pointer; transition:var(--ease) }
.filter-btn:hover { border-color:var(--black); color:var(--black) }
.filter-btn.active { background:var(--black); color:var(--white); border-color:var(--black) }
.gallery-count { font-size:.76rem; color:var(--grey-3); margin-bottom:4px; text-align:right }
.gallery-lightbox { position:fixed; inset:0; z-index:9999; opacity:0; pointer-events:none; transition:opacity .3s }
.gallery-lightbox.open { opacity:1; pointer-events:all }
.lightbox-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.94) }
.lightbox-inner { position:relative; z-index:1; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:60px 80px }
.lightbox-img-wrap { max-width:90vw; max-height:80vh; display:flex; align-items:center; justify-content:center }
.lightbox-img-wrap img { max-width:100%; max-height:80vh; object-fit:contain; border-radius:var(--r-md); box-shadow:0 32px 80px rgba(0,0,0,.6) }
.lightbox-close-btn { position:absolute; top:20px; right:24px; width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.1); color:var(--white); display:flex; align-items:center; justify-content:center; transition:var(--ease) }
.lightbox-close-btn:hover { background:rgba(255,255,255,.2) }
.lightbox-close-btn svg { width:20px; height:20px }
.lightbox-arrow { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); color:var(--white); display:flex; align-items:center; justify-content:center; transition:var(--ease) }
.lightbox-arrow:hover { background:rgba(255,255,255,.22) }
.lightbox-arrow svg { width:20px; height:20px }
.lightbox-arrow--prev { left:20px }
.lightbox-arrow--next { right:20px }
.lightbox-caption { display:flex; align-items:center; justify-content:space-between; width:100%; max-width:90vw; margin-top:16px }
.lightbox-caption span:first-child { font-size:.87rem; color:rgba(255,255,255,.55) }
.lightbox-caption span:last-child { font-size:.76rem; color:rgba(255,255,255,.3) }
.btn-primary { display:inline-flex; align-items:center; gap:8px; padding:12px 26px; background:var(--black); color:var(--white); font-size:.78rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.btn-primary:hover { background:var(--charcoal); transform:translateY(-2px); box-shadow:var(--sh-md) }
.btn-outline { display:inline-flex; align-items:center; gap:8px; padding:12px 26px; background:transparent; color:var(--black); border:1.5px solid var(--black); font-size:.78rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; border-radius:var(--r); transition:var(--ease) }
.btn-outline:hover { background:var(--black); color:var(--white) }
.btn-outline--light { border-color:rgba(255,255,255,.35); color:rgba(255,255,255,.75) }
.btn-outline--light:hover { background:rgba(255,255,255,.1); color:var(--white); border-color:rgba(255,255,255,.6) }
.star-filled { color:var(--gold) }
.star-empty  { color:var(--grey-2) }

/* ============================================================
   ABOUT PAGE  (ab- prefix)
   ============================================================ */
.ab-hero { position:relative; height:78vh; min-height:520px; display:flex; align-items:center; overflow:hidden; background:var(--ink) }
.ab-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.18 }
.ab-hero-overlay { position:absolute; inset:0; background:linear-gradient(120deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.38) 100%) }
.ab-hero-content { position:relative; z-index:2; padding-top:var(--header-h) }
.ab-hero-eyebrow { font-family:var(--font-body); font-size:.66rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:14px; display:block }
.ab-hero-title { font-family:var(--font-head); font-size:clamp(2.4rem,5.5vw,4.2rem); font-weight:700; color:var(--white); line-height:1.1; letter-spacing:-.02em; margin-bottom:16px }
.ab-hero-sub { font-family:var(--font-body); font-size:1rem; color:rgba(255,255,255,.52); max-width:460px; margin-bottom:24px }
.ab-stats-bar { background:var(--ink-2); border-bottom:1px solid rgba(255,255,255,.06) }
.ab-stats-row { display:flex; align-items:stretch }
.ab-stat { flex:1; text-align:center; padding:36px 20px }
.ab-stat-divider { width:1px; background:rgba(255,255,255,.07); flex-shrink:0; margin:18px 0 }
.ab-stat-num { display:block; font-family:var(--font-head); font-size:clamp(1.8rem,3vw,2.4rem); font-weight:700; color:var(--white); line-height:1; margin-bottom:7px }
.ab-stat-num sup { font-size:.52em; vertical-align:super; font-family:var(--font-body) }
.ab-stat-label { font-family:var(--font-body); font-size:.66rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.3) }
.ab-who-grid { display:grid; grid-template-columns:1fr 1fr; gap:88px; align-items:center }
.ab-who-images { position:relative }
.ab-img-main { width:100%; border-radius:var(--r-xl); object-fit:cover; display:block; box-shadow:var(--sh-xl) }
.ab-img-secondary { position:absolute; bottom:-40px; right:-32px; width:52%; border-radius:var(--r-lg); object-fit:cover; border:5px solid var(--white); box-shadow:var(--sh-lg) }
.ab-img-badge { position:absolute; top:-20px; left:-20px; background:var(--black); color:var(--white); padding:20px 24px; border-radius:var(--r-lg); display:flex; flex-direction:column; align-items:center; gap:4px; box-shadow:var(--sh-lg) }
.ab-img-badge-num { font-family:var(--font-head); font-size:1.9rem; font-weight:700; line-height:1 }
.ab-img-badge-text { font-family:var(--font-body); font-size:.65rem; color:rgba(255,255,255,.42); text-align:center; line-height:1.4 }
.ab-who-content { display:flex; flex-direction:column }
.ab-body-text { font-family:var(--font-body); font-size:.94rem; color:var(--grey-4); line-height:1.8; margin-bottom:14px }
.ab-checks { display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; margin:22px 0 }
.ab-check-item { display:flex; align-items:center; gap:9px; font-family:var(--font-body); font-size:.84rem; font-weight:500; color:var(--charcoal) }
.ab-check-icon { width:18px; height:18px; flex-shrink:0; background:var(--black); border-radius:50%; display:flex; align-items:center; justify-content:center }
.ab-check-icon svg { width:9px; height:9px; stroke:var(--white); stroke-width:3 }
.ab-who-cta { display:flex; gap:14px; flex-wrap:wrap; margin-top:8px }
.ab-values-section { background:var(--ink); padding:96px 0 }
.ab-values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:52px; border:1px solid rgba(255,255,255,.07); border-radius:var(--r-xl); overflow:hidden }
.ab-value-card { padding:44px 32px; border-right:1px solid rgba(255,255,255,.07); transition:background .25s }
.ab-value-card:last-child { border-right:none }
.ab-value-card:hover { background:rgba(255,255,255,.04) }
.ab-value-icon { width:50px; height:50px; background:rgba(255,255,255,.07); border-radius:var(--r); display:flex; align-items:center; justify-content:center; margin-bottom:20px }
.ab-value-icon svg { width:22px; height:22px; color:var(--white) }
.ab-value-title { font-family:var(--font-head); font-size:1rem; font-weight:700; color:var(--white); margin-bottom:10px }
.ab-value-text { font-family:var(--font-body); font-size:.82rem; color:rgba(255,255,255,.4); line-height:1.7 }
.ab-timeline { position:relative; margin-top:68px; padding-bottom:40px }
.ab-timeline-line { position:absolute; left:50%; top:0; bottom:0; width:2px; background:var(--grey-1); transform:translateX(-50%) }
.ab-timeline-item { display:flex; align-items:flex-start; gap:48px; margin-bottom:52px; position:relative }
.ab-timeline-item--left { flex-direction:row; padding-right:calc(50% + 48px) }
.ab-timeline-item--right { flex-direction:row-reverse; padding-left:calc(50% + 48px) }
.ab-timeline-card { background:var(--white); border:1px solid var(--grey-1); border-radius:var(--r-xl); padding:30px 34px; flex:1; box-shadow:var(--sh-xs); transition:var(--ease) }
.ab-timeline-card:hover { box-shadow:var(--sh-md); transform:translateY(-3px) }
.ab-timeline-year { font-family:var(--font-body); font-size:.65rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--grey-3); margin-bottom:8px }
.ab-timeline-title { font-family:var(--font-head); font-size:1rem; font-weight:700; color:var(--black); margin-bottom:10px }
.ab-timeline-text { font-family:var(--font-body); font-size:.83rem; color:var(--grey-4); line-height:1.75 }
.ab-timeline-dot { position:absolute; left:50%; top:30px; width:13px; height:13px; background:var(--black); border-radius:50%; border:3px solid var(--white); box-shadow:0 0 0 2px var(--black); transform:translateX(-50%); z-index:1 }
.ab-team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:52px }
.ab-team-img-wrap { position:relative; overflow:hidden; border-radius:var(--r-lg); aspect-ratio:3/4 }
.ab-team-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:top; transition:transform .5s ease; display:block }
.ab-team-card:hover .ab-team-img-wrap img { transform:scale(1.05) }
.ab-team-overlay { position:absolute; inset:0; background:rgba(0,0,0,0); display:flex; align-items:flex-end; padding:20px; transition:background .3s }
.ab-team-card:hover .ab-team-overlay { background:rgba(0,0,0,.5) }
.ab-team-contact { display:inline-flex; align-items:center; padding:8px 18px; background:var(--white); color:var(--black); font-family:var(--font-body); font-size:.73rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; border-radius:var(--r); opacity:0; transform:translateY(10px); transition:all .3s ease }
.ab-team-card:hover .ab-team-contact { opacity:1; transform:none }
.ab-team-info { padding:14px 4px 0 }
.ab-team-name { font-family:var(--font-head); font-size:.95rem; font-weight:700; color:var(--black) }
.ab-team-role { font-family:var(--font-body); font-size:.77rem; color:var(--grey-3); margin-top:3px }
.ab-testimonials-row { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:48px }
.ab-testi-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--r-xl); padding:34px; display:flex; flex-direction:column; gap:14px }
.ab-testi-text { font-family:var(--font-head); font-size:.9rem; font-style:italic; color:rgba(255,255,255,.62); line-height:1.8; flex:1 }
.ab-testi-author { display:flex; align-items:center; gap:12px; padding-top:14px; border-top:1px solid rgba(255,255,255,.07) }
.ab-testi-avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; flex-shrink:0 }
.ab-testi-avatar--initial { background:rgba(255,255,255,.1); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.95rem; font-family:var(--font-body) }
.ab-testi-name { font-family:var(--font-body); font-size:.86rem; font-weight:600; color:var(--white) }
.ab-testi-caption { font-family:var(--font-body); font-size:.72rem; color:rgba(255,255,255,.3); margin-top:2px }
.testimonial-stars { display:flex; gap:3px }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px){
  .hp-services-grid { grid-template-columns:repeat(2,1fr) }
  .hp-svc-card:nth-child(2) { border-right:none }
  .hp-blogs-grid { grid-template-columns:repeat(2,1fr) }
  .hp-testi-layout { grid-template-columns:280px 1fr; gap:48px }
  .hp-about-grid { gap:60px }
  .ab-values-grid { grid-template-columns:repeat(2,1fr) }
  .ab-value-card:nth-child(2) { border-right:none }
  .ab-value-card:nth-child(1),.ab-value-card:nth-child(2) { border-bottom:1px solid rgba(255,255,255,.07) }
  .ab-team-grid { grid-template-columns:repeat(2,1fr) }
  .ab-testimonials-row { grid-template-columns:1fr }
  .gallery-page-grid { columns:2 }
}
@media(max-width:900px){
  .hp-about-grid { grid-template-columns:1fr; gap:80px }
  .hp-about-img-card { display:none }
  .hp-about-exp-badge { top:auto; bottom:-16px; left:16px }
  .hp-contact-grid { grid-template-columns:1fr; gap:48px }
  .hp-stats-grid { grid-template-columns:repeat(2,1fr) }
  .hp-stat-item:nth-child(2) { border-right:none }
  .hp-testi-layout { grid-template-columns:1fr; gap:48px }
  .hp-testi-right { min-height:360px }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px }
  .header-nav,.nav-cta { display:none }
  .header-hamburger { display:flex }
  .ab-who-grid { grid-template-columns:1fr; gap:80px }
  .ab-img-secondary { display:none }
  .ab-img-badge { top:auto; left:16px; bottom:-16px }
  .ab-timeline-line { display:none }
  .ab-timeline-item,.ab-timeline-item--left,.ab-timeline-item--right { padding:0; flex-direction:column }
  .ab-timeline-item { padding-left:28px; border-left:2px solid var(--grey-1); margin-bottom:32px }
  .ab-timeline-dot { left:-8px; top:28px; transform:none }
  .ab-stats-row { flex-wrap:wrap }
  .ab-stat { flex:1 1 40% }
  .ab-stat-divider { display:none }
  .hp-hero-sidenav { display:none }
}
@media(max-width:768px){
  .sxy-logo img { width:46px; }
  .hp-section { padding:72px 0 }
  .hp-hero { min-height:100svh }
  .hp-services-grid { grid-template-columns:1fr }
  .hp-svc-card { border-right:none; border-bottom:1px solid rgba(255,255,255,.07) }
  .hp-blogs-grid { grid-template-columns:1fr }
  .hp-form-row { grid-template-columns:1fr }
  .hp-gallery-masonry { columns:2 }
  .hp-split-head { flex-direction:column; align-items:flex-start }
  .gallery-page-grid { columns:1 }
  .lightbox-inner { padding:60px 20px }
  .lightbox-arrow--prev { left:8px }
  .lightbox-arrow--next { right:8px }
}
@media(max-width:480px){
  .hp-gallery-masonry { columns:1 }
  .hp-about-features { grid-template-columns:1fr }
  .hp-stats-grid { grid-template-columns:1fr }
  .hp-stat-item { border-right:none; border-bottom:1px solid var(--grey-1) }
  .footer-grid { grid-template-columns:1fr }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center }
  .ab-team-grid { grid-template-columns:repeat(2,1fr); gap:14px }
  .ab-checks { grid-template-columns:1fr }
  .ab-values-grid { grid-template-columns:1fr }
  .ab-value-card { border-right:none; border-bottom:1px solid rgba(255,255,255,.07) }
}




/* ============================================================
   SHARED INNER PAGE HERO  (iph- prefix)
   Add this block to the end of styles.css, before the
   RESPONSIVE section.
   ============================================================ */

/* ── Base structure ── */
.iph {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

/* Size variants */
.iph--sm { min-height: 340px; padding-top: calc(var(--header-h) + 56px) }
.iph--md { min-height: 460px; padding-top: calc(var(--header-h) + 80px) }
.iph--lg { min-height: 580px; padding-top: calc(var(--header-h) + 100px) }

/* Alignment */
.iph--center { text-align: center }
.iph--center .iph-content { align-items: center; display: flex; flex-direction: column }
.iph--center .iph-subtitle { margin: 0 auto }
.iph--center .iph-breadcrumb { justify-content: center }

/* ── Background layers ── */
.iph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.iph:hover .iph-bg { transform: scale(1.03) }

.iph-overlay-base {
  position: absolute; inset: 0;
  background: var(--ink);
  opacity: .62;
}
.iph-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.22) 100%
  );
}

/* Noise grain overlay — matches homepage slides */
.iph-noise {
  position: absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

/* Bottom fade to blend with next section */
.iph-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.18));
  pointer-events: none;
}

/* ── Geometric decorative accents ── */
.iph-geo {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.iph-geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.iph-geo-ring--1 {
  width: 600px; height: 600px;
  right: -180px; bottom: -240px;
}
.iph-geo-ring--2 {
  width: 380px; height: 380px;
  right: -40px; bottom: -100px;
  border-color: rgba(255,255,255,.08);
}
.iph-geo-line {
  position: absolute;
  background: rgba(255,255,255,.04);
}
.iph-geo-line--v {
  width: 1px; top: 0; bottom: 0;
  right: clamp(80px, 15vw, 220px);
}
.iph-geo-line--h {
  height: 1px; left: 0; right: 0;
  bottom: 110px;
}

/* ── Content ── */
.iph-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow tag */
.iph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.iph-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Title */
.iph-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  max-width: 760px;
}
.iph--center .iph-title { max-width: 860px }

/* Subtitle */
.iph-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.52);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Breadcrumb */
.iph-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.iph-bc-link {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  transition: color .25s;
}
.iph-bc-link:hover { color: rgba(255,255,255,.75) }
.iph-bc-sep {
  color: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
}
.iph-bc-sep svg { width: 12px; height: 12px }
.iph-bc-current {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   INNER PAGE HERO  (iph- prefix)
   Used on: About, Services, Products, Gallery, Testimonials,
            Blog, Contact — each page hardcodes this markup.
   Paste this block into styles.css just before the
   existing RESPONSIVE @media section.
   ============================================================ */

/* ── Base structure ── */
.iph {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

/* Size variants */
.iph--sm { min-height: 340px; padding-top: calc(var(--header-h) + 56px) }
.iph--md { min-height: 460px; padding-top: calc(var(--header-h) + 80px) }
.iph--lg { min-height: 580px; padding-top: calc(var(--header-h) + 100px) }

/* Alignment */
.iph--center { text-align: center }
.iph--center .iph-content { align-items: center; display: flex; flex-direction: column }
.iph--center .iph-subtitle { margin: 0 auto }
.iph--center .iph-breadcrumb { justify-content: center }

/* ── Background layers ── */
.iph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.iph:hover .iph-bg { transform: scale(1.03) }

.iph-overlay-base {
  position: absolute; inset: 0;
  background: var(--ink);
  opacity: .62;
}
.iph-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(0,0,0,.22) 100%
  );
}

/* Noise grain overlay — matches homepage slides */
.iph-noise {
  position: absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

/* Bottom fade to blend with next section */
.iph-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.18));
  pointer-events: none;
}

/* ── Geometric decorative accents ── */
.iph-geo {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.iph-geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.iph-geo-ring--1 {
  width: 600px; height: 600px;
  right: -180px; bottom: -240px;
}
.iph-geo-ring--2 {
  width: 380px; height: 380px;
  right: -40px; bottom: -100px;
  border-color: rgba(255,255,255,.08);
}
.iph-geo-line {
  position: absolute;
  background: rgba(255,255,255,.04);
}
.iph-geo-line--v {
  width: 1px; top: 0; bottom: 0;
  right: clamp(80px, 15vw, 220px);
}
.iph-geo-line--h {
  height: 1px; left: 0; right: 0;
  bottom: 110px;
}

/* ── Content ── */
.iph-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow tag */
.iph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.iph-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Title */
.iph-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  max-width: 760px;
}
.iph--center .iph-title { max-width: 860px }

/* Subtitle */
.iph-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.52);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Breadcrumb */
.iph-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.iph-bc-link {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  transition: color .25s;
}
.iph-bc-link:hover { color: rgba(255,255,255,.75) }
.iph-bc-sep {
  color: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
}
.iph-bc-sep svg { width: 12px; height: 12px }
.iph-bc-current {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}


/* ============================================================
   ABOUT PAGE v2  (ab2- prefix)
   ============================================================ */

/* ── Stats bar ── */
.ab2-stats-bar {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ab2-stats-row {
  display: flex;
  align-items: stretch;
}
.ab2-stat {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
}
.ab2-stat-sep {
  width: 1px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
  margin: 18px 0;
}
.ab2-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.ab2-stat-num sup {
  font-size: .52em;
  vertical-align: super;
  font-family: var(--font-body);
}
.ab2-stat-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

/* ── Who We Are ── */
.ab2-who-section { padding-bottom: 120px }
.ab2-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Image frame */
.ab2-img-frame {
  position: relative;
  padding-bottom: 56px;
}
.ab2-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: var(--sh-xl);
}
.ab2-img-accent {
  position: absolute;
  bottom: 0;
  right: -36px;
  width: 56%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 5px solid var(--white);
  box-shadow: var(--sh-lg);
}
.ab2-img-badge {
  position: absolute;
  top: -22px;
  left: -22px;
  background: var(--black);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.ab2-img-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.ab2-img-badge-num small {
  font-size: .65em;
  font-family: var(--font-body);
}
.ab2-img-badge-text {
  font-family: var(--font-body);
  font-size: .64rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.4;
}

/* Dot grid decoration */
.ab2-dot-grid {
  position: absolute;
  bottom: -20px;
  left: -28px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--grey-2) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .5;
  pointer-events: none;
}

/* Content side */
.ab2-who-content { display: flex; flex-direction: column }
.ab2-body {
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--grey-4);
  line-height: 1.85;
  margin-bottom: 16px;
}
.ab2-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0 28px;
}
.ab2-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 500;
  color: var(--charcoal);
}
.ab2-check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab2-check-icon svg {
  width: 10px; height: 10px;
  stroke: var(--white);
  stroke-width: 2.5;
}
.ab2-who-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Values ── */
.ab2-values-section {
  background: var(--ink);
  padding: 96px 0;
}
.ab2-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.ab2-value-card {
  padding: 44px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .28s;
  position: relative;
}
.ab2-value-card:last-child { border-right: none }
.ab2-value-card:hover { background: rgba(255,255,255,.04) }

.ab2-value-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.ab2-value-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .28s;
}
.ab2-value-card:hover .ab2-value-icon { background: rgba(255,255,255,.14) }
.ab2-value-icon svg {
  width: 22px; height: 22px;
  color: var(--white);
}
.ab2-value-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.ab2-value-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
}
.ab2-value-line {
  position: absolute;
  bottom: 0; left: 32px;
  width: 0; height: 2px;
  background: rgba(255,255,255,.18);
  transition: width .4s var(--ease-out);
}
.ab2-value-card:hover .ab2-value-line { width: calc(100% - 64px) }

/* ── Timeline ── */
.ab2-timeline {
  position: relative;
  margin-top: 72px;
  padding-bottom: 20px;
}
.ab2-tl-spine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--grey-1) 10%, var(--grey-1) 90%, transparent);
  transform: translateX(-50%);
}
.ab2-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
}
.ab2-tl-item--left {
  flex-direction: row;
  padding-right: calc(50% + 52px);
}
.ab2-tl-item--right {
  flex-direction: row-reverse;
  padding-left: calc(50% + 52px);
}
.ab2-tl-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  padding: 30px 34px;
  flex: 1;
  box-shadow: var(--sh-xs);
  transition: var(--ease);
}
.ab2-tl-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--grey-2);
}
.ab2-tl-year {
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 8px;
}
.ab2-tl-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.ab2-tl-text {
  font-family: var(--font-body);
  font-size: .83rem;
  color: var(--grey-4);
  line-height: 1.75;
}
.ab2-tl-node {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 4px var(--white), var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab2-tl-node-inner {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black);
}

/* ── Team ── */
.ab2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.ab2-team-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
}
.ab2-team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .55s var(--ease-out);
}
.ab2-team-card:hover .ab2-team-img-wrap img { transform: scale(1.07) }
.ab2-team-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background .3s;
}
.ab2-team-card:hover .ab2-team-hover { background: rgba(0,0,0,.52) }
.ab2-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r);
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
}
.ab2-team-btn svg { width: 13px; height: 13px }
.ab2-team-card:hover .ab2-team-btn { opacity: 1; transform: none }
.ab2-team-info { padding: 14px 4px 0 }
.ab2-team-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
}
.ab2-team-role {
  font-family: var(--font-body);
  font-size: .77rem;
  color: var(--grey-3);
  margin-top: 3px;
}

/* ── Testimonials (about snippet) ── */
.ab2-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.ab2-testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .28s, border-color .28s;
}
.ab2-testi-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.ab2-testi-quote {
  font-family: var(--font-head);
  font-size: 3.5rem;
  line-height: .7;
  color: rgba(255,255,255,.1);
  font-weight: 700;
}
.ab2-testi-text {
  font-family: var(--font-head);
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  flex: 1;
}
.ab2-testi-stars { display: flex; gap: 3px }
.ab2-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ab2-testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ab2-testi-av--init {
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
}
.ab2-testi-name {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--white);
}
.ab2-testi-cap {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}


/* ============================================================
   RESPONSIVE — additions for iph and ab2
   Add inside the existing @media blocks or append below.
   ============================================================ */

@media (max-width: 1100px) {
  .ab2-values-grid  { grid-template-columns: repeat(2, 1fr) }
  .ab2-value-card:nth-child(2) { border-right: none }
  .ab2-value-card:nth-child(1),
  .ab2-value-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07) }
  .ab2-team-grid    { grid-template-columns: repeat(2, 1fr) }
  .ab2-testi-row    { grid-template-columns: 1fr }
  .ab2-who-grid     { gap: 64px }
}

@media (max-width: 900px) {
  .ab2-who-grid     { grid-template-columns: 1fr; gap: 80px }
  .ab2-img-accent   { display: none }
  .ab2-img-badge    { top: auto; left: 16px; bottom: -16px }
  .ab2-stats-row    { flex-wrap: wrap }
  .ab2-stat         { flex: 1 1 40% }
  .ab2-stat-sep     { display: none }
  .ab2-tl-spine     { display: none }
  .ab2-tl-item,
  .ab2-tl-item--left,
  .ab2-tl-item--right { flex-direction: column; padding: 0 0 0 28px; border-left: 2px solid var(--grey-1) }
  .ab2-tl-node      { left: -11px; top: 26px; transform: none }
  .iph--lg          { min-height: 420px }
  .iph-title        { font-size: clamp(2rem, 5vw, 3rem) }
}

@media (max-width: 768px) {
  .ab2-checks       { grid-template-columns: 1fr }
  .ab2-who-section  { padding-bottom: 80px }
  .iph--md          { min-height: 360px }
  .iph--lg          { min-height: 380px }
}

@media (max-width: 480px) {
  .ab2-team-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px }
  .ab2-values-grid  { grid-template-columns: 1fr }
  .ab2-value-card   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07) }
  .ab2-stats-row    { flex-direction: column }
  .ab2-stat-sep     { display: none }
  .iph-geo-ring     { display: none }
}



/* ============================================================
   SERVICES PAGE  (sv- prefix)
   Paste this block into styles.css just before the
   existing RESPONSIVE @media section.
   ============================================================ */

/* ── Intro split ── */
.sv-intro-section { padding-bottom: 80px }
.sv-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.sv-intro-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-1);
}
.sv-intro-stat { flex: 1; text-align: center }
.sv-intro-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.sv-intro-stat-label {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.sv-intro-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--grey-1);
  flex-shrink: 0;
}

/* Intro image */
.sv-intro-right {}
.sv-intro-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-xl);
}
.sv-intro-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.sv-intro-img-wrap:hover img { transform: scale(1.04) }
.sv-intro-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  color: var(--black);
  box-shadow: var(--sh-md);
}
.sv-intro-img-tag svg {
  width: 16px; height: 16px;
  color: #16a34a;
  flex-shrink: 0;
}

/* ── Services cards grid ── */
.sv-cards-section { padding-top: 72px }
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-1);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.sv-card {
  background: var(--white);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .28s;
  position: relative;
}
.sv-card:hover { background: var(--off-white) }

.sv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.sv-card-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--grey-1);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .28s;
}
.sv-card:hover .sv-card-num { color: var(--grey-2) }
.sv-card-icon {
  width: 48px; height: 48px;
  background: var(--black);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.sv-card:hover .sv-card-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.sv-card-icon svg {
  width: 22px; height: 22px;
  color: var(--white);
}
.sv-card-title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.sv-card-text {
  font-family: var(--font-body);
  font-size: .84rem;
  color: var(--grey-4);
  line-height: 1.78;
  margin-bottom: 20px;
  flex: 1;
}
.sv-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.sv-card-tag {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--grey-1);
  border-radius: 20px;
  color: var(--grey-4);
  background: var(--off-white);
  transition: var(--ease);
}
.sv-card:hover .sv-card-tag {
  border-color: var(--grey-2);
  color: var(--charcoal);
}
.sv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  padding-top: 20px;
  border-top: 1px solid var(--grey-1);
  margin-top: auto;
  transition: var(--ease);
}
.sv-card-link svg {
  width: 14px; height: 14px;
  transition: transform .25s;
}
.sv-card-link:hover { color: var(--charcoal) }
.sv-card-link:hover svg { transform: translateX(5px) }

/* ── Process steps ── */
.sv-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.sv-process-step {
  padding: 40px 36px;
  border-right: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
  position: relative;
}
.sv-process-step:nth-child(3n) { border-right: none }
.sv-process-step:nth-child(4),
.sv-process-step:nth-child(5),
.sv-process-step:nth-child(6) { border-bottom: none }

.sv-process-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--grey-1);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.sv-process-connector {
  display: none; /* reserved for future arrow decorations */
}
.sv-process-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.sv-process-text {
  font-family: var(--font-body);
  font-size: .83rem;
  color: var(--grey-4);
  line-height: 1.75;
}

/* ── Why choose us ── */
.sv-why-section {
  background: var(--ink);
  padding: 96px 0;
}
.sv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.sv-why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.sv-why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sv-why-feature-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sv-why-feature-icon svg {
  width: 13px; height: 13px;
  color: var(--white);
}
.sv-why-feature-title {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sv-why-feature-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
}

/* Why — image stack */
.sv-why-visual {}
.sv-why-img-frame {
  position: relative;
  padding-bottom: 56px;
}
.sv-why-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: var(--sh-xl);
}
.sv-why-img-accent {
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 4px solid var(--ink);
  box-shadow: var(--sh-lg);
}
.sv-why-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  background: var(--white);
  color: var(--black);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  box-shadow: var(--sh-lg);
  z-index: 2;
}
.sv-why-badge-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.sv-why-badge-text {
  font-family: var(--font-body);
  font-size: .62rem;
  color: var(--grey-3);
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* ── Responsive ── */
@media (max-width: 1100px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr) }
  .sv-process-grid { grid-template-columns: repeat(2, 1fr) }
  .sv-process-step:nth-child(3n)   { border-right: 1px solid var(--grey-1) }
  .sv-process-step:nth-child(2n)   { border-right: none }
  .sv-process-step:nth-child(4),
  .sv-process-step:nth-child(5),
  .sv-process-step:nth-child(6)    { border-bottom: 1px solid var(--grey-1) }
  .sv-process-step:nth-child(5),
  .sv-process-step:nth-child(6)    { border-bottom: none }
  .sv-why-grid   { gap: 56px }
  .sv-intro-grid { gap: 56px }
}

@media (max-width: 900px) {
  .sv-intro-grid  { grid-template-columns: 1fr }
  .sv-why-grid    { grid-template-columns: 1fr }
  .sv-why-img-accent { display: none }
  .sv-why-badge   { top: auto; left: 16px; bottom: -16px }
  .sv-why-img-frame { padding-bottom: 0 }
}

@media (max-width: 768px) {
  .sv-grid { grid-template-columns: 1fr }
  .sv-process-grid { grid-template-columns: 1fr }
  .sv-process-step {
    border-right: none;
    border-bottom: 1px solid var(--grey-1);
    padding-right: 0;
  }
  .sv-process-step:last-child { border-bottom: none }
  .sv-process-step:nth-child(3n) { border-right: none }
  .sv-process-step:nth-child(4),
  .sv-process-step:nth-child(5),
  .sv-process-step:nth-child(6) { border-bottom: 1px solid var(--grey-1) }
  .sv-process-step:last-child    { border-bottom: none }
  .sv-intro-stats { flex-direction: column; gap: 20px }
  .sv-intro-stat-sep { width: 40px; height: 1px }
}

/* ============================================================
   PRODUCTS PAGE  (pd- prefix)
   Paste into styles.css just before the @media blocks.
   ============================================================ */

/* ── Promise bar (top strip) ── */
.pd-promise-bar {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pd-promise-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pd-promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  flex: 1;
  justify-content: center;
}
.pd-promise-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-promise-icon svg {
  width: 18px; height: 18px;
  color: rgba(255,255,255,.6);
}
.pd-promise-label {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.pd-promise-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}

/* ── Products grid ── */
.pd-grid-section { padding-top: 72px }
.pd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pd-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s;
}
.pd-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: var(--grey-2);
}

/* Image */
.pd-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pd-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out);
}
.pd-card:hover .pd-card-img-wrap img { transform: scale(1.06) }
.pd-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.18));
  pointer-events: none;
}
.pd-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
}

/* Body */
.pd-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pd-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pd-card-tag {
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.pd-card-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.pd-card-name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.pd-card-desc {
  font-family: var(--font-body);
  font-size: .83rem;
  color: var(--grey-4);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Feature list */
.pd-card-feats {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}
.pd-card-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--charcoal);
  font-weight: 500;
}
.pd-card-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

/* CTA button */
.pd-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .25s, box-shadow .25s, transform .25s;
  margin-top: auto;
}
.pd-card-cta svg {
  width: 15px; height: 15px;
  transition: transform .25s;
  flex-shrink: 0;
}
.pd-card-cta:hover {
  background: var(--charcoal);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.pd-card-cta:hover svg { transform: translateX(4px) }

/* Grid footer */
.pd-grid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--off-white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
}
.pd-grid-footer p {
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--grey-4);
  max-width: 380px;
}
.pd-grid-footer .hp-btn-solid {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 13px 32px;
}

/* ── Promise section (dark) ── */
.pd-promise-section {
  background: var(--ink);
  padding: 96px 0;
}
.pd-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pd-promise-card {
  background: var(--ink);
  padding: 44px 32px;
  transition: background .28s;
}
.pd-promise-card:hover { background: rgba(255,255,255,.04) }
.pd-promise-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background .28s;
}
.pd-promise-card:hover .pd-promise-card-icon { background: rgba(255,255,255,.14) }
.pd-promise-card-icon svg {
  width: 24px; height: 24px;
  color: var(--white);
}
.pd-promise-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pd-promise-card-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
}


/* ── Responsive ── */
@media (max-width: 1100px) {
  .pd-grid { grid-template-columns: repeat(2, 1fr) }
  .pd-promise-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 768px) {
  .pd-grid { grid-template-columns: 1fr }
  .pd-promise-row { flex-wrap: wrap }
  .pd-promise-item { flex: 1 1 40%; padding: 16px 20px }
  .pd-promise-sep { display: none }
  .pd-grid-footer { flex-direction: column; text-align: center; padding: 28px 24px }
  .pd-grid-footer p { max-width: 100% }
}

@media (max-width: 480px) {
  .pd-promise-grid { grid-template-columns: 1fr }
  .pd-promise-item { flex: 1 1 100% }
}




/* ============================================================
   BLOG PAGES  (bl- prefix)
   Covers: blogs/index (listing) + blogs/show (single post)
   Paste into styles.css just before the @media blocks.
   ============================================================ */

/* ── Shared meta row ── */
.bl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bl-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--grey-3);
}
.bl-meta-item svg { width: 13px; height: 13px; flex-shrink: 0 }
.bl-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--grey-2);
  flex-shrink: 0;
}

/* ── Hero post meta (on iph hero) ── */
.iph-title--post {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  max-width: 820px;
}
.bl-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.bl-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.bl-hero-meta-item svg { width: 14px; height: 14px }
.bl-hero-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

/* ── Two-column layout ── */
.bl-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════
   BLOG INDEX — listing page
══════════════════════════════════════════ */

/* Featured post */
.bl-featured {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.bl-featured:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.bl-featured-img {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.bl-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.bl-featured:hover .bl-featured-img img { transform: scale(1.05) }
.bl-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.08));
  pointer-events: none;
}
.bl-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
}
.bl-featured-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.bl-featured-body .bl-meta { margin-bottom: 14px }
.bl-featured-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 14px;
}
.bl-featured-title a { color: inherit; transition: color .2s }
.bl-featured-title a:hover { color: var(--grey-5) }
.bl-featured-excerpt {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--grey-4);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}
.bl-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--black);
  padding: 12px 20px;
  border: 1.5px solid var(--black);
  border-radius: var(--r);
  align-self: flex-start;
  transition: background .25s, color .25s;
}
.bl-read-btn svg { width: 14px; height: 14px; transition: transform .25s }
.bl-read-btn:hover { background: var(--black); color: var(--white) }
.bl-read-btn:hover svg { transform: translateX(4px) }

/* Blog cards grid */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.bl-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s;
}
.bl-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--grey-2);
}
.bl-card-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.bl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out);
}
.bl-card:hover .bl-card-img img { transform: scale(1.06) }
.bl-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
  pointer-events: none;
}
.bl-card:hover .bl-card-img-overlay { background: rgba(0,0,0,.06) }
.bl-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bl-card-body .bl-meta { margin-bottom: 10px }
.bl-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 10px;
}
.bl-card-title a { color: inherit; transition: color .2s }
.bl-card-title a:hover { color: var(--grey-5) }
.bl-card-excerpt {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--grey-4);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}
.bl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  transition: var(--ease);
}
.bl-card-link svg { width: 13px; height: 13px; transition: transform .25s }
.bl-card-link:hover { color: var(--grey-5) }
.bl-card-link:hover svg { transform: translateX(4px) }

/* Pagination */
.bl-pagination {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-1);
}
.bl-pagination nav { display: flex; justify-content: flex-start }

/* Empty state */
.bl-empty {
  padding: 80px 40px;
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bl-empty-icon {
  width: 64px; height: 64px;
  color: var(--grey-2);
}
.bl-empty-icon svg { width: 100%; height: 100% }
.bl-empty-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
}
.bl-empty-text {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--grey-3);
}

/* ══════════════════════════════════════════
   SIDEBAR — shared by index + show
══════════════════════════════════════════ */
.bl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.bl-widget {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-lg);
  padding: 28px;
}
.bl-widget--dark {
  background: var(--ink);
  border-color: transparent;
}
.bl-widget-head {
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-1);
}
.bl-widget-head--light {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.1);
}
.bl-widget-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--grey-4);
  line-height: 1.75;
  margin-bottom: 16px;
}
.bl-widget-text--light { color: rgba(255,255,255,.42) }
.bl-widget-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  transition: var(--ease);
}
.bl-widget-link svg { width: 13px; height: 13px; transition: transform .25s }
.bl-widget-link:hover svg { transform: translateX(4px) }
.bl-widget-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .25s, box-shadow .25s;
}
.bl-widget-cta:hover { background: var(--off-white); box-shadow: var(--sh-xs) }

/* Recent / related list */
.bl-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bl-recent-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bl-recent-item--active .bl-recent-title { color: var(--grey-3); pointer-events: none }
.bl-recent-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 48px;
  border-radius: var(--r);
  overflow: hidden;
  display: block;
}
.bl-recent-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.bl-recent-item:hover .bl-recent-thumb img { transform: scale(1.08) }
.bl-recent-info { flex: 1; min-width: 0 }
.bl-recent-title {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color .2s;
  /* truncate long titles */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bl-recent-title:hover { color: var(--grey-5) }
.bl-recent-date {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--grey-3);
}

/* ══════════════════════════════════════════
   BLOG SHOW — single post article
══════════════════════════════════════════ */
.bl-post {
  min-width: 0; /* prevent overflow in grid */
}

/* Lead / excerpt */
.bl-post-lead {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  border-left: 3px solid var(--black);
  padding-left: 20px;
  margin-bottom: 36px;
}

/* Body text */
.bl-post-body {
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink-2);
  line-height: 1.9;
  margin-bottom: 40px;
}
.bl-post-body p { margin-bottom: 1.4em }

/* Key points box */
.bl-post-bullets {
  background: var(--off-white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 40px;
}
.bl-post-bullets-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.bl-post-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bl-post-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--charcoal);
  line-height: 1.65;
}
.bl-post-bullet-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.bl-post-bullet-icon svg { width: 11px; height: 11px; color: var(--white) }

/* Image gallery inside post */
.bl-post-gallery {
  margin-bottom: 40px;
}
.bl-post-gallery-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.bl-post-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bl-post-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  display: block;
  width: 100%;
}
.bl-post-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease-out);
}
.bl-post-gallery-item:hover img { transform: scale(1.08) }
.bl-post-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  font-family: var(--font-body);
  font-size: .68rem;
  color: rgba(255,255,255,.85);
  pointer-events: none;
}
.bl-post-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.bl-post-gallery-item:hover .bl-post-gallery-overlay { background: rgba(0,0,0,.3) }
.bl-post-gallery-overlay svg {
  width: 26px; height: 26px;
  color: var(--white);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.bl-post-gallery-item:hover .bl-post-gallery-overlay svg { opacity: 1; transform: scale(1) }

/* Post footer nav */
.bl-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid var(--grey-1);
}
.bl-post-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-4);
  transition: color .2s;
}
.bl-post-back svg { width: 14px; height: 14px; transition: transform .25s }
.bl-post-back:hover { color: var(--black) }
.bl-post-back:hover svg { transform: translateX(-4px) }

/* Related posts grid (bottom section) */
.bl-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════════
   LIGHTBOX — blog images
══════════════════════════════════════════ */
.bl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-lightbox.open { opacity: 1; pointer-events: all }
.bl-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.bl-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 1;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.bl-lightbox-close:hover { background: rgba(255,255,255,.22) }
.bl-lightbox-close svg { width: 20px; height: 20px }
.bl-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-lightbox-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}


/* ── Responsive ── */
@media (max-width: 1100px) {
  .bl-layout { grid-template-columns: 1fr 280px; gap: 40px }
  .bl-related-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 900px) {
  .bl-layout { grid-template-columns: 1fr }
  .bl-sidebar { position: static; top: auto }
  .bl-featured { grid-template-columns: 1fr }
  .bl-featured-img { min-height: 260px }
}

@media (max-width: 640px) {
  .bl-grid { grid-template-columns: 1fr }
  .bl-related-grid { grid-template-columns: 1fr }
  .bl-post-gallery-grid { grid-template-columns: repeat(2, 1fr) }
  .bl-post-nav { flex-direction: column; align-items: flex-start; gap: 12px }
}



/* ============================================================
   GALLERY PAGE  (gl- prefix)
   Paste into styles.css just before the @media blocks.
   The old .gallery-page-*, .filter-btn, .gallery-count,
   .gallery-lightbox rules can be removed once this is live.
   ============================================================ */

/* ── Section spacing ── */
.gl-section { padding-top: 64px }

/* ── Filter bar ── */
.gl-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}
.gl-filter-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gl-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  border: 1.5px solid var(--grey-1);
  color: var(--grey-4);
  background: var(--white);
  cursor: pointer;
  transition: border-color .22s, color .22s, background .22s, box-shadow .22s;
  white-space: nowrap;
}
.gl-filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.gl-filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--sh-sm);
}
.gl-filter-count {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0,0,0,.08);
  color: inherit;
  line-height: 1.4;
  transition: background .22s;
}
.gl-filter-btn.active .gl-filter-count { background: rgba(255,255,255,.18) }
.gl-showing {
  font-family: var(--font-body);
  font-size: .76rem;
  color: var(--grey-3);
  white-space: nowrap;
  flex-shrink: 0;
}
.gl-showing strong { color: var(--black) }

/* ── Masonry grid ── */
.gl-grid {
  columns: 3;
  column-gap: 16px;
}
.gl-grid > * {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
}

/* ── Gallery item ── */
.gl-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  display: block;
  width: 100%;
  background: var(--grey-1);
}
.gl-item img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  transition: transform .55s var(--ease-out);
  /* Let image define its own natural height */
  height: auto;
}
/* Tall variant — forces a taller crop via aspect ratio override */
.gl-item--tall img {
  aspect-ratio: 3/4;
  object-fit: cover;
  height: 100%;
}
.gl-item:hover img { transform: scale(1.06) }

/* Overlay */
.gl-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: background .3s;
}
.gl-item:hover .gl-item-overlay { background: rgba(0,0,0,.52) }

.gl-item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gl-item:hover .gl-item-info { opacity: 1; transform: none }

.gl-item-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  color: rgba(255,255,255,.9);
  align-self: flex-start;
}
.gl-item-title {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* Zoom icon */
.gl-item-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s;
  box-shadow: var(--sh-sm);
}
.gl-item:hover .gl-item-zoom { opacity: 1; transform: scale(1) }
.gl-item-zoom svg { width: 15px; height: 15px; color: var(--black) }

/* ── Empty state ── */
.gl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 32px;
  text-align: center;
  color: var(--grey-3);
}
.gl-empty svg { width: 48px; height: 48px; color: var(--grey-2) }
.gl-empty p {
  font-family: var(--font-body);
  font-size: .9rem;
}

/* ── Lightbox ── */
.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.gl-lightbox.open { opacity: 1; pointer-events: all }

.gl-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.94);
  cursor: pointer;
}
.gl-lightbox-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 40px;
  gap: 16px;
}
.gl-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.gl-lightbox-close:hover { background: rgba(255,255,255,.22) }
.gl-lightbox-close svg { width: 20px; height: 20px }

.gl-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.gl-lightbox-arrow:hover { background: rgba(255,255,255,.22) }
.gl-lightbox-arrow svg { width: 20px; height: 20px }
.gl-lightbox-arrow--prev { left: 20px }
.gl-lightbox-arrow--next { right: 20px }

.gl-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-lightbox-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  display: block;
}

.gl-lightbox-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 90vw;
  gap: 24px;
}
.gl-lightbox-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gl-lightbox-alt {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.gl-lightbox-desc {
  font-family: var(--font-body);
  font-size: .78rem;
  color: rgba(255,255,255,.42);
}
.gl-lightbox-counter {
  font-family: var(--font-body);
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .gl-grid { columns: 2 }
}

@media (max-width: 640px) {
  .gl-grid { columns: 1 }
  .gl-filter-bar { flex-direction: column; align-items: flex-start; gap: 12px }
  .gl-filter-wrap {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .gl-filter-wrap::-webkit-scrollbar { display: none }
  .gl-filter-btn { flex-shrink: 0 }
  .gl-lightbox-inner { padding: 60px 20px 32px }
  .gl-lightbox-arrow--prev { left: 8px }
  .gl-lightbox-arrow--next { right: 8px }
}

/* ============================================================
   TESTIMONIALS PAGE  (tm- prefix)
   Paste into styles.css just before the @media blocks.
   ============================================================ */

/* ── Shared star colours ── */
.tm-star-filled { color: var(--gold) }
.tm-star-empty  { color: var(--grey-2) }

/* ── Stats bar ── */
.tm-stats-bar {
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tm-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 32px 24px;
    text-align: center;
}
.tm-stat-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.07);
    flex-shrink: 0;
}
.tm-stat-num {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.tm-stat-plus {
    font-size: .7em;
    vertical-align: super;
    margin-left: 1px;
}
.tm-stat-label {
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.tm-stat-stars {
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}

/* ── Featured testimonial ── */
.tm-featured-section { padding-bottom: 100px }
.tm-featured {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;

    background: var(--white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-xl);
    position: relative;
    box-shadow: var(--sh-lg);
}
.tm-featured-quote {
    font-family: var(--font-head);
    font-size: 7rem;
    color: var(--grey-1);
    line-height: .6;
    margin-bottom: 16px;
    user-select: none;
}
.tm-featured-stars {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 24px;
}
.tm-featured-text {
    font-family: var(--font-head);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 36px;
    font-style: italic;
}
.tm-featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.tm-featured-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tm-avatar-img {
    object-fit: cover;
    display: block;
}
.tm-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
}
.tm-featured-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 3px;
}
.tm-featured-name {
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 700;
    color: var(--black);
}
.tm-featured-caption {
    font-family: var(--font-body);
    font-size: .76rem;
    color: var(--grey-3);
}

/* ── Cards grid ── */
.tm-grid-section { padding-top: 96px }
.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tm-card {
    background: var(--white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s;
}
.tm-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: var(--grey-2);
}
.tm-card-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.tm-card-text {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--grey-5);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}
.tm-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-1);
    margin-top: auto;
}
.tm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tm-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tm-card-name {
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 700;
    color: var(--black);
}
.tm-card-caption {
    font-family: var(--font-body);
    font-size: .72rem;
    color: var(--grey-3);
}

/* ── Review nudge banner ── */
.tm-nudge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 56px;
    background: var(--off-white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-xl);
}
.tm-nudge-left { flex: 1 }
.tm-nudge-stars {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.tm-nudge-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.tm-nudge-text {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--grey-4);
    line-height: 1.7;
    max-width: 480px;
}
.tm-nudge-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .tm-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 768px) {
    .tm-stats-row { flex-wrap: wrap }
    .tm-stat { flex: 1 1 40%; padding: 24px 16px }
    .tm-stat-sep { display: none }
    .tm-grid { grid-template-columns: 1fr }
    .tm-featured { padding: 40px 28px }
    .tm-nudge { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 24px }
    .tm-nudge-btn { width: 100%; justify-content: center }
}

@media (max-width: 480px) {
    .tm-featured-quote { font-size: 5rem }
    .tm-featured-author { flex-direction: column; text-align: center }
    .tm-featured-info { text-align: center }
}


/* ============================================================
   CONTACT PAGE  (ct- prefix)
   Paste into styles.css just before the @media blocks.
   ============================================================ */

/* ── Quick strip ── */
.ct-strip {
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ct-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ct-strip-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    transition: background .22s;
    position: relative;
}
.ct-strip-card:last-child { border-right: none }
a.ct-strip-card:hover { background: rgba(255,255,255,.04) }
.ct-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .22s;
}
a.ct-strip-card:hover .ct-strip-icon { background: rgba(255,255,255,.14) }
.ct-strip-icon svg { width: 20px; height: 20px; color: rgba(255,255,255,.7) }
.ct-strip-body { flex: 1 }
.ct-strip-label {
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 4px;
}
.ct-strip-value {
    font-family: var(--font-body);
    font-size: .86rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 3px;
}
.ct-strip-sub {
    font-family: var(--font-body);
    font-size: .72rem;
    color: rgba(255,255,255,.3);
}
.ct-strip-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .22s, right .22s;
}
.ct-strip-arrow svg { width: 16px; height: 16px; color: rgba(255,255,255,.4) }
a.ct-strip-card:hover .ct-strip-arrow { opacity: 1; right: 16px }

/* ── Main layout ── */
.ct-main-section { padding-bottom: 80px }
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* ── Info column ── */
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ct-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--off-white);
    border: 1px solid var(--grey-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ct-info-icon svg { width: 20px; height: 20px; color: var(--black) }
.ct-info-label {
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey-3);
    margin-bottom: 3px;
}
.ct-info-value {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}

/* Social buttons */
.ct-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.ct-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--grey-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-4);
    text-decoration: none;
    transition: background .22s, color .22s, border-color .22s;
}
.ct-social-btn:hover { background: var(--black); color: var(--white); border-color: var(--black) }
.ct-social-btn svg { width: 16px; height: 16px }

/* ── Form wrapper ── */
.ct-form-wrap {
    background: var(--white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-xl);
    padding: 48px 44px;
    box-shadow: var(--sh-lg);
}

/* Alert banners */
.ct-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: .84rem;
    margin-bottom: 24px;
    line-height: 1.5;
}
.ct-alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px }
.ct-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534 }
.ct-alert--success svg { color: #16a34a }
.ct-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b }
.ct-alert--error svg { color: #dc2626 }

/* Form fields */
.ct-form { display: flex; flex-direction: column; gap: 20px }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px }
.ct-field { display: flex; flex-direction: column; gap: 6px }
.ct-label {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .01em;
}
.ct-required { color: var(--gold); margin-left: 2px }
.ct-input {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--ink);
    background: var(--off-white);
    border: 1.5px solid var(--grey-1);
    border-radius: var(--r-md);
    padding: 12px 16px;
    width: 100%;
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
    appearance: none;
}
.ct-input::placeholder { color: var(--grey-3) }
.ct-input:focus {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.ct-field--error .ct-input {
    border-color: #dc2626;
    background: #fff5f5;
}
.ct-field--error .ct-input:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.08) }
.ct-error-msg {
    font-family: var(--font-body);
    font-size: .74rem;
    color: #dc2626;
    font-weight: 500;
}

/* Select */
.ct-select-wrap { position: relative }
.ct-select { padding-right: 40px; cursor: pointer }
.ct-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--grey-3);
}
.ct-select-arrow svg { width: 15px; height: 15px }

/* Textarea */
.ct-textarea { resize: vertical; min-height: 148px; line-height: 1.6 }

/* Submit button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background .22s, transform .22s, box-shadow .22s;
    margin-top: 4px;
}
.ct-submit-btn svg { width: 18px; height: 18px; transition: transform .22s }
.ct-submit-btn:hover { background: var(--ink); box-shadow: var(--sh-md); transform: translateY(-1px) }
.ct-submit-btn:hover svg { transform: translateX(3px) }
.ct-submit-btn:active { transform: translateY(0); box-shadow: none }

/* Privacy note */
.ct-form-note {
    font-family: var(--font-body);
    font-size: .72rem;
    color: var(--grey-3);
    text-align: center;
    line-height: 1.5;
}
.ct-form-note a { color: inherit; text-decoration: underline }

/* ── Map section ── */
.ct-map-section { padding-top: 0 }
.ct-map-header { margin-bottom: 40px }
.ct-map-embed {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
    border: 1px solid var(--grey-1);
    line-height: 0;
}
.ct-map-embed iframe { display: block; width: 100% }

/* ── FAQ ── */
.ct-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}
.ct-faq-header { position: sticky; top: calc(var(--header-h) + 24px) }
.ct-faq-list { display: flex; flex-direction: column; gap: 0 }
.ct-faq-item {
    border-bottom: 1px solid var(--grey-1);
}
.ct-faq-item:first-child { border-top: 1px solid var(--grey-1) }
.ct-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: color .2s;
}
.ct-faq-btn:hover { color: var(--ink) }
.ct-faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--grey-3);
    transition: transform .3s var(--ease-out);
}
.ct-faq-item--open .ct-faq-chevron { transform: rotate(180deg) }
.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out);
}
.ct-faq-answer p {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--grey-4);
    line-height: 1.8;
    padding-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ct-layout { grid-template-columns: 1fr; gap: 48px }
    .ct-faq-layout { grid-template-columns: 1fr; gap: 40px }
    .ct-faq-header { position: static }
    .ct-strip-grid { grid-template-columns: repeat(2, 1fr) }
    .ct-strip-card { border-bottom: 1px solid rgba(255,255,255,.07) }
    .ct-strip-card:nth-child(2) { border-right: none }
    .ct-strip-card:nth-child(3),
    .ct-strip-card:nth-child(4) { border-bottom: none }
}

@media (max-width: 640px) {
    .ct-strip-grid { grid-template-columns: 1fr }
    .ct-strip-card { border-right: none }
    .ct-strip-card:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.07) }
    .ct-form-wrap { padding: 32px 24px }
    .ct-form-row { grid-template-columns: 1fr }
}



/* ============================================================
   ENQUIRY SUCCESS PAGE  (es- prefix)
   Paste into styles.css just before the @media blocks.
   ============================================================ */

/* ── Hero ── */
.es-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.es-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.es-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.6) 100%);
}
.es-hero-noise {
    position: absolute;
    inset: 0;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}
.es-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    gap: 0;
}

/* Animated check circle */
.es-check-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    flex-shrink: 0;
}
.es-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.es-ring-progress {
    stroke-dasharray: 339.3;
    stroke-dashoffset: 339.3;
}
.es-check-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.es-check-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    animation: esCheckPop .4s cubic-bezier(0.34,1.56,0.64,1) 1.1s both;
}
@keyframes esCheckPop {
    from { transform: scale(0); opacity: 0 }
    to   { transform: scale(1); opacity: 1 }
}

/* Hero text */
.es-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
}
.es-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.es-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.es-title em {
    font-style: italic;
    color: var(--gold);
}
.es-subtitle {
    font-family: var(--font-body);
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 28px;
}
.es-subtitle strong { color: var(--white); font-weight: 600 }

/* Reference badge */
.es-ref-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 40px;
    backdrop-filter: blur(6px);
}
.es-ref-label {
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.es-ref-num {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .05em;
}

/* ── Body section ── */
.es-body-section { padding-top: 72px }
.es-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Summary card ── */
.es-summary {
    background: var(--white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: var(--sh-lg);
}
.es-summary-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-1);
}
.es-summary-icon {
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border: 1px solid var(--grey-1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.es-summary-icon svg { width: 20px; height: 20px; color: var(--black) }
.es-summary-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}
.es-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}
.es-summary-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-1);
    align-items: baseline;
}
.es-summary-row:first-child { padding-top: 0 }
.es-summary-row--message { align-items: flex-start }
.es-summary-key {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--grey-3);
    flex-shrink: 0;
}
.es-summary-val {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--ink);
    line-height: 1.6;
    word-break: break-word;
}
.es-email-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: .82rem;
    color: #166534;
    line-height: 1.5;
}
.es-email-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: #16a34a }
.es-email-note strong { font-weight: 600 }

/* ── Next steps ── */
.es-next-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.es-next-intro {
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--grey-3);
    margin-bottom: 40px;
}
.es-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 44px;
}
.es-step {
    display: flex;
    gap: 20px;
}
.es-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.es-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.es-step-line {
    width: 1px;
    flex: 1;
    background: var(--grey-1);
    margin: 8px 0;
    min-height: 28px;
}
.es-step-body {
    padding-bottom: 32px;
    flex: 1;
}
.es-step:last-child .es-step-body { padding-bottom: 0 }
.es-step-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--off-white);
    border: 1px solid var(--grey-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.es-step-icon svg { width: 18px; height: 18px; color: var(--black) }
.es-step-title {
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.es-step-text {
    font-family: var(--font-body);
    font-size: .84rem;
    color: var(--grey-4);
    line-height: 1.7;
}

/* Action buttons */
.es-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .es-layout { grid-template-columns: 1fr; gap: 40px }
}

@media (max-width: 640px) {
    .es-hero { min-height: 460px }
    .es-summary { padding: 28px 22px }
    .es-summary-row { grid-template-columns: 90px 1fr }
    .es-actions { flex-direction: column }
    .es-actions a { width: 100%; justify-content: center }
}


/* ============================================================
   PORTFOLIO PAGE  (pf- prefix)
   Append this block to the bottom of styles.css
   ============================================================ */


/* ════════════════════════════════════════════
   PORTFOLIO LISTING PAGE
════════════════════════════════════════════ */

/* ── Filter strip ── */
.pf-filter-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-1);
}
.pf-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.pf-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  border: 1.5px solid var(--grey-1);
  color: var(--grey-4);
  background: var(--white);
  cursor: pointer;
  transition: border-color .22s, color .22s, background .22s, box-shadow .22s;
  white-space: nowrap;
}
.pf-filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.pf-filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--sh-sm);
}

/* ── Portfolio grid ── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Portfolio card ── */
.pf-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out), border-color .3s;
}
.pf-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: var(--grey-2);
}

/* Cover image */
.pf-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.pf-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out);
}
.pf-card:hover .pf-card-img { transform: scale(1.06) }

/* Hover overlay */
.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-card:hover .pf-card-overlay { background: rgba(0,0,0,.48) }

.pf-card-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  white-space: nowrap;
}
.pf-card-view-btn svg { width: 13px; height: 13px; flex-shrink: 0 }
.pf-card:hover .pf-card-view-btn { opacity: 1; transform: none }

/* Card body */
.pf-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pf-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.pf-card-type {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: var(--off-white);
  border: 1px solid var(--grey-1);
  border-radius: 20px;
  color: var(--grey-4);
}
.pf-card-date {
  font-family: var(--font-body);
  font-size: .74rem;
  color: var(--grey-3);
  white-space: nowrap;
}
.pf-card-title {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.35;
}
.pf-card-title a { color: inherit; text-decoration: none; transition: color .2s }
.pf-card-title a:hover { color: var(--grey-5) }
.pf-card-client {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--grey-3);
  margin: 0 0 8px;
}
.pf-card-client svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--grey-2) }
.pf-card-excerpt {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--grey-4);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}


/* ════════════════════════════════════════════
   PORTFOLIO SINGLE / SHOW PAGE
════════════════════════════════════════════ */

/* Two-column layout */
.pf-show-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

/* Main article */
.pf-description {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--grey-4);
  line-height: 1.85;
}
.pf-section-heading {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--grey-1);
}

/* Project image grid */
.pf-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pf-img-figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--off-white);
  border: 1px solid var(--grey-1);
}
.pf-gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease-out);
}
.pf-img-figure:hover .pf-gallery-img { transform: scale(1.06) }
.pf-img-caption {
  padding: 8px 12px 10px;
  background: var(--off-white);
  border-top: 1px solid var(--grey-1);
}
.pf-img-caption strong {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  line-height: 1.3;
}
.pf-img-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--grey-3);
  line-height: 1.4;
}
.pf-img-zoom-icon {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .25s, transform .25s var(--ease-out);
}
.pf-img-zoom-icon svg { width: 14px; height: 14px }
.pf-img-figure:hover .pf-img-zoom-icon { opacity: 1; transform: scale(1) }
.pf-gallery-section { margin-top: 2.5rem }

/* ── Sidebar ── */
.pf-info-card {
  background: var(--white);
  border: 1px solid var(--grey-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}
.pf-info-card-head {
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-3);
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-1);
}
.pf-info-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pf-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--grey-1);
  font-family: var(--font-body);
  font-size: .84rem;
}
.pf-info-row:last-child { border-bottom: none }
.pf-info-row dt { font-weight: 600; color: var(--grey-3); flex-shrink: 0; font-size: .78rem }
.pf-info-row dd { font-weight: 600; color: var(--black); margin: 0; text-align: right }

/* Live URL button */
.pf-live-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 20px 20px;
  padding: 11px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.pf-live-btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s }
.pf-live-btn:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--sh-md) }
.pf-live-btn:hover svg { transform: translate(2px,-2px) }

/* Dark CTA card */
.pf-cta-card {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  margin-top: 20px;
}
.pf-cta-card-eyebrow {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 10px;
}
.pf-cta-card-title {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}
.pf-cta-card-text {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pf-cta-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.pf-cta-card-btn:hover { background: var(--off-white); box-shadow: 0 4px 16px rgba(0,0,0,.18) }

/* Back link */
.pf-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--grey-3);
  text-decoration: none;
  margin-top: 20px;
  transition: color .2s;
}
.pf-back-link svg { width: 14px; height: 14px; transition: transform .25s }
.pf-back-link:hover { color: var(--black) }
.pf-back-link:hover svg { transform: translateX(-3px) }

/* ── Lightbox ── */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 80px;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.pf-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.pf-lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 10;
}
.pf-lightbox-close:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.35) }
.pf-lightbox-close svg { width: 20px; height: 20px }

/* Prev / Next arrows */
.pf-lightbox-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 10;
}
.pf-lightbox-arrow:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  transform: scale(1.08);
}
.pf-lightbox-arrow svg { width: 20px; height: 20px }

/* Central body: image + footer */
.pf-lightbox-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Image wrapper — handles fade transition */
.pf-lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 78vh;
}
.pf-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  display: block;
  transition: opacity .15s ease, transform .15s ease;
}

/* Footer: caption + counter */
.pf-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.pf-lightbox-caption {
  flex: 1;
  min-width: 0;
}
.pf-lightbox-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  color: var(--white);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-lightbox-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-lightbox-counter {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile: stack arrows below image */
@media (max-width: 600px) {
  .pf-lightbox {
    flex-direction: column;
    padding: 60px 16px 24px;
    gap: 0;
  }
  .pf-lightbox-body { order: 1 }
  .pf-lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
  }
  .pf-lightbox-arrow--prev { left: 10px }
  .pf-lightbox-arrow--next { right: 10px }
  .pf-lightbox-arrow:hover { transform: translateY(-50%) scale(1.08) }
}

/* ── Related section ── */
.pf-related-section {
  background: var(--off-white);
  border-top: 1px solid var(--grey-1);
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr) }
  .pf-img-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 960px) {
  .pf-show-layout { grid-template-columns: 1fr; gap: 40px }
  .pf-show-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start }
  .pf-back-link { grid-column: 1 / -1 }
}

@media (max-width: 640px) {
  .pf-grid { grid-template-columns: 1fr; gap: 20px }
  .pf-img-grid { grid-template-columns: 1fr }
  .pf-filter-bar { gap: 6px }
  .pf-filter-btn { padding: 6px 14px; font-size: .72rem }
  .pf-show-sidebar { grid-template-columns: 1fr }
  .pf-card-body { padding: 18px 20px 22px }
}

/* ── Active filter state (modifier class applied via PHP ternary) ── */
.pf-filter-btn--active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--sh-sm);
}

/* ── Show page main content column ── */
.pf-show-main {
  min-width: 0;
}
/* ══════════════════════════════════════════
   GL — Generic form / alert / layout classes
   (used by cart, checkout, auth pages)
══════════════════════════════════════════ */

/* Form group */
.gl-form-group { margin-bottom: 16px; }

/* Label */
.gl-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: .01em;
}

/* Input / Textarea / Select */
.gl-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-size: .9rem;
  color: #111;
  background: #fff;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.gl-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}
.gl-input--error { border-color: #ef4444 !important; }

textarea.gl-input { resize: vertical; min-height: 90px; }
select.gl-input   { cursor: pointer; }

/* Error text */
.gl-error {
  display: block;
  font-size: .78rem;
  color: #ef4444;
  margin-top: 4px;
}

/* Alert banners */
.gl-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.5;
}
.gl-alert--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.gl-alert--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.gl-alert--info    { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* hp-cta-solid / hp-cta-line already defined; ensure display:inline-flex on buttons */
button.hp-cta-solid, a.hp-cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* iph--sm hero variant */
.iph--sm .iph-content { padding-top: 80px; padding-bottom: 50px; }

/* ══════════════════════════════════════════════
   MOBILE HEADER — icon-only profile, no cart bar
══════════════════════════════════════════════ */
@media(max-width:900px){
  /* Hide cart icon from header bar — accessible via mobile menu */
  .hdr-cart-icon { display:none !important; }

  /* Profile button: show icon only, no name or chevron */
  .hdr-uname, .hdr-uchev { display:none !important; }

  /* Tighten padding since no text */
  #customerDropBtn { padding:6px 8px; gap:0; }

  /* Sign In link: icon only */
  a[title="Sign In"] { padding:6px 8px; gap:0; }

  /* Customer dropdown: anchor right edge, don't overflow */
  #customerDrop { right:0; left:auto; min-width:200px; }

  /* Push icons to the right so profile icon sits just before hamburger */
  .hdr-icons { margin-left:auto !important; margin-right:6px; gap:6px; }

  /* Small gap between profile icon and hamburger */
  .header-hamburger { margin-left:6px; }
}

/* ============================================================
   SXY GARMENTS — Custom Styles
   2-Card Slider · Product Cards · Brand Elements
   ============================================================ */

/* ── Override hp-cta-solid to brand orange ── */
.hp-cta-solid {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.hp-cta-solid:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* ── SXY BRAND HEADER LOGO — seamless header tab ── */
.sxy-logo {
  display:inline-flex;
  align-items:flex-start;
  align-self:flex-start;
  text-decoration:none;
  flex-shrink:0;
  position:relative;
  z-index:1001;
  background:var(--white);
  padding:8px 16px 14px;
  border-radius:0 0 20px 20px;  /* match the ::before border curve */
}

/* Border starts exactly where the header's bottom border ends —
   flows down the two sides and across the logo bottom.
   No border above this point so it blends into the header. */
.sxy-logo::before {
  content:'';
  position:absolute;
  top:var(--header-h);   /* aligns with header bottom border */
  left:0; right:0; bottom:0;
  border-left:1px solid var(--border);
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  border-radius:0 0 20px 20px;
  pointer-events:none;
}

.sxy-logo img {
  display:block;
  width:70px;
  height:auto;
  transition:opacity .2s ease, transform .25s ease;
}
.sxy-logo:hover img {
  opacity:.85;
  transform:translateY(-1px);
}
.sxy-logo-text { display:flex; flex-direction:column; gap:0; }
.sxy-logo-name { font-family:var(--font-head); font-size:1.15rem; font-weight:700; color:var(--primary); line-height:1; letter-spacing:.05em; }
.sxy-logo-tag  { font-family:var(--font-body); font-size:.5rem; font-weight:600; letter-spacing:.25em; text-transform:uppercase; color:var(--grey-3); }

/* ── SXY 2-CARD SLIDER ── */
.sxy-slider-section { padding: 90px 0 0; background: var(--white); }
.sxy-slider-section.has-admin-bar { padding-top: 126px; }
.sxy-slider-wrap { position:relative; overflow:hidden; }
.sxy-slider-track { display:flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.sxy-slide-pair { display:grid; grid-template-columns:1fr 1fr; gap:20px; min-width:100%; padding:0 clamp(20px,5vw,64px); box-sizing:border-box; }
.sxy-card {
  position:relative; border-radius:18px; overflow:hidden;
  aspect-ratio:3/4; min-height:320px;
  background:#111; cursor:pointer;
}
.sxy-card-img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; transition:transform .6s ease;
}
.sxy-card:hover .sxy-card-img { transform:scale(1.04); }
.sxy-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.sxy-card-body {
  position:absolute; bottom:0; left:0; right:0;
  padding:28px 28px 30px;
  color:#fff;
}
.sxy-card-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:var(--primary-light); margin-bottom:10px;
}
.sxy-card-tag::before { content:''; width:18px; height:1.5px; background:var(--primary); display:block; }
.sxy-card-title {
  font-family:var(--font-head); font-size:clamp(1.3rem,2.5vw,1.8rem);
  font-weight:700; line-height:1.15; color:#fff; margin-bottom:8px;
}
.sxy-card-desc { font-size:.82rem; color:rgba(255,255,255,.75); line-height:1.55; margin-bottom:16px; }
.sxy-card-cta {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; background:var(--primary); border-radius:50px;
  padding:8px 20px; text-decoration:none;
  transition: background .2s ease;
}
.sxy-card-cta:hover { background:var(--primary-dark); color:#fff; }

/* Slider controls */
.sxy-slider-controls {
  display:flex; align-items:center; justify-content:center; gap:16px;
  margin-top:28px; padding-bottom:50px;
}
.sxy-slider-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--grey-2); border:none; cursor:pointer;
  transition:background .25s, transform .25s;
}
.sxy-slider-dot.active { background:var(--primary); transform:scale(1.4); }
.sxy-slider-btn {
  width:36px; height:36px; border-radius:50%;
  border:1.5px solid var(--grey-2); background:transparent; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--charcoal); transition:var(--ease);
}
.sxy-slider-btn:hover { border-color:var(--primary); color:var(--primary); }
.sxy-slider-btn svg { width:16px; height:16px; }

@media(max-width:700px) {
  .sxy-slide-pair { grid-template-columns:1fr; }
  .sxy-card { aspect-ratio:4/3; min-height:260px; }
  .sxy-slide-pair .sxy-card:last-child { display:none; }
}

/* ── SXY PRODUCTS SECTION ── */
.sxy-products-section {
  padding: 70px 0 90px;
  background: var(--warm);
}
.sxy-section-head { text-align:center; margin-bottom:48px; }
.sxy-section-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.65rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--primary); margin-bottom:14px;
}
.sxy-section-eyebrow::before,.sxy-section-eyebrow::after { content:''; width:24px; height:1.5px; background:var(--primary); display:block; }
.sxy-section-title {
  font-family:var(--font-head); font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:700; color:var(--black); margin-bottom:12px; line-height:1.15;
}
.sxy-section-subtitle { color:var(--grey-4); font-size:.95rem; max-width:520px; margin:0 auto; }

/* Product Grid */
.sxy-product-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
@media(max-width:1024px) { .sxy-product-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:768px)  { .sxy-product-grid { grid-template-columns:repeat(2,1fr); gap:16px; } }
@media(max-width:440px)  { .sxy-product-grid { grid-template-columns:1fr; } }

/* Product Card */
.sxy-product-card {
  background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:var(--sh-xs); transition:box-shadow .3s ease, transform .3s ease;
  display:flex; flex-direction:column;
}
.sxy-product-card:hover { box-shadow:var(--sh-md); transform:translateY(-4px); }
.sxy-product-card-img {
  position:relative; overflow:hidden;
  aspect-ratio:3/4; background:var(--grey-1);
}
.sxy-product-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
  display:block;
}
.sxy-product-card:hover .sxy-product-card-img img { transform:scale(1.06); }
.sxy-product-badge {
  position:absolute; top:12px; left:12px;
  background:var(--primary); color:#fff;
  font-size:.6rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px;
}
.sxy-product-badge.new { background:var(--olive); }
.sxy-product-card-body { padding:16px 18px 20px; flex:1; display:flex; flex-direction:column; gap:8px; }
.sxy-product-cat {
  font-size:.6rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--sky-dark);
}
.sxy-product-title {
  font-family:var(--font-head); font-size:1rem; font-weight:700;
  color:var(--black); line-height:1.25;
}
.sxy-product-title a { color:inherit; text-decoration:none; }
.sxy-product-title a:hover { color:var(--primary); }
.sxy-product-desc {
  font-size:.8rem; color:var(--grey-4); line-height:1.5;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  flex:1;
}
.sxy-product-price { display:flex; align-items:center; gap:8px; margin-top:4px; }
.sxy-product-price-cur { font-size:1.1rem; font-weight:700; color:var(--primary); }
.sxy-product-price-old { font-size:.82rem; color:var(--grey-3); text-decoration:line-through; }
.sxy-product-price-off {
  font-size:.65rem; font-weight:700; color:#fff; background:var(--olive);
  padding:2px 8px; border-radius:20px;
}
.sxy-product-actions { display:flex; gap:8px; margin-top:8px; }
.sxy-btn-buy {
  flex:1; display:flex; align-items:center; justify-content:center; gap:6px;
  background:var(--primary); color:#fff; font-size:.78rem; font-weight:700;
  letter-spacing:.05em; text-transform:uppercase; border-radius:8px;
  padding:10px 14px; border:none; cursor:pointer; text-decoration:none;
  transition:background .2s ease;
}
.sxy-btn-buy:hover { background:var(--primary-dark); color:#fff; }
.sxy-btn-view {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:8px;
  border:1.5px solid var(--grey-1); background:transparent;
  color:var(--grey-4); text-decoration:none; transition:var(--ease);
}
.sxy-btn-view:hover { border-color:var(--primary); color:var(--primary); }
.sxy-btn-view svg { width:16px; height:16px; }

/* ── VIEW ALL PRODUCTS BTN ── */
.sxy-view-all-wrap { text-align:center; margin-top:48px; }
.sxy-btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.82rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--primary); border:2px solid var(--primary); border-radius:50px;
  padding:12px 32px; text-decoration:none; transition:var(--ease);
}
.sxy-btn-outline:hover { background:var(--primary); color:#fff; }

/* ── BRAND STRIP ── */
.sxy-brand-strip {
  background:var(--primary);
  padding:16px 0;
  overflow:hidden;
}
.sxy-brand-strip-track {
  display:flex; gap:48px; align-items:center;
  animation:sxyMarquee 30s linear infinite;
  white-space:nowrap; width:max-content;
}
.sxy-brand-strip-item {
  font-size:.7rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.85); display:flex; align-items:center; gap:14px;
}
.sxy-brand-strip-item::after { content:'✦'; color:rgba(255,255,255,.4); font-size:.6rem; }
@keyframes sxyMarquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── POLICY PAGES ── */
.policy-section { padding:80px 0 100px; }
.policy-section .container { max-width:800px; }
.policy-section h1 { font-family:var(--font-head); font-size:clamp(1.8rem,4vw,2.4rem); color:var(--black); margin-bottom:8px; }
.policy-section .policy-date { font-size:.8rem; color:var(--grey-3); margin-bottom:40px; }
.policy-section h2 { font-family:var(--font-head); font-size:1.2rem; color:var(--black); margin:36px 0 12px; }
.policy-section p { color:var(--grey-4); margin-bottom:14px; font-size:.93rem; line-height:1.75; }
.policy-section ul { margin:0 0 14px 20px; list-style:disc; color:var(--grey-4); font-size:.93rem; line-height:1.75; }
.policy-section ul li { margin-bottom:6px; }
.policy-section a { color:var(--primary); text-decoration:underline; }

/* ── PRODUCT DETAIL OPTIONS ── */
.sxy-opts-group { margin-bottom:20px; }
.sxy-opts-label { font-size:.72rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--grey-4); margin-bottom:8px; display:flex; gap:6px; }
.sxy-opts-label span { color:var(--black); font-weight:700; }
.sxy-opts-values { display:flex; flex-wrap:wrap; gap:8px; }
.sxy-opt-btn {
  padding:6px 16px; border-radius:6px;
  border:1.5px solid var(--grey-1); background:#fff;
  font-size:.82rem; font-weight:500; color:var(--charcoal);
  cursor:pointer; transition:var(--ease);
}
.sxy-opt-btn:hover, .sxy-opt-btn.selected {
  border-color:var(--primary); color:var(--primary); background:var(--primary-light);
}

/* ── ORDER SHOW (customer) ── */
.order-show-layout { display:grid; grid-template-columns:1fr 300px; gap:20px; align-items:start; }
@media(max-width:768px){
  .order-show-layout { grid-template-columns:1fr; gap:16px; }
}

/* ── ORDER SUCCESS ── */
.sxy-success-section { padding:80px 0 100px; }
.sxy-success-card {
  max-width:560px; margin:0 auto;
  background:#fff; border-radius:20px; padding:48px;
  box-shadow:var(--sh-md); text-align:center;
}
.sxy-success-icon {
  width:72px; height:72px; border-radius:50%;
  background:var(--olive-light); margin:0 auto 24px;
  display:flex; align-items:center; justify-content:center;
}
.sxy-success-icon svg { width:36px; height:36px; color:var(--olive); }
.sxy-success-card h1 { font-family:var(--font-head); font-size:1.8rem; color:var(--black); margin-bottom:10px; }
.sxy-success-card p { color:var(--grey-4); font-size:.92rem; margin-bottom:6px; }
.sxy-success-order-num {
  display:inline-block; margin:16px 0 24px;
  background:var(--warm); border-radius:8px; padding:10px 24px;
  font-size:1rem; font-weight:700; color:var(--primary); letter-spacing:.05em;
}
.sxy-success-details { text-align:left; background:var(--warm); border-radius:12px; padding:20px 24px; margin-bottom:24px; }
.sxy-success-row { display:flex; justify-content:space-between; align-items:center; padding:6px 0; border-bottom:1px solid var(--grey-1); font-size:.85rem; }
.sxy-success-row:last-child { border:none; font-weight:700; }
.sxy-success-row span:first-child { color:var(--grey-4); }
.sxy-success-row span:last-child { color:var(--black); font-weight:600; }
.sxy-success-actions { display:flex; gap:12px; justify-content:center; margin-top:24px; flex-wrap:wrap; }

/* ── FOOTER POLICY LINKS ── */
.footer-policy-links { display:flex; gap:16px; flex-wrap:wrap; margin-top:12px; }
.footer-policy-links a { font-size:.75rem; color:var(--grey-4); text-decoration:none; transition:var(--ease); }
.footer-policy-links a:hover { color:var(--primary); }

/* ── MOBILE ADJUSTMENTS ── */
@media(max-width:600px) {
  .sxy-success-card { padding:32px 20px; border-radius:14px; }
  .sxy-success-section { padding:40px 0 60px; }
  .sxy-slider-section { padding-top: 80px; }
  .sxy-success-actions { flex-direction:column; align-items:stretch; }
  .sxy-success-actions a { text-align:center; }
}
