/* ══════════════════════════════════════════════════════
   LESLEY'S UPHOLSTERY — styles.css
   Palm Springs Mid-Century Modern · Red, White & Black
══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --red: #D94F38;
  --red2: #E8614A;
  --red-pale: #FDECEA;
  --red-mid: #F5C4BC;
  --white: #FFFFFF;
  --off: #FDFAF7;
  --text: #2A1F1A;
  --black: #1e1e1e;
  --mid: #705848;
  --light: #A8948A;
  --gold: #E4A832;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  -webkit-tap-highlight-color: transparent;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 56px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--red-mid);
  transition: box-shadow 0.3s, padding 0.25s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(15, 15, 15, 0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--red);
  font-weight: 900;
  line-height: 0.94;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-size: 11px !important;
  box-shadow: 0 4px 18px rgba(217, 79, 56, 0.3);
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--red2) !important;
  box-shadow: 0 6px 24px rgba(217, 79, 56, 0.4) !important;
}

.nav-logo-text {
  display: inline-block;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--red-mid);
  background: rgba(255,255,255,.96);
  border-radius: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.nav-toggle:hover {
  border-color: var(--red);
  background: var(--red-pale);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid var(--red-mid);
  box-shadow: -18px 0 50px rgba(15,15,15,.10);
  padding: 18px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(104%);
  transition: transform 0.28s ease;
  z-index: 450;
  overflow-y: auto;
}

.nav-panel.open {
  transform: translateX(0);
}

.nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--red-mid);
}

.nav-panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.nav-panel-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-close {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--red-mid);
  background: var(--white);
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-panel-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-panel-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 15px 14px;
  border: 1px solid rgba(217,79,56,.14);
  background: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-panel-links a:hover {
  background: var(--red-pale);
  border-color: var(--red-mid);
  color: var(--red);
}

.nav-panel-cta {
  background: var(--red) !important;
  color: white !important;
  border-color: var(--red) !important;
}

body.nav-open {
  overflow: hidden;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-right {
  display: block;
  min-height: 100vh;
  background: url('../images/IMG_0711.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  background-color: #f7f2ee;
  animation: hIn 0.9s 0.35s ease both;
}

.sun-wrap {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
}

.hero-tile-strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: repeating-linear-gradient(
    180deg,
    var(--red) 0px, var(--red) 40px,
    var(--red-pale) 40px, var(--red-pale) 80px
  );
  opacity: 0.35;
  z-index: 3;
}

.hero-left {
  padding: 140px 48px 80px 80px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.eyebrow-gem {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.94;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-h1 .it {
  font-style: italic;
  color: var(--red);
  display: block;
}

.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(44px, 5.2vw, 72px);
  color: var(--red);
  line-height: 1.05;
  display: block;
  margin-bottom: 30px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.82;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(to right, var(--white), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── BUTTONS (shared) ── */
.btn-solid {
  background: var(--red);
  color: white;
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 6px 22px rgba(217, 79, 56, 0.32);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.btn-solid:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217, 79, 56, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 13px 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  border: 2px solid var(--red);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--red-pale);
}

/* Trust strip */
.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--red-mid);
  display: flex;
  gap: 0;
  max-width: 380px;
}

.trust-block {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.trust-block + .trust-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--red-mid);
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.trust-label {
  font-size: 10px;
  color: var(--light);
  letter-spacing: 1px;
  line-height: 1.4;
  margin-top: 4px;
  font-weight: 700;
}

/* ── KEYFRAMES ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ping {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

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

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

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee {
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  clip-path: polygon(
    0 8px,2% 0,4% 8px,6% 0,8% 8px,10% 0,12% 8px,14% 0,16% 8px,18% 0,
    20% 8px,22% 0,24% 8px,26% 0,28% 8px,30% 0,32% 8px,34% 0,36% 8px,38% 0,
    40% 8px,42% 0,44% 8px,46% 0,48% 8px,50% 0,52% 8px,54% 0,56% 8px,58% 0,
    60% 8px,62% 0,64% 8px,66% 0,68% 8px,70% 0,72% 8px,74% 0,76% 8px,78% 0,
    80% 8px,82% 0,84% 8px,86% 0,88% 8px,90% 0,92% 8px,94% 0,96% 8px,98% 0,
    100% 8px,100% 100%,0 100%
  );
  padding-top: 20px;
  padding-bottom: 14px;
  margin-top: -2px;
}

.mtrack {
  display: inline-block;
  animation: scroll 26s linear infinite;
}

.mtrack span {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
  margin: 0 24px;
}

.mtrack .sep {
  color: var(--red);
  margin: 0 8px;
}

/* ══════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════ */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.gem-sm {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.eyebrow-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 16px;
}

