/* =========================================================
   REED Dropshipping — V2 Design System (PGTV V2 adapted)
   ========================================================= */

:root {
  --accent: #FF6B00;
  --accent-soft: #FFF2E6;
  --accent-deep: #B34700;
  --accent-ink: #3D1E00;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.55;
  background-color: #F5F5F5;
  color: #3D1E00;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: #3D1E00; color: #F5F5F5; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* ============================================
   GIANT TITLES
   ============================================ */
.giant-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-bottom: 2.5rem;
}
@media (min-width:768px) { .giant-title { margin-bottom: 3rem; } }
.giant-title em { color: var(--accent-deep); }

.title-pill {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}
.title-pill em { color: var(--accent-deep); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.onScreen { opacity: 0; transform: translateY(40px); }
.onScreen.active { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.fadeup { /* marker class for scroll trigger */ }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 1.25rem 1.5rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.nav-header.nav--hidden { transform: translateY(-120%); }

.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1500px; position: relative;
}

.logo-wrapper { position: absolute; left: 0; z-index: 5; }
@media (min-width:1100px) { .logo-wrapper { left: 1rem; } }

.logo-link {
  display: flex; align-items: center;
  text-decoration: none;
}

.logo-mark {
  display: flex; align-items: stretch; gap: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem; line-height: 1;
  opacity: 0;
  animation: logoWordIn .5s cubic-bezier(.16,1,.3,1) .3s forwards;
}

.logo-re {
  color: #fff;
  font-weight: 100;
  letter-spacing: -.01em;
  display: flex; align-items: center;
}

.logo-ed {
  display: flex; align-items: center; justify-content: center;
  background: #FF6B00; color: #fff;
  font-weight: 100;
  letter-spacing: -.01em;
  padding: 4px 5px 5px;
  margin-left: -1px;
}

.nav-header.nav--scrolled .logo-re { color: #FF6B00; }

@keyframes logoWordIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


.inner-nav {
  display: none; flex: 1; justify-content: center;
}
@media (min-width:1100px) { .inner-nav { display: flex; } }

.top-nav {
  position: relative;
  display: flex; align-items: center;
  height: 54px; padding: 0 .5rem;
  border-radius: 100vw;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: navFade .6s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.nav-header.nav--scrolled .top-nav {
  background: #fff;
  box-shadow: 0 4px 24px -8px rgba(61,30,0,.15);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}

@keyframes navFade {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hover-background {
  position: absolute; top: 6px; left: 0;
  height: 42px; border-radius: 100vw;
  background: var(--accent-soft);
  opacity: 0;
  transition: width .35s cubic-bezier(.16,1,.3,1),
              transform .35s cubic-bezier(.16,1,.3,1),
              opacity .25s ease;
  pointer-events: none; z-index: 0;
}
.nav-header.nav--scrolled .hover-background { background: var(--accent-soft); }

.header-menu { display: flex; list-style: none; position: relative; z-index: 1; }
.header-menu li { margin: 0 2px; }
@media (min-width:1200px) { .header-menu li { margin: 0 4px; } }

.header-menu a {
  display: flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 1.1rem;
  font-size: .86rem; font-weight: 500; letter-spacing: .01em;
  color: #fff;
  position: relative; transition: color .3s ease;
}
@media (min-width:1200px) { .header-menu a { font-size: .9rem; padding: 0 1.25rem; } }
.nav-header.nav--scrolled .header-menu a { color: #3D1E00; }

.header-menu a::after {
  content: ""; position: absolute; bottom: 7px; left: 0; right: 0; margin: 0 auto;
  width: 4px; height: 4px; border-radius: 4px; background: #fff;
  opacity: 0;
  transition: width .45s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.header-menu a:hover::after { width: 26px; opacity: 1; }
.nav-header.nav--scrolled .header-menu a::after { background: var(--accent-deep); }
.header-menu a.is-current::after { width: 26px; opacity: 1; }

/* --- "talk" pill --- */
.hey {
  display: none; justify-content: center; align-items: center; gap: .3rem;
  position: absolute; right: 1.5rem;
  height: 50px; width: 138px; padding: 2px 16px 4px;
  border-radius: 100vw;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-family: "DM Serif Display", serif; font-style: italic; font-size: 1.4rem;
  transition: background .3s ease, color .3s ease, box-shadow .35s ease;
  opacity: 0; animation: navFade .6s cubic-bezier(.16,1,.3,1) .62s forwards;
}
@media (min-width:1100px) { .hey { display: inline-flex; right: 2rem; } }
.hey:hover { background: #FF6B00; color: #fff; }
.nav-header.nav--scrolled .hey {
  background: #fff; color: #3D1E00;
  box-shadow: 0 4px 24px -8px rgba(61,30,0,.15);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.nav-header.nav--scrolled .hey:hover { background: #FF6B00; color: #fff; }
.hey svg { width: 22px; height: 22px; flex-shrink: 0; }

.word-animation {
  position: relative; display: inline-block; overflow: hidden;
  height: 1.7rem; width: 62px;
  opacity: 0; animation: navFade .5s ease 1.15s forwards;
}
.word-animation .word {
  position: absolute; left: 0; top: 0;
  display: flex; align-items: center; height: 100%;
}
.word-animation .letter { display: inline-block; line-height: 1.7rem; }

/* --- Burger --- */
.nav-burger {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
  position: absolute; right: .75rem; z-index: 10;
}
@media (min-width:768px) { .nav-burger { right: 1.25rem; } }
@media (min-width:1100px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; width: 24px; height: 1.5px; background: #fff;
  transition: transform .3s, background .3s;
}
.nav-header.nav--scrolled .nav-burger span { background: #3D1E00; }
body.menu-open .nav-burger span { background: #3D1E00; }
body.menu-open .nav-burger span:first-child { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav-burger span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: #F5F5F5; z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
}
body.menu-open .mobile-menu { display: flex; }
.mobile-menu a { font-size: 1.6rem; font-weight: 700; color: #3D1E00; }
.mobile-menu a:hover { color: var(--accent); }

/* ============================================
   HERO / INTRODUCTION
   ============================================ */
.introduction { position: relative; min-height: fit-content; height: auto; display: flex; }
@media (min-width:768px) { .introduction { min-height: 95svh; } }
@media (min-width:1100px) { .introduction { max-height: 820px; } }

.intro-wrapper {
  display: flex; width: 100%;
  padding: 12px;
  background-color: var(--accent);
  border-radius: 0 0 90px 90px;
  overflow: clip;
}
@media (min-width:768px) { .intro-wrapper { border-radius: 0 0 158px 158px; } }

.intro-bg {
  overflow: clip; position: relative; width: 100%;
  border-radius: 20px 20px 80px 80px;
  background: #1A0800 url(hero-warehouse.jpg) center / cover no-repeat;
}
@media (min-width:768px) { .intro-bg { border-radius: 20px 150px 150px 150px; } }

/* Floating icons in hero */
.hero-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hico {
  position: absolute;
  left: var(--x); top: var(--y);
  color: rgba(255,255,255,.12);
  animation: hicoFloat 6s ease-in-out calc(var(--d, 0s)) infinite alternate;
}
@keyframes hicoFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(var(--dir, 1) * 14px)); }
}

.intro-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background: rgba(10, 4, 0, .42);
  z-index: 2; opacity: 0;
}

.intro-inner {
  height: 100%; width: 100%; position: relative;
  max-width: 1500px; margin: 0 auto; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 520px; padding: 3rem 1.25rem;
}
@media (min-width:768px) { .intro-inner { padding: 3.5rem 2.5rem; min-height: 620px; } }
@media (min-width:1100px) { .intro-inner { padding: 4rem 3.5rem; min-height: 680px; } }

.mainText { color: #fff; opacity: 0; }
.mainText h1 { font-size: 34px; margin: 1rem 0 1.5rem; color: #fff; max-width: 14ch; }
@media (min-width:500px) { .mainText h1 { font-size: 44px; } }
@media (min-width:768px) { .mainText h1 { font-size: 56px; } }
@media (min-width:1100px) { .mainText h1 { font-size: 70px; } }
@media (min-width:1400px) { .mainText h1 { font-size: 84px; } }
.mainText h1 em { color: var(--accent); font-weight: 400; }

.intro-text { opacity: 0; transform: translateY(-30px); max-width: 430px; }
.intro-text p { color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (min-width:768px) { .intro-text p { font-size: 1.12rem; } }
.intro-text em { color: var(--accent); }

.intro-bottom { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
@media (min-width:768px) {
  .intro-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

.intro-scroll { display: none; }
@media (min-width:768px) { .intro-scroll { display: flex; align-items: flex-end; } }
.intro-scroll a { display: block; width: 50px; height: 50px; }
.intro-scroll svg circle { transition: fill .3s; }
.intro-scroll a:hover svg circle { fill: #FF6B00; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.6rem; border-radius: 100vw;
  font-size: .85rem; font-weight: 500; font-family: inherit;
  border: none; cursor: pointer; transition: all .25s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.btn em { font-weight: 400; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--warm { background: #FFE0CC; color: #3D1E00; }
.btn--warm:hover { background: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; border: 1.5px solid #3D1E00; color: #3D1E00; }
.btn--outline:hover { background: #3D1E00; color: #fff; }
.btn--outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.btn--small { padding: .5rem 1.1rem; font-size: .78rem; }
.btn--large { padding: .9rem 2rem; font-size: .95rem; }

.pill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem 1.3rem; border-radius: 100vw;
  font-size: .82rem; font-weight: 500;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.pill--outline { border: 1.5px solid rgba(255,255,255,.22); color: #fff; }
.pill--outline:hover { background: rgba(255,255,255,.08); }
.pill--warm { background: var(--accent); color: #fff; }
.pill--warm:hover { background: var(--accent-deep); }

/* ============================================
   INTRO SECTION (What we deliver)
   ============================================ */
.intro-section { padding: 4rem 0 3rem; }
@media (min-width:768px) { .intro-section { padding: 6rem 0 4rem; } }
@media (min-width:1100px) { .intro-section { padding: 8rem 0 5rem; } }

.intro-section .wrapper { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width:768px) {
  .intro-section .wrapper { flex-direction: row; gap: 4rem; align-items: flex-start; }
}

.intro-section__text { flex: 1.15; max-width: 640px; }
.intro-section__text h2 {
  font-size: 1.12rem; font-weight: 400; margin-bottom: 1rem;
  font-family: "DM Serif Display", serif; font-style: italic; color: var(--accent-deep);
}
.intro-section__text h3 {
  margin-top: .5rem;
  font-size: clamp(2.2rem, 5vw, 3.9rem); line-height: 1.04;
  letter-spacing: -.02em; text-wrap: balance;
}
.intro-section__text p {
  color: #7A5E42; line-height: 1.75;
  font-size: 1.1rem; margin-top: 1.4rem;
}
@media (min-width:768px) { .intro-section__text p { font-size: 1.2rem; } }

/* ============================================
   MOSAIC TILES (Intro grid)
   ============================================ */
.mosaicgrid {
  flex: 1; display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 80px);
  gap: .5rem;
  max-width: 520px;
}
@media (min-width:768px) {
  .mosaicgrid { grid-template-rows: repeat(4, 100px); gap: .65rem; }
}

.tile {
  border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tile--photo { background: #e5ddd0; }
.tile--photo img { width: 100%; height: 100%; object-fit: cover; }
.tile--warm { background: var(--accent-soft); color: var(--accent-deep); }
.tile--soft { background: #F0EAE0; color: #8B7355; }
.tile--icon svg { width: 52%; height: auto; }

.mo-a { grid-column: 1 / 3; grid-row: 1 / 2; }
.mo-b { grid-column: 3 / 5; grid-row: 1 / 3; }
.mo-c { grid-column: 1 / 2; grid-row: 2 / 3; }
.mo-d { grid-column: 2 / 3; grid-row: 2 / 3; }
.mo-e { grid-column: 1 / 2; grid-row: 3 / 4; }
.mo-f { grid-column: 2 / 4; grid-row: 3 / 5; }
.mo-g { grid-column: 4 / 5; grid-row: 3 / 4; }
.mo-h { grid-column: 1 / 2; grid-row: 4 / 5; border-radius: 50%; }

/* ============================================
   STATS CARDS
   ============================================ */
.stats { padding: 2rem 0; }
@media (min-width:1100px) { .stats { margin-top: 0; } }
.stats .wrapper { position: relative; }
@media (min-width:768px) { .stats .wrapper { padding-top: 80px; padding-bottom: 80px; } }

.stats__grid { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width:768px) {
  .stats__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
}

.stats__card {
  border-radius: 30px; padding: 2rem 1.5rem 60px;
  position: relative; display: flex; flex-wrap: wrap; justify-content: flex-start;
}
@media (min-width:768px) {
  .stats__card { border-radius: 45px; padding-bottom: 70px; }
}
.stats__card h3 { width: 100%; font-size: 3.5rem; margin: .5rem 0 1rem; }
@media (min-width:768px) { .stats__card h3 { font-size: 4.5rem; } }
@media (min-width:1100px) { .stats__card h3 { font-size: 5.5rem; } }
.stats__card p { font-size: .95rem; line-height: 1.6; margin: 0; }
@media (min-width:768px) { .stats__card p { font-size: 1.1rem; } }

.stats__card--warm { background-color: var(--accent-soft); color: #3D1E00; }
@media (min-width:768px) { .stats__card--warm { top: -60px; } }
.stats__card--neutral { background-color: #eee; color: #1a1a1a; }
.stats__card--cool { background-color: #FFE0CC; color: #3D1E00; }
@media (min-width:768px) { .stats__card--cool { top: 60px; } }

/* ============================================
   CONTRAST / DARK SECTION
   ============================================ */
.contrast { padding: 4rem 0; }
@media (min-width:768px) { .contrast { padding: 6rem 0; } }
@media (min-width:1100px) { .contrast { padding: 7rem 0; } }

.contrast--dark {
  background: #1A0800; color: #fff;
  border-radius: 50px; margin: 1rem;
}
@media (min-width:768px) { .contrast--dark { border-radius: 80px; margin: 2rem; } }

.contrast--dark .giant-title em { color: var(--accent); }

.cx { max-width: 960px; }
.cx-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.cx-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cx-row__a { color: rgba(255,255,255,.4); font-size: .95rem; line-height: 1.55; }
.cx-row__b { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.55; }

/* ---- 3D Comparison Cards ---- */
.cx3d {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1040px;
  perspective: 1200px;
}
.cx3d__vs {
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  color: rgba(255,255,255,.15);
  writing-mode: vertical-lr; text-orientation: mixed;
}
.cx3d__card {
  position: relative;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}
.cx3d__card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
}
.cx3d__card--usual {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  transform: rotateY(5deg) scale(.96);
}
.cx3d__card--usual:hover {
  transform: rotateY(2deg) scale(.98) translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,.35);
}
.cx3d__card--reed {
  background: rgba(255,107,0,.04);
  border: 1px solid rgba(255,107,0,.22);
  transform: rotateY(-5deg) scale(1.02);
  box-shadow:
    0 28px 64px -16px rgba(255,107,0,.18),
    0 0 100px -30px rgba(255,107,0,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.cx3d__card--reed::before {
  background: linear-gradient(155deg, rgba(255,107,0,.1) 0%, transparent 50%);
}
.cx3d__card--reed:hover {
  transform: rotateY(-2deg) scale(1.04) translateY(-6px);
  box-shadow:
    0 34px 80px -14px rgba(255,107,0,.26),
    0 0 120px -20px rgba(255,107,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.cx3d__label {
  display: flex; align-items: center; gap: .7rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .66rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.4rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cx3d__badge {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; flex: none;
}
.cx3d__badge--red {
  background: rgba(255,68,68,.1); color: #ff5555;
  border: 1px solid rgba(255,68,68,.22);
}
.cx3d__badge--accent {
  background: rgba(255,107,0,.12); color: #FF6B00;
  border: 1px solid rgba(255,107,0,.3);
  box-shadow: 0 0 14px rgba(255,107,0,.2);
}
.cx3d__items { display: flex; flex-direction: column; }
.cx3d__item {
  padding: .85rem 0 .85rem 1.7rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .93rem; line-height: 1.6;
  position: relative;
}
.cx3d__item:last-child { border-bottom: none; }
.cx3d__card--usual .cx3d__item { color: rgba(255,255,255,.35); }
.cx3d__card--usual .cx3d__item::before {
  content: '\00d7'; position: absolute; left: 0; top: .85rem;
  color: #ff5555; font-weight: 700; font-size: .95rem;
}
.cx3d__card--reed .cx3d__item { color: rgba(255,255,255,.88); }
.cx3d__card--reed .cx3d__item::before {
  content: '\2713'; position: absolute; left: 0; top: .85rem;
  color: #FF6B00; font-weight: 700; font-size: .9rem;
}
@media (max-width:767px) {
  .cx3d { grid-template-columns: 1fr; gap: 1rem; perspective: none; }
  .cx3d__vs { writing-mode: horizontal-tb; padding: .25rem 0; }
  .cx3d__card--usual, .cx3d__card--reed { transform: none; }
  .cx3d__card--usual:hover, .cx3d__card--reed:hover { transform: translateY(-4px); }
  .cx3d__card { padding: 1.5rem 1.3rem; }
}

/* ============================================
   BUILDS / SERVICES SECTION (scroll-pinned)
   ============================================ */
.builds { padding: 3rem 0 4rem; }
.builds__inner { display: grid; gap: 2rem; }
@media (min-width:1000px) {
  .builds { height: 420vh; padding: 0; }
  .builds__sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; align-items: center;
  }
  .builds__inner { grid-template-columns: minmax(0,4fr) minmax(0,7fr); gap: 4rem; align-items: center; width: 100%; }
  .builds__side { position: static; }
  .builds__stage { min-height: 520px; }
}
.builds .giant-title { margin-bottom: 1.75rem; }
.builds .giant-title em { color: var(--accent-deep); }

.bd-list { border-top: 1px solid rgba(61,30,0,.14); position: relative; }

.bd-bar { display: none; height: 3px; background: rgba(61,30,0,.12); border-radius: 100vw; overflow: hidden; margin-top: 1.25rem; }
.bd-bar__fill { display: block; height: 100%; width: 0; background: var(--accent); transition: width .2s linear; }
@media (min-width:1000px) { .bd-bar { display: block; } }

.bd-row {
  display: flex; align-items: baseline; gap: 1.1rem; width: 100%;
  background: none; border: 0; border-bottom: 1px solid rgba(61,30,0,.14);
  padding: 1.05rem .2rem; cursor: pointer; text-align: left;
  font-family: inherit; color: #7A5E42;
  transition: color .25s ease, padding-left .3s cubic-bezier(.16,1,.3,1);
}
.bd-row:hover { color: var(--accent); padding-left: .7rem; }
.bd-row.is-on { color: var(--accent); padding-left: .7rem; }
.bd-row__no {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .72rem; letter-spacing: .08em; opacity: .6; flex: none;
}
.bd-row__name { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
@media (min-width:768px) { .bd-row__name { font-size: 1.35rem; } }
.bd-row.is-on .bd-row__no { opacity: 1; }

.builds__stage { position: relative; min-height: 460px; perspective: 1500px; }

.bd-panel {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  background: var(--c, #3D1E00); color: #fff; border-radius: 30px; padding: 2.25rem 2rem;
  opacity: 0; pointer-events: none;
  transform-origin: 85% 50%;
  transform: rotateY(-9deg) rotateX(2.5deg) translateY(22px);
  transition: opacity .45s ease, transform .6s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 34px 60px -22px rgba(20,8,0,.5), 0 4px 14px rgba(20,8,0,.16);
}
.bd-panel::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 42%);
}
@media (min-width:768px) { .bd-panel { border-radius: 40px; padding: 3rem 2.75rem; } }
.bd-panel.is-on { opacity: 1; transform: rotateY(-9deg) rotateX(2.5deg); pointer-events: auto; }

.bd-panel__obj {
  display: block; width: 132px; margin-bottom: 1.4rem;
  animation: bdFloat 6.5s ease-in-out infinite;
  transform: translateZ(0);
  position: relative;
}
.bd-panel__obj::after {
  content: ''; position: absolute; inset: -20%; border-radius: 50%;
  background: radial-gradient(circle, var(--i, #FF6B00) 0%, transparent 70%);
  opacity: .1; pointer-events: none; z-index: -1;
  animation: bdGlow 6.5s ease-in-out infinite;
}
.bd-panel__art { display: block; width: 100%; height: auto; }
@keyframes bdFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(-1deg); }
  50%      { transform: translate3d(0,-14px,0) rotate(2deg); }
}
@keyframes bdGlow {
  0%, 100% { opacity: .1; transform: scale(1); }
  50%      { opacity: .18; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .bd-panel__obj { animation: none; } }
@media (min-width:768px) { .bd-panel__obj { width: 186px; } }
@media (min-width:1440px) { .bd-panel__obj { width: 210px; } }

.bd-panel h3 { color: #fff; font-size: 1.5rem; margin: 0 0 .8rem; line-height: 1.15; }
@media (min-width:768px) { .bd-panel h3 { font-size: 2.2rem; } }
.bd-panel p { color: rgba(255,255,255,.8); line-height: 1.8; font-size: 1.02rem; margin: 0 0 1.6rem; max-width: 52ch; }

@media (max-width:999px) {
  .builds__stage { min-height: 0; perspective: none; }
  .bd-panel { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto;
              margin-bottom: 1rem; box-shadow: 0 16px 30px -14px rgba(20,8,0,.35); }
  .bd-panel:not(.is-on) { display: none; }
}
@media (prefers-reduced-motion: reduce) { .bd-panel { transition: none; } }

/* ============================================
   MOSAIC (Gallery + Quotes)
   ============================================ */
.mosaic { padding: 4rem 0; }
@media (min-width:768px) { .mosaic { padding: 6rem 0; } }

.mosaic__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width:600px) { .mosaic__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:900px) { .mosaic__grid { grid-template-columns: 1fr 1fr 1fr; } }

.mo { border-radius: 22px; overflow: hidden; }
@media (min-width:768px) { .mo { border-radius: 28px; } }

.mo--photo { aspect-ratio: 4/3; background: #e5ddd0; }
.mo--photo img { width: 100%; height: 100%; object-fit: cover; }
.mo--tall { grid-row: span 2; }
.mo--tall.mo--photo { aspect-ratio: auto; }

.mo--quote {
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: space-between;
}
.mo--quote p {
  font-size: 1.1rem; line-height: 1.55; font-weight: 500; margin: 0;
}
@media (min-width:768px) { .mo--quote p { font-size: 1.2rem; } }
.mo--quote cite {
  display: block; margin-top: 1.25rem;
  font-size: .9rem; font-weight: 600; font-style: normal;
}
.mo--quote cite span {
  display: block; font-weight: 400; font-size: .78rem;
  margin-top: .2rem; opacity: .65;
}

.mo--warm { background: var(--accent-soft); color: #3D1E00; }
.mo--orange { background: #FFE0CC; color: #3D1E00; }

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section { padding: 4rem 0; }
@media (min-width:768px) { .process-section { padding: 6rem 0; } }
@media (min-width:1100px) { .process-section { padding: 7rem 0; } }

.process-intro {
  color: #7A5E42; font-size: 1.1rem; line-height: 1.7;
  max-width: 640px; margin-top: -1.5rem; margin-bottom: 2.5rem;
}

.phases { display: flex; flex-direction: column; gap: 1rem; }
.phase {
  background: #fff; border-radius: 28px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width:900px) {
  .phase { flex-direction: row; gap: 3rem; border-radius: 40px; padding: 2.5rem 3rem; }
  .phase__meta { flex: 0 0 22%; }
  .phase__body { flex: 1; }
}
.phase__meta { display: flex; flex-direction: column; gap: .4rem; }
.phase__num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
}
.phase__time { font-size: .82rem; color: #8B7355; font-weight: 500; }
.phase__body h3 { margin: 0 0 1rem; font-size: 1.6rem; }
@media (min-width:1100px) { .phase__body h3 { font-size: 2rem; } }
.phase__body > p { color: #7A5E42; line-height: 1.7; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 4rem 0; }
@media (min-width:768px) { .faq-section { padding: 6rem 0; } }

.faq-list { max-width: 860px; }

.faq-item {
  border-bottom: 1px solid rgba(61,30,0,.08);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1.25rem 0; gap: 1rem;
  font-size: 1.05rem; font-weight: 500; color: #3D1E00;
  text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.faq-q svg { flex-shrink: 0; width: 20px; height: 20px; transition: transform .3s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s ease;
}
.faq-item.is-open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p { color: #7A5E42; line-height: 1.7; font-size: .95rem; }

.faq-cta { text-align: center; padding: 2.5rem 0 0; }

/* ============================================
   CLIENT LOGOS / MARQUEE
   ============================================ */
.client-logos { padding: 2rem 0 3rem; }
.client-logos .wrapper {
  display: flex; flex-direction: column; align-items: center;
  padding-left: 0; padding-right: 0;
}

.logos-marquee { position: relative; overflow: hidden; width: 100%; }
.logos-marquee::before, .logos-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.logos-marquee::before { left: 0; background: linear-gradient(90deg, #F5F5F5, transparent); }
.logos-marquee::after { right: 0; background: linear-gradient(-90deg, #F5F5F5, transparent); }

.logos-rows { display: flex; flex-direction: column; gap: .5rem; width: 100%; }
.logos-marquee__track { display: flex; width: max-content; animation: marqueeScroll 40s linear infinite; }
.logos-marquee--rtl .logos-marquee__track { animation: marqueeScrollRev 46s linear infinite; }
.logos-marquee:hover .logos-marquee__track { animation-play-state: paused; }
.logos-marquee__set { display: flex; align-items: center; }

.logo-box {
  display: flex; align-items: center; justify-content: center;
  margin: .25rem; background-color: #fff; border-radius: 15px;
  width: 130px; height: 66px; flex-shrink: 0;
  padding: 14px 20px;
}
.logo-box img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: .55;
  transition: filter .3s, opacity .3s;
}
.logo-box:hover img { filter: grayscale(0%); opacity: 1; }
@media (min-width:768px) { .logo-box { width: 170px; height: 90px; padding: 18px 26px; } }

@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeScrollRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============================================
   CONTACT CTA ISLAND
   ============================================ */
.contact-cta { padding: 0; }

.contact-island {
  background: #1A0800; color: #fff;
  border-radius: 50px 50px 0 0;
  padding: 4rem 0 3rem;
}
@media (min-width:768px) {
  .contact-island { border-radius: 80px 80px 0 0; padding: 5rem 0 4rem; }
}

.contact-island .wrapper {
  display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width:900px) {
  .contact-island .wrapper { flex-direction: row; gap: 4rem; align-items: flex-start; }
}

.contact-cta__left { flex: 1.2; }
.contact-cta__left h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.contact-cta__left h2 em { color: var(--accent); }

.speak-pill {
  margin-bottom: 2rem;
}
.speak-pill p {
  color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.6;
}

.cta-points { margin-bottom: 2rem; }
.cta-points li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-points b { display: block; font-size: .95rem; margin-bottom: .35rem; }
.cta-points span { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.55; }

.cta-direct { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.cta-direct a {
  font-size: .88rem; color: rgba(255,255,255,.65);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.cta-direct a:hover { color: #fff; }

.booking { flex: 1; }
.booking__content {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 2rem;
}
@media (min-width:768px) { .booking__content { padding: 2.5rem; border-radius: 36px; } }
.booking__content h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.booking__content p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; margin-bottom: 1.5rem; }
.booking__alt {
  display: block; margin-top: 1rem;
  font-size: .82rem; color: rgba(255,255,255,.45);
  text-decoration: underline; text-underline-offset: 3px;
}
.booking__alt:hover { color: rgba(255,255,255,.7); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1A0800; color: #fff;
  padding: 0 0 2rem;
}

.site-footer__top {
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width:768px) {
  .site-footer__top { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-logo-mark {
  display: flex; align-items: stretch; gap: 0;
  font-family: "Inter", sans-serif;
  font-size: 2rem; line-height: 1;
}
.footer-logo-mark .logo-re { color: #fff; font-weight: 100; letter-spacing: -.01em; display: flex; align-items: center; }
.footer-logo-mark .logo-ed {
  display: flex; align-items: center; justify-content: center;
  background: #FF6B00; color: #fff; font-weight: 100;
  letter-spacing: -.01em; padding: 5px 6px 6px; margin-left: -1px;
}
.footer-tag { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; }

.site-footer__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width:768px) { .footer-nav { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.footer-nav h6 {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 1rem;
}
.footer-nav a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.6);
  margin-bottom: .6rem; transition: color .2s;
}
.footer-nav a:hover { color: #fff; }

.keep-in-touch {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width:768px) {
  .keep-in-touch { flex-direction: row; justify-content: space-between; align-items: center; }
}
.keep-in-touch__label {
  font-size: 1rem; font-weight: 500;
}
.keep-in-touch__label em { color: var(--accent); }
.keep-in-touch__links { display: flex; gap: 1.5rem; }
.keep-in-touch__links a {
  font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s;
}
.keep-in-touch__links a:hover { color: #fff; }
.keep-in-touch__links em { font-style: normal; font-family: "DM Serif Display", serif; }

.footer-copy {
  display: flex; flex-direction: column; gap: .75rem;
  padding-top: 2rem;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
@media (min-width:768px) {
  .footer-copy { flex-direction: row; justify-content: space-between; }
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-btn svg { width: 28px; height: 28px; }
.wa-close { display: none; }
.wa-widget.is-open .wa-open { display: none; }
.wa-widget.is-open .wa-close { display: block; }

.wa-popup {
  display: none; position: absolute; bottom: 76px; right: 0;
  width: 340px; border-radius: 20px; overflow: hidden;
  background: #fff; color: #1a1a1a;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: waIn .3s cubic-bezier(.16,1,.3,1);
}
.wa-widget.is-open .wa-popup { display: block; }
@keyframes waIn { from { opacity: 0; transform: translateY(10px) scale(.95); } to { opacity: 1; transform: none; } }

.wa-popup-header {
  background: #075E54; color: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-popup-header svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-popup-header span { font-weight: 600; font-size: .92rem; flex: 1; }
.wa-popup-close {
  background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}

.wa-popup-body { padding: 16px; background: #ECE5DD; min-height: 100px; }
.wa-bubble {
  background: #fff; border-radius: 0 12px 12px 12px;
  padding: 10px 14px; max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.wa-bubble-name { font-weight: 700; font-size: .78rem; color: #075E54; margin-bottom: 2px; }
.wa-bubble-msg { font-size: .88rem; line-height: 1.4; color: #1a1a1a; }
.wa-bubble-time { font-size: .68rem; color: #999; text-align: right; margin-top: 4px; }

.wa-popup-input {
  display: flex; padding: 10px; gap: 8px; background: #F0F0F0;
}
.wa-popup-input input {
  flex: 1; border: none; border-radius: 20px; padding: 10px 16px;
  font-size: .88rem; background: #fff; outline: none;
  font-family: inherit;
}
.wa-popup-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.wa-popup-send svg { width: 18px; height: 18px; }

/* ============================================
   SUBPAGE HERO (shared)
   ============================================ */
.introduction--sub { min-height: auto; }
@media (min-width:768px) { .introduction--sub { min-height: 64svh; max-height: 640px; } }
.introduction--sub .intro-inner { min-height: 380px; padding-top: 7rem; }
@media (min-width:768px) { .introduction--sub .intro-inner { min-height: 440px; padding-top: 8rem; } }
@media (min-width:1100px) { .introduction--sub .intro-inner { min-height: 500px; padding-top: 9rem; } }

.sub-kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .74rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-soft);
  margin: 0 0 1.25rem;
}
.introduction--sub .mainText h1 { max-width: 15ch; margin-bottom: 0; }
@media (min-width:1100px) { .introduction--sub .mainText h1 { font-size: 60px; } }
@media (min-width:1400px) { .introduction--sub .mainText h1 { font-size: 68px; } }

.intro-desc { opacity: 0; transform: translateY(50px); max-width: 520px; }
@media (min-width:1100px) { .intro-desc { margin-top: -6rem; margin-left: auto; max-width: 430px; } }
.introduction--sub .intro-desc { margin-top: 1rem; margin-left: 0; }
.intro-desc p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.65; }
.intro-desc p.lead-pill {
  background: var(--accent-soft); color: #3D1E00;
  padding: 1rem 1.25rem; border-radius: 22px;
  font-size: .92rem; line-height: 1.6; margin: 0; max-width: 620px;
}

/* ============================================
   GENERIC SUBPAGE SECTIONS
   ============================================ */
.section { padding: 4rem 0; }
@media (min-width:768px) { .section { padding: 6rem 0; } }
@media (min-width:1100px) { .section { padding: 7rem 0; } }
.section--tight { padding-top: 0; }

/* Service cards */
.svc-grid { display: flex; flex-direction: column; gap: 1rem; }
.svc {
  background: #fff; border-radius: 28px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width:900px) {
  .svc { flex-direction: row; gap: 3rem; border-radius: 40px; padding: 2.5rem 3rem; }
  .svc__head { flex: 0 0 30%; }
  .svc__body { flex: 1; }
}
.svc__head h3 { margin: 0; font-size: 1.5rem; }
@media (min-width:1100px) { .svc__head h3 { font-size: 1.9rem; } }
.svc__body p { color: #7A5E42; line-height: 1.7; margin: 0 0 1.25rem; }
.svc__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.svc__list li {
  position: relative; padding-left: 1.4rem; margin-bottom: .6rem;
  font-size: .9rem; color: #3D1E00; line-height: 1.55;
}
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.chip {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .7rem; padding: .35rem .7rem; border-radius: 100vw;
  background: var(--accent-soft); color: #8B7355; letter-spacing: .02em;
  display: inline-block;
}

/* ---- Dark Service Cards (v2) ---- */
.svc-grid2 {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width:768px) { .svc-grid2 { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

.svc2 {
  background: var(--sc, #3D1E00); border-radius: 28px; padding: 2rem;
  color: #fff; position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.svc2::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(155deg, rgba(255,255,255,.07) 0%, transparent 40%);
  pointer-events: none;
}
.svc2:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 28px 60px -16px rgba(0,0,0,.45);
}
@media (min-width:768px) { .svc2 { border-radius: 36px; padding: 2.5rem; } }

.svc2__icon { width: 72px; height: 72px; margin-bottom: 1.1rem; }
.svc2__icon svg { width: 100%; height: 100%; }
@media (min-width:768px) { .svc2__icon { width: 80px; height: 80px; } }

.svc2 h3 { font-size: 1.35rem; margin: 0 0 .7rem; color: #fff; }
@media (min-width:1100px) { .svc2 h3 { font-size: 1.6rem; } }
.svc2 p { color: rgba(255,255,255,.65); line-height: 1.7; margin: 0 0 1rem; font-size: .92rem; }

.svc2__list { list-style: none; margin: 0; padding: 0; }
.svc2__list li {
  position: relative; padding-left: 1.4rem; margin-bottom: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.55;
}
.svc2__list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--si, #FF6B00);
}

/* ---- Photo Strip ---- */
.photo-strip { padding: 1rem 0; overflow: hidden; }
.photo-strip__scroll {
  display: flex; gap: .75rem; padding: 0 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.photo-strip__scroll::-webkit-scrollbar { display: none; }
.photo-strip__scroll img {
  flex: none; width: 300px; height: 210px;
  object-fit: cover; border-radius: 20px; scroll-snap-align: start;
}
@media (min-width:768px) {
  .photo-strip__scroll img { width: 380px; height: 260px; border-radius: 24px; }
  .photo-strip__scroll { gap: 1rem; }
}

/* ---- Solution Cards ---- */
.sol-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width:768px) { .sol-grid { grid-template-columns: 1fr 1fr; } }

.sol-card {
  background: #fff; border-radius: 28px; padding: 2rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.sol-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--sol-c, #FF6B00);
}
.sol-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(170deg, rgba(0,0,0,.015) 0%, transparent 40%);
  pointer-events: none;
}
.sol-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 0 28px 60px -16px rgba(0,0,0,.12);
}
@media (min-width:768px) { .sol-card { border-radius: 36px; padding: 2.5rem; } }

.sol-card__chip {
  font-family: "JetBrains Mono", monospace;
  font-size: .65rem; padding: .3rem .65rem; border-radius: 100vw;
  background: color-mix(in srgb, var(--sol-c) 12%, transparent);
  color: var(--sol-c); letter-spacing: .04em;
  display: inline-block; text-transform: uppercase; font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--sol-c) 20%, transparent);
  margin-bottom: 1rem;
}
.sol-card__icon { width: 64px; height: 64px; margin-bottom: 1rem; }
.sol-card__icon svg { width: 100%; height: 100%; }

.sol-card h3 { font-size: 1.35rem; margin: 0 0 .7rem; }
@media (min-width:1100px) { .sol-card h3 { font-size: 1.6rem; } }
.sol-card p { color: #7A5E42; line-height: 1.7; margin: 0 0 1rem; font-size: .92rem; }

.sol-card__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.sol-card__list li {
  position: relative; padding-left: 1.4rem; margin-bottom: .5rem;
  font-size: .85rem; color: #3D1E00; line-height: 1.55;
}
.sol-card__list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sol-c, var(--accent));
}

/* Values / info cards */
.values { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width:800px) { .values { grid-template-columns: 1fr 1fr; } }
.value { background: #fff; border-radius: 28px; padding: 1.75rem; }
@media (min-width:768px) { .value { border-radius: 36px; padding: 2.25rem; } }
.value h4 { margin: 0 0 .85rem; font-size: 1.2rem; }
.value p { color: #7A5E42; line-height: 1.7; margin: 0; font-size: .92rem; }

/* Story / about layout */
.story { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width:900px) { .story { flex-direction: row; gap: 4rem; } }
.story__col { flex: 1; }
.story__col h2 {
  font-family: "DM Serif Display", serif; font-style: italic; font-weight: 400;
  font-size: 1.15rem; color: var(--accent-deep); margin-bottom: 1.25rem;
}
.story__col p { color: #7A5E42; line-height: 1.75; }
.story blockquote {
  margin: 1.75rem 0; padding: 1.25rem 1.5rem;
  background: var(--accent-soft); border-radius: 22px;
  font-size: 1.15rem; font-weight: 500; color: #3D1E00;
}
.story blockquote em { font-weight: 400; }

/* Contact form styles */
.contact-form {
  background: #fff; border-radius: 28px; padding: 2rem;
  max-width: 640px;
}
@media (min-width:768px) { .contact-form { border-radius: 40px; padding: 2.5rem 3rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: .5rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: #8B7355;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid rgba(61,30,0,.12); border-radius: 14px;
  font-family: inherit; font-size: .92rem; color: #3D1E00;
  background: #F5F5F5; outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================
   MOBILE OVERRIDES
   ============================================ */
@media (max-width:767px) {
  /* Hero */
  .intro-wrapper { border-radius: 0 0 50px 50px; padding: 8px; }
  .intro-bg { border-radius: 15px 15px 45px 45px; }
  .intro-inner { min-height: 420px; padding: 5.5rem 1.25rem 2rem; }
  .mainText h1 { text-align: left; max-width: none; }

  /* Subpage hero */
  .introduction--sub .intro-inner { min-height: 340px; padding-top: 6rem; }
  .sub-kicker { margin-bottom: .75rem; }
  .intro-desc p.lead-pill { font-size: .85rem; padding: .8rem 1rem; border-radius: 16px; }

  /* Intro section */
  .intro-section { padding: 3rem 0 2rem; }
  .intro-section .wrapper { gap: 2rem; }
  .intro-section__text p { font-size: 1rem; }
  .mosaicgrid { grid-template-rows: repeat(4, 64px); gap: .4rem; }

  /* Stats */
  .stats__card--warm, .stats__card--cool { top: 0; }
  .stats__card { padding: 1.5rem 1.25rem 1.75rem; border-radius: 24px; }
  .stats__card h3 { font-size: 2.8rem; margin: .25rem 0 .6rem; }
  .stats__card p { font-size: .88rem; }

  /* Contrast / dark section */
  .contrast { padding: 3rem 0; }
  .contrast--dark { border-radius: 32px; margin: .5rem; }

  /* Old cx table (fallback) */
  .cx { grid-template-columns: 1fr; }
  .cx-head { grid-template-columns: 1fr; gap: .5rem; }
  .cx-row { grid-template-columns: 1fr; gap: .75rem; }
  .cx-row__a { font-size: .85rem; }
  .cx-row__b { font-size: .85rem; padding-left: 1rem; border-left: 2px solid var(--accent); }

  /* Builds panels */
  .bd-panel { border-radius: 24px; padding: 1.75rem 1.5rem; }
  .bd-panel__obj { width: 88px; margin-bottom: 1rem; }
  .bd-panel h3 { font-size: 1.3rem; }
  .bd-panel p { font-size: .9rem; line-height: 1.65; margin-bottom: 1rem; }
  .bd-row__name { font-size: 1.05rem; }

  /* Gallery mosaic */
  .mosaic { padding: 3rem 0; }
  .mo--tall { grid-row: span 1; }
  .mo--photo { aspect-ratio: 16/10; }
  .mo--quote { padding: 1.5rem; }
  .mo--quote p { font-size: 1rem; }

  /* Process */
  .process-section { padding: 3rem 0; }
  .process-intro { font-size: 1rem; margin-bottom: 2rem; }
  .phase { padding: 1.5rem; border-radius: 22px; }
  .phase__body h3 { font-size: 1.3rem; margin-bottom: .6rem; }

  /* FAQ */
  .faq-section { padding: 3rem 0; }
  .faq-q { font-size: .95rem; padding: 1.1rem 0; }

  /* Contact CTA */
  .contact-island { padding: 3rem 0 2.5rem; border-radius: 32px 32px 0 0; }
  .contact-cta__left h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .cta-direct { flex-direction: column; gap: .75rem; }
  .cta-direct a { word-break: break-all; }
  .booking__content { padding: 1.5rem; border-radius: 22px; }
  .booking__content h3 { font-size: 1.2rem; }

  /* Footer */
  .footer-nav { gap: 1.5rem 1rem; padding: 2rem 0; }
  .footer-nav a { font-size: .82rem; margin-bottom: .45rem; }
  .keep-in-touch { gap: .75rem; padding: 1.5rem 0; }
  .footer-copy { padding-top: 1.5rem; }

  /* WhatsApp popup */
  .wa-popup { width: calc(100vw - 2rem); max-width: 340px; right: -8px; }

  /* Photo strip */
  .photo-strip__scroll img { width: 250px; height: 175px; border-radius: 16px; }
  .photo-strip__scroll { gap: .6rem; padding: 0 .75rem; }

  /* svc2 dark cards */
  .svc2 { padding: 1.5rem; border-radius: 22px; }
  .svc2__icon { width: 56px; height: 56px; margin-bottom: .8rem; }
  .svc2 h3 { font-size: 1.2rem; }
  .svc2 p { font-size: .88rem; }
  .svc2__list li { font-size: .82rem; }

  /* Solution cards */
  .sol-card { padding: 1.5rem; border-radius: 22px; }
  .sol-card__icon { width: 52px; height: 52px; margin-bottom: .8rem; }
  .sol-card h3 { font-size: 1.2rem; }
  .sol-card p { font-size: .88rem; }
  .sol-card__list li { font-size: .82rem; }

  /* Generic sections */
  .section { padding: 3rem 0; }

  /* Values / about cards */
  .value { padding: 1.5rem; border-radius: 22px; }

  /* Contact form */
  .contact-form { padding: 1.5rem; border-radius: 22px; }
}

/* ---- Extra-small screens (≤400px) ---- */
@media (max-width:400px) {
  .wrapper { padding: 0 16px; }

  .mainText h1 { font-size: 28px; }
  .giant-title { font-size: 1.65rem; }
  .title-pill { font-size: 1.35rem; }

  .mosaicgrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: .35rem;
  }
  .mo-a, .mo-b, .mo-c, .mo-d, .mo-e, .mo-f, .mo-g, .mo-h {
    grid-column: auto; grid-row: auto;
  }
  .mo-h { border-radius: 18px; }
  .mosaicgrid .tile { min-height: 72px; }

  .stats__card h3 { font-size: 2.2rem; }

  .cx3d__item { font-size: .85rem; padding: .7rem 0 .7rem 1.5rem; }
  .cx3d__card { padding: 1.25rem 1.1rem; border-radius: 18px; }
  .cx3d__label { font-size: .6rem; margin-bottom: 1rem; padding-bottom: .75rem; }

  .bd-panel__obj { width: 72px; }

  .photo-strip__scroll img { width: 220px; height: 155px; }

  .phase { padding: 1.25rem; }
  .phase__body h3 { font-size: 1.15rem; }

  .svc2 { padding: 1.25rem; }
  .sol-card { padding: 1.25rem; }

  .booking__content { padding: 1.25rem; }
  .contact-island { padding: 2.5rem 0 2rem; }
}

/* GSAP animates hero on desktop — start collapsed */
@media (min-width:768px) {
  .intro-wrapper { border-radius: 0; padding: 0; }
  .intro-bg { border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .logos-marquee__track { animation: none; }
  .onScreen { opacity: 1; transform: none; }
}