.sec-title em {
  font-style: italic;
  color: var(--red);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 100px 72px 120px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.srv-diamond-bg {
  position: absolute;
  right: -160px;
  top: 50%;
  width: 500px;
  height: 500px;
  background: var(--red-pale);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.srv-diamond-inner {
  position: absolute;
  right: -120px;
  top: 50%;
  width: 380px;
  height: 380px;
  background: var(--off);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.srv-pattern-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0, var(--red) 20px,
    var(--red-pale) 20px, var(--red-pale) 40px
  );
}

.srv-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.srv-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  position: relative;
  z-index: 2;
  background: var(--red-mid);
}

.scard {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 0;
}

.scard:hover {
  background: var(--red);
  z-index: 2;
}

.scard::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent var(--red-pale) transparent transparent;
  transition: border-color 0.3s;
}

.scard:hover::before {
  border-color: transparent rgba(255,255,255,.2) transparent transparent;
}

.scard-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(217,79,56,.06);
  line-height: 1;
  transition: color 0.3s;
}

.scard:hover .scard-num {
  color: rgba(255,255,255,.12);
}

.scard-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--red-pale);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: background 0.3s;
}

.scard:hover .scard-icon-wrap {
  background: rgba(255,255,255,.25);
}

.scard-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.scard:hover .scard-name {
  color: white;
}

.scard-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid);
  transition: color 0.3s;
}

.scard:hover .scard-desc {
  color: rgba(255,255,255,.82);
}

.scard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.3s;
}

.scard-arrow::after {
  content: '→';
}

.scard:hover .scard-arrow {
  color: rgba(255,255,255,.8);
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  background: var(--black);
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background:
    linear-gradient(135deg, var(--red) 33.33%, transparent 33.33%) 0 0,
    linear-gradient(225deg, var(--red) 33.33%, transparent 33.33%) 0 0;
  background-size: 24px 12px;
}

.stats-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12px;
  background:
    linear-gradient(315deg, var(--red) 33.33%, transparent 33.33%) 0 0,
    linear-gradient(45deg, var(--red) 33.33%, transparent 33.33%) 0 0;
  background-size: 24px 12px;
}

.stats-sun-l,
.stats-sun-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  opacity: 0.06;
}

.stats-sun-l { left: -60px; }
.stats-sun-r { right: -60px; }

.stats-inner {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 2;
}

.stat-col {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  position: relative;
}

.stat-col + .stat-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background: repeating-linear-gradient(
    180deg, var(--red) 0, var(--red) 6px, transparent 6px, transparent 12px
  );
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-unit {
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--red-mid);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.45);
  margin-top: 8px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  padding: 120px 72px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: var(--off);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
  z-index: 0;
}

.about-left {
  position: relative;
  z-index: 2;
}

.about-frame {
  width: 100%;
  max-width: 480px;
  position: relative;
  margin: 0 auto;
}

.about-arch-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: url('../images/patio.png') center 30% / cover no-repeat;
  border-radius: 180px 180px 0 0;
  position: relative;
  overflow: hidden;
}

.about-arch-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 1px, transparent 44px);
}

.about-arch-base {
  position: absolute;
  bottom: 0;
  left: -4px;
  right: -4px;
  height: 28px;
  background: var(--white);
  clip-path: polygon(
    0% 100%, 2% 0%, 4% 100%, 6% 0%, 8% 100%, 10% 0%, 12% 100%, 14% 0%,
    16% 100%, 18% 0%, 20% 100%, 22% 0%, 24% 100%, 26% 0%, 28% 100%, 30% 0%,
    32% 100%, 34% 0%, 36% 100%, 38% 0%, 40% 100%, 42% 0%, 44% 100%, 46% 0%,
    48% 100%, 50% 0%, 52% 100%, 54% 0%, 56% 100%, 58% 0%, 60% 100%, 62% 0%,
    64% 100%, 66% 0%, 68% 100%, 70% 0%, 72% 100%, 74% 0%, 76% 100%, 78% 0%,
    80% 100%, 82% 0%, 84% 100%, 86% 0%, 88% 100%, 90% 0%, 92% 100%, 94% 0%,
    96% 100%, 98% 0%, 100% 100%
  );
}

.about-tile-border {
  position: absolute;
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
  border: 14px solid transparent;
  border-image:
    repeating-linear-gradient(
      45deg,
      var(--red-pale) 0, var(--red-pale) 10px,
      var(--red-mid) 10px, var(--red-mid) 20px
    ) 14;
  border-radius: 190px 190px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.about-float-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: var(--white);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(15,15,15,.12);
  border-top: 4px solid var(--red);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  animation: float 5s ease-in-out infinite;
}

.about-float-badge .b-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.about-float-badge .b-txt {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 800;
}

.about-dot-grid {
  position: absolute;
  top: 20px;
  left: -30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--red-mid) 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.7;
}

.about-logo-watermark {
  position: absolute;
  bottom: 50px;
  left: -20px;
  width: 90px;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}

.about-logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(217,79,56,.2));
}

.about-right {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 16px;
}

.about-sig {
  font-family: 'Dancing Script', cursive;
  font-size: 46px;
  color: var(--red);
  margin-top: 24px;
  display: block;
}

.creds {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cred {
  background: var(--off);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--red);
}

.cred-ico {
  width: 36px;
  height: 36px;
  background: var(--red-pale);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.cred-t {
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.4;
}

.cred-s {
  font-size: 10px;
  color: var(--light);
}

/* ══════════════════════════════════════
   WHY
══════════════════════════════════════ */
.why {
  padding: 120px 72px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.why-sun-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.06;
  pointer-events: none;
}

.why-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    180deg, var(--red) 0, var(--red) 30px, transparent 30px, transparent 60px
  );
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wcard {
  background: var(--white);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  min-width: 0;
}

.wcard:hover {
  border-bottom-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15,15,15,.08);
}

.wcard::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent var(--red-pale) transparent transparent;
  transition: border-color 0.3s;
}

.wcard:hover::before {
  border-color: transparent var(--red-mid) transparent transparent;
}

.wcard-icon {
  width: 44px;
  height: 44px;
  background: var(--red-pale);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: background 0.3s;
}

.wcard:hover .wcard-icon {
  background: var(--red-mid);
}

.wcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.wcard-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--light);
}

.wcard.span2 {
  grid-column: span 2;
  background: var(--red);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 3px solid rgba(255,255,255,.2) !important;
}

.wcard.span2::before {
  border-color: transparent rgba(255,255,255,.15) transparent transparent !important;
}

.wcard.span2 .wcard-icon {
  background: rgba(255,255,255,.2);
}

.wcard.span2 .wcard-title {
  color: white;
}

.wcard.span2 .wcard-text {
  color: rgba(255,255,255,.72);
}

/* ══════════════════════════════════════
   WHY CAROUSEL
══════════════════════════════════════ */
.why-carousel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.wc-main {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--red-pale);
}

.wc-slides {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.wc-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.wc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,15,15,.7);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.wc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.92);
  border: none;
  cursor: pointer;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  font-size: 20px;
  color: var(--red);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.wc-btn:hover {
  background: white;
}

.wc-prev { left: 12px; }
.wc-next { right: 12px; }

.wc-counter {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
  background: rgba(15,15,15,.5);
  padding: 4px 10px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.wc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.wc-dot {
  width: 8px;
  height: 8px;
  background: var(--red-mid);
  transform: rotate(45deg);
  cursor: pointer;
  transition: background 0.2s;
}

.wc-dot.active {
  background: var(--red);
}

.wc-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.wc-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: all 0.2s;
}

.wc-thumb.active {
  border-color: var(--red);
  opacity: 1;
}

.wc-thumb:hover {
  opacity: 1;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews {
  padding: 120px 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 44px;
  font-family: 'Playfair Display', serif;
  font-size: 320px;
  font-weight: 900;
  color: rgba(217,79,56,.05);
  line-height: 1;
  pointer-events: none;
}

.reviews-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0, var(--red) 16px,
    var(--red-pale) 16px, var(--red-pale) 32px
  );
}

.rev-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.rev-header .eyebrow-row {
  justify-content: center;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--red-mid);
  position: relative;
  z-index: 2;
}

.rcard {
  background: var(--white);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  min-width: 0;
}

.rcard:hover {
  transform: translateY(-3px);
}

.rcard::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--red-pale) transparent transparent;
}

.rcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 15px;
  height: 15px;
  background: var(--red);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.rcard-q {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 24px;
}

.rcard-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.5px;
}

.rcard-loc {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 3px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 120px 72px;
  background: var(--off);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.c-arch {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 180px;
  height: 240px;
  border-radius: 90px 90px 0 0;
  background: var(--red-pale);
  z-index: 0;
  border: 2px solid var(--red-mid);
  border-bottom: none;
}

.c-sun {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.06;
  z-index: 0;
}

.c-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background:
    linear-gradient(135deg, var(--red) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, var(--red) 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, var(--red) 25%, transparent 25%);
  background-size: 20px 8px;
  background-color: var(--red-pale);
}

.c-left,
.c-right {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.c-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 36px;
  color: var(--black);
}

.c-heading em {
  font-style: italic;
  color: var(--red);
}

.c-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.ci {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red-pale);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
}

.ci-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 800;
  margin-bottom: 3px;
}

.ci-val {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

a.ci-val:hover {
  color: var(--red);
}

.open-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red-pale);
  border: 1.5px solid var(--red-mid);
  padding: 9px 20px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  width: fit-content;
  max-width: 100%;
}

.opulse {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: ping 0.8s ease 0s infinite alternate;
}

.otext {
  font-size: 11px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.c-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--black);
  margin-bottom: 22px;
}

.fg {
  margin-bottom: 13px;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--red-mid);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,79,56,.08);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--light);
}

.fg textarea {
  min-height: 108px;
  resize: vertical;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 56px 72px 36px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.02);
  transform: rotate(45deg);
}

footer::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,.015);
  transform: rotate(45deg);
}

.ft-zig {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background:
    linear-gradient(135deg, var(--red) 33.33%, transparent 33.33%) 0 0,
    linear-gradient(225deg, var(--red) 33.33%, transparent 33.33%) 0 0;
  background-size: 20px 10px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
  padding-top: 14px;
  position: relative;
  z-index: 2;
}

.ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ft-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  
  flex-shrink: 0;
}

.ft-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: var(--red);
  display: block;
  text-decoration: none;
}

.ft-brand p {
  font-size: 13px;
  line-height: 1.78;
  color: rgba(255,255,255,.35);
  max-width: 200px;
}

.ft-col-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-weight: 800;
  margin-bottom: 16px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}

.ft-links a:hover {
  color: var(--red);
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.ft-copy {
  font-size: 11px;
  color: rgba(255,255,255,.18);
  letter-spacing: 0.5px;
}

.ft-social {
  display: flex;
  gap: 8px;
}

.soc {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 800;
  transition: all 0.2s;
}

.soc:hover {
  background: var(--red);
  color: white;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-left > * { animation: hIn 0.75s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.06s; }
.hero-left > *:nth-child(2) { animation-delay: 0.18s; }
.hero-left > *:nth-child(3) { animation-delay: 0.28s; }
.hero-left > *:nth-child(4) { animation-delay: 0.38s; }
.hero-left > *:nth-child(5) { animation-delay: 0.48s; }
.hero-left > *:nth-child(6) { animation-delay: 0.58s; }

/* ══════════════════════════════════════
   LARGE TABLET
══════════════════════════════════════ */
@media (max-width: 1200px) {
  nav {
    padding: 10px 30px;
  }

  .hero-left {
    padding: 130px 34px 72px 42px;
  }

  .services,
  .about,
  .why,
  .reviews,
  .contact,
  footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .stats-band {
    padding-left: 34px;
    padding-right: 34px;
  }

  .why-inner {
    gap: 44px;
  }

  .contact {
    gap: 50px;
  }

  .ft-top {
    gap: 34px;
  }
}

/* ══════════════════════════════════════
   TABLET
══════════════════════════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 10px 18px;
  }

  .nav-links {
  display: none;
}

.nav-toggle {
  display: inline-flex;
}

.nav-logo {
  max-width: calc(100% - 60px);
}

.nav-logo-text {
  display: inline-block;
  font-size: 22px;
  line-height: 0.96;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
}

  .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 118px 24px 64px;
    min-height: auto;
  }

  .sun-wrap {
    width: 420px;
    height: 420px;
    top: -70px;
    left: -120px;
    opacity: 0.85;
  }

  .hero-h1 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .hero-script {
    font-size: clamp(40px, 9vw, 62px);
  }

  .hero-sub {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-btns {
    gap: 12px;
  }

  .hero-trust {
    max-width: 100%;
  }

  .services,
  .about,
  .why,
  .reviews,
  .contact {
    padding: 82px 24px;
  }

  .stats-band {
    padding: 44px 24px;
  }

  footer {
    padding: 52px 24px 34px;
  }

  .srv-intro,
  .why-inner,
  .about,
  .contact,
  .ft-top {
    grid-template-columns: 1fr;
  }

  .srv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .wcard.span2 {
    grid-column: auto;
    flex-direction: column;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .stat-col + .stat-col::before {
    display: none;
  }

  .stats-sun-l,
  .stats-sun-r {
    width: 180px;
    height: 180px;
  }

  .about-left {
    order: 1;
  }

  .about-right {
    order: 2;
  }

  .about-frame {
    max-width: 420px;
  }

  .about-float-badge {
    right: -10px;
  }

  .why-sun-bg {
    width: 340px;
    height: 340px;
    right: -120px;
  }

  .wc-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  .c-arch {
    right: 30px;
    width: 140px;
    height: 190px;
  }

  .c-sun {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -70px;
  }

  .ft-brand p {
    max-width: none;
  }
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 10px 14px;
  }

 .nav-logo {
  gap: 8px;
  max-width: calc(100% - 56px);
}

.nav-logo-text {
  font-size: 18px;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
}

.nav-panel {
  width: 100%;
  max-width: 100%;
  padding: 16px 16px 24px;
}

  .hero-left {
    padding: 108px 18px 56px;
  }

  .hero-tile-strip {
    width: 8px;
    opacity: 0.28;
  }

  .sun-wrap {
    width: 320px;
    height: 320px;
    top: -44px;
    left: -120px;
    opacity: 0.7;
  }

  .hero-eyebrow {
    gap: 8px;
    margin-bottom: 20px;
  }

  .eyebrow-text,
  .eyebrow-label {
    letter-spacing: 2px;
  }

  .hero-h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.96;
  }

  .hero-script {
    font-size: clamp(38px, 10vw, 56px);
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-solid,
  .btn-outline {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .hero-trust {
    margin-top: 34px;
    padding-top: 22px;
  }

  .trust-num {
    font-size: 24px;
  }

  .trust-label {
    font-size: 9px;
  }

  .marquee {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .mtrack span {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin: 0 16px;
  }

  .services,
  .about,
  .why,
  .reviews,
  .contact {
    padding: 72px 18px;
  }

  .stats-band {
    padding: 38px 18px;
  }

  footer {
    padding: 46px 18px 28px;
  }

  .sec-title {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.08;
  }

  .srv-intro {
    gap: 18px;
    margin-bottom: 34px;
  }

  .srv-intro p {
    font-size: 14px;
    line-height: 1.72;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .scard {
    padding: 30px 22px 34px;
  }

  .scard-num {
    font-size: 50px;
    right: 14px;
    bottom: 10px;
  }

  .scard-name {
    font-size: 18px;
  }

  .scard-desc {
    font-size: 13px;
  }

  .srv-diamond-bg,
  .srv-diamond-inner {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-col {
    padding: 10px 8px;
  }

  .stat-big {
    font-size: clamp(36px, 12vw, 54px);
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .stats-sun-l,
  .stats-sun-r {
    display: none;
  }

  .about {
    gap: 24px;
  }

  .about-stripe {
    left: 0;
    width: 100%;
    clip-path: none;
    opacity: 0.7;
  }

  .about-frame {
    max-width: 320px;
  }

  .about-arch-img {
    border-radius: 130px 130px 0 0;
  }

  .about-tile-border {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-width: 10px;
    border-radius: 140px 140px 0 0;
  }

  .about-float-badge {
    right: -6px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .about-float-badge .b-num {
    font-size: 24px;
  }

  .about-float-badge .b-txt {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .about-dot-grid,
  .about-logo-watermark {
    display: none;
  }

  .about-body {
    font-size: 15px;
    line-height: 1.72;
  }

  .about-sig {
    font-size: 38px;
    margin-top: 16px;
  }

  .creds {
    gap: 10px;
    margin-top: 18px;
  }

  .cred {
    width: 100%;
    padding: 13px 14px;
  }

  .why {
    padding-top: 72px;
  }

  .why-stripe {
    width: 6px;
  }

  .why-inner {
    gap: 26px;
  }

  .why-copy p {
    font-size: 15px;
    line-height: 1.72;
  }

  .why-sun-bg {
    width: 240px;
    height: 240px;
    right: -110px;
    opacity: 0.04;
  }

  .wcard {
    padding: 20px 18px;
  }

  .wcard-title {
    font-size: 15px;
  }

  .wcard-text {
    font-size: 12px;
  }

  .wc-main {
    aspect-ratio: 1 / 1.05;
  }

  .wc-caption {
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 1.2px;
    line-height: 1.45;
  }

  .wc-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .wc-prev { left: 8px; }
  .wc-next { right: 8px; }

  .wc-counter {
    top: 10px;
    left: 10px;
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  .wc-thumbs {
    gap: 4px;
  }

  .reviews::before {
    font-size: 180px;
    left: 10px;
    top: 0;
  }

  .rev-header {
    margin-bottom: 34px;
  }

  .rcard {
    padding: 28px 20px 30px;
  }

  .rcard-q {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .contact {
    gap: 30px;
  }

  .c-heading {
    margin-bottom: 24px;
    font-size: clamp(30px, 11vw, 44px);
  }

  .c-info {
    gap: 16px;
    margin-bottom: 24px;
  }

  .ci {
    gap: 12px;
  }

  .ci-icon {
    width: 40px;
    height: 40px;
  }

  .ci-val {
    font-size: 14px;
  }

  .open-chip {
    padding: 9px 14px;
  }

  .otext {
    font-size: 10px;
  }

  .c-form-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .fg input,
  .fg textarea,
  .fg select {
    padding: 12px 14px;
    font-size: 16px; /* helps iOS zoom issues */
  }

  .fg textarea {
    min-height: 120px;
  }

  .c-arch {
    width: 92px;
    height: 128px;
    right: 14px;
  }

  .c-sun {
    width: 170px;
    height: 170px;
    left: -55px;
    bottom: -55px;
  }

  .ft-top {
    gap: 26px;
    margin-bottom: 28px;
  }

  .ft-logo-wrap {
    gap: 10px;
    margin-bottom: 10px;
  }

  .ft-logo-img {
    width: 44px;
    height: 44px;
  }

  .ft-logo {
    font-size: 30px;
  }

  .ft-brand p,
  .ft-links a {
    font-size: 12px;
  }

  .ft-bottom {
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .soc {
    width: 32px;
    height: 32px;
  }
}

/* ══════════════════════════════════════
   SMALL MOBILE
══════════════════════════════════════ */
@media (max-width: 560px) {
  .hero-left {
    padding: 102px 16px 50px;
  }

  .hero-h1 {
    font-size: clamp(38px, 12.5vw, 52px);
  }

  .hero-script {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 14px 0;
  }

  .trust-block {
    flex: 0 0 50%;
    padding: 0 6px;
  }

  .trust-block + .trust-block::before {
    display: none;
  }

  .services,
  .about,
  .why,
  .reviews,
  .contact {
    padding: 64px 16px;
  }

  .stats-band {
    padding: 34px 16px;
  }

  footer {
    padding: 42px 16px 24px;
  }

  .sec-title {
    font-size: clamp(28px, 10vw, 38px);
  }

  .eyebrow-text,
  .eyebrow-label {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .scard {
    padding: 26px 18px 30px;
  }

  .scard-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .about-frame {
    max-width: 270px;
  }

  .about-arch-img {
    border-radius: 110px 110px 0 0;
  }

  .about-tile-border {
    border-radius: 120px 120px 0 0;
  }

  .about-sig {
    font-size: 34px;
  }

  .wc-main {
    aspect-ratio: 1 / 1.12;
  }

  .wc-caption {
    font-size: 8.5px;
    letter-spacing: 1px;
  }

  .wc-thumbs {
    display: none;
  }

  .reviews::before {
    font-size: 130px;
    top: 14px;
  }

  .rcard {
    padding: 24px 16px 26px;
  }

  .rcard-q {
    font-size: 13.5px;
  }

  .c-heading {
    font-size: clamp(28px, 10vw, 38px);
  }

  .ci-val {
    font-size: 13.5px;
  }

  .ft-logo {
    font-size: 27px;
  }

  .ft-copy {
    font-size: 10px;
  }
}

/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════
   MOBILE OPTIMIZATION PATCH
══════════════════════════════════════ */

/* Better viewport handling on mobile browsers */
.hero,
.hero-right,
.nav-panel {
  min-height: 100vh;
}

@supports (min-height: 100svh) {
  .hero,
  .hero-right,
  .nav-panel {
    min-height: 100svh;
  }
}

@supports (min-height: 100dvh) {
  .hero,
  .hero-right,
  .nav-panel {
    min-height: 100dvh;
  }
}

/* Drawer backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 430;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Better mobile menu ergonomics */
.nav-panel {
  padding-bottom: max(26px, env(safe-area-inset-bottom));
}

.nav-panel-links a,
.nav-panel-cta,
.nav-close,
.nav-toggle,
.btn-solid,
.btn-outline {
  min-height: 44px;
}

/* Better visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Prevent long text from causing layout squeeze */
.nav-logo-text,
.scard-name,
.wcard-title,
.ft-logo {
  overflow-wrap: anywhere;
}

/* Tone down hover-only behavior on touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn-solid:hover,
  .btn-outline:hover,
  .scard:hover,
  .wcard:hover,
  .nav-panel-links a:hover,
  .nav-cta:hover {
    transform: none;
    box-shadow: inherit;
    background: inherit;
  }

  .scard:hover {
    background: var(--white);
  }

  .scard:hover .scard-name {
    color: var(--black);
  }

  .scard:hover .scard-desc {
    color: var(--mid);
  }

  .scard:hover .scard-arrow {
    color: var(--red);
  }

  .scard:hover .scard-num {
    color: rgba(217,79,56,.06);
  }

  .scard:hover .scard-icon-wrap {
    background: var(--red-pale);
  }
}

/* Tablet and below */
@media (max-width: 960px) {
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 0;
  }

  .trust-block + .trust-block::before {
    display: none;
  }

  .btn-solid,
  .btn-outline {
    width: 100%;
    max-width: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  nav {
    padding:
      max(10px, env(safe-area-inset-top))
      14px
      10px;
  }

  .nav-logo {
    align-items: center;
  }

  .nav-logo-text {
    font-size: 17px;
    line-height: 1;
  }

  .hero-left {
    padding:
      calc(94px + env(safe-area-inset-top))
      18px
      56px;
  }

  .hero-btns {
    width: 100%;
  }

  .btn-solid,
  .btn-outline {
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 1.4px;
  }

  .srv-intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .scard {
    padding: 28px 20px 34px;
  }

  .scard-num {
    font-size: 48px;
    right: 14px;
    bottom: 12px;
  }

  .why-grid {
    gap: 10px;
  }

  .wc-btn {
    width: 42px;
    height: 42px;
  }

  .mtrack {
    animation-duration: 34s;
  }
}

/* Small phones */
@media (max-width: 560px) {
  .nav-logo-text {
    font-size: 16px;
  }

  .hero-left {
    padding:
      calc(88px + env(safe-area-inset-top))
      16px
      48px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-block {
    padding: 0;
  }

  .trust-label br {
    display: none;
  }

  .sec-title {
    line-height: 1.12;
  }

  .eyebrow-text,
  .eyebrow-label {
    letter-spacing: 1.4px;
  }

  .marquee {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .mtrack span {
    letter-spacing: 2px;
    margin: 0 14px;
  }

  .wc-counter {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mtrack {
    animation: none !important;
  }
}