/* ═══════════════════════════════════════════
   BIDDCO — Futura fonts (exact match from Tiny Villa)
═══════════════════════════════════════════ */
@font-face {
  font-family: 'FuturaExtraBlack';
  src: url('fonts/futura-extra-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'FuturaXBlk';
  src: url('fonts/futura-xblk-bt.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'FuturaHeavy';
  src: url('fonts/futura-heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'FuturaBold';
  src: url('fonts/futura-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* ═══════════════════════════════════════════
   BIDDCO — Base reset & custom properties
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
}
*::-webkit-scrollbar { display: none; }

:root {
  --black:   #000000;
  --white:   #F0F0F0;
  --gray-bg: #D4D4D0;
  --mid-gray:#A0A09C;
  --dark-section: #0f0f0e;
  --yellow: #FFC000;
  --font-display: 'FuturaExtraBlack', 'FuturaXBlk', sans-serif;
  --font-heavy:   'FuturaHeavy', sans-serif;
  --font-bold:    'FuturaBold', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Abhaya Libre', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--gray-bg);
  color: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;   /* fallback */
  height: 100lvh;  /* large viewport — always covers, no URL-bar gap */
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  transition: width 0.1s linear;
}
.loader-pct {
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   3D LAYER — wrapper clips edges
   #r3f-root hosts the React Three Fiber canvas
═══════════════════════════════════════════ */
#canvas-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;   /* fallback */
  height: 100lvh;  /* large viewport — always covers the visible area, no URL-bar gap */
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
#r3f-root {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Film grain ──────────────────────────────
   Animated SVG turbulence blended over the canvas.
   Tune: --grain-opacity (strength) + blend-mode below. */
.grain-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.16;            /* ← grain strength */
  mix-blend-mode: overlay;  /* try 'soft-light' for a gentler look */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: grain-flicker 0.55s steps(5) infinite;
  will-change: transform;
}
@keyframes grain-flicker {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-8%, 4%); }
  40%  { transform: translate(6%, -8%); }
  60%  { transform: translate(-4%, 6%); }
  80%  { transform: translate(8%, -4%); }
  100% { transform: translate(0, 0); }
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  pointer-events: none;
}
#main-nav .nav-logo,
#main-nav .nav-cta {
  pointer-events: all;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: invert(0);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 3px;
}
.nav-cta .arrow {
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   CANVAS ZONES — scroll space + sticky content
═══════════════════════════════════════════ */
.canvas-zone {
  position: relative;
  height: 400vh; /* scroll distance per zone */
  z-index: 1;
}
.footer-zone {
  height: 300vh;
}
.sticky-layer {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SECTION 1 — HERO CONTENT
═══════════════════════════════════════════ */
.hero-content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 36px 40px;
  pointer-events: all;
}
#hero-p2 {
  opacity: 0;
  pointer-events: none;
}
.hero-headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 8dvw;
  line-height: 0.8em;
  letter-spacing: 0px;
  color: var(--black);
  text-transform: uppercase;
  max-width: 60vw;
  margin-bottom: 36px;
}
.hero-headline .reg {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 800;
  color: var(--yellow);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: auto;
  pointer-events: all;
}
.cta-btn .arrow { font-size: 16px; color: var(--yellow); }
.hero-tagline {
  position: absolute;
  bottom: 32px;
  left: 36px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 2dvw;
  font-weight: 400;
  letter-spacing: 0px;
  color: var(--black);
  opacity: 0.7;
}

/* ── About panel (hero-p2) ────────────────── */
.about-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.about-headline {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 5.5dvw;
  line-height: 0.85em;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
}
.about-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(0,0,0,0.6);
  max-width: 360px;
  margin-bottom: 36px;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-stat strong {
  font-family: var(--font-display), sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--yellow);
}
.about-stat span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.about-location {
  position: absolute;
  bottom: 32px;
  left: 36px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION INITIAL STATE
   (matches Tiny Villa's translateY(30px) + opacity:0)
═══════════════════════════════════════════ */
.reveal-el {
  opacity: 0;
  transform: translateY(30px);
}

/* ═══════════════════════════════════════════
   SLIDE-OVER SECTIONS
═══════════════════════════════════════════ */
.slide-over {
  position: relative;
  z-index: 10;
  height: 100vh;
}
.slide-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dark-bg {
  background: var(--dark-section);
}
.slide-img-bg {
  background-color: var(--dark-section);
  /* gradient overlay layered over the image, both as CSS background — always behind content */
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.18) 60%),
    var(--bg);
  background-size: 100% 100%, auto 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}
.slide-text-block {
  padding: 0 36px 48px;
  width: 100%;
}
.slide-text-block.right-align {
  text-align: right;
}
.slide-headline {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 28px;
  padding-top: 16px;
}
.slide-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,240,240,0.6);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   SECTION 3 — SERVICES (white)
═══════════════════════════════════════════ */
.services-section {
  position: relative;
  z-index: 10;
  background: var(--white);
  padding: 0 0 48px;
}
.s3-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 5;
}
.s3-nav .nav-logo img {
  height: 36px;
  filter: invert(0);
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 40px 36px;
  align-items: start;
}
.services-left {
  padding-right: 48px;
}
.services-title {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
  max-width: 300px;
}
.services-img-main {
  width: 100%;
}
.img-placeholder {
  background: #C8C8C4;
  border-radius: 2px;
}
.img-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.img-tall {
  width: 100%;
  aspect-ratio: 4/3;
}
.img-square {
  width: 100%;
  aspect-ratio: 1/1;
}
.divider {
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 0 36px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 32px 36px 0;
}
.service-thumb {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 0 0;
}
.service-thumb span {
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
}
.services-full-list {
  padding: 0 36px;
  display: flex;
  flex-direction: column;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.svc-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  min-width: 24px;
}
.svc-name {
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  flex: 1;
}
.svc-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   SECTION 4 — STATS CONTENT
═══════════════════════════════════════════ */
.stats-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 36px 40px;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 4px;
}
.stat-num {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
}
.stat-sup {
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 28px);
  color: var(--yellow);
}
.stat-label {
  width: 100%;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,192,0,0.6);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-year {
  font-size: clamp(36px, 5vw, 64px) !important;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   SECTION 6 — SPECS CONTENT
═══════════════════════════════════════════ */
.specs-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px 36px 40px;
  pointer-events: none;
}
.specs-headline {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--black);
  text-transform: uppercase;
}
.specs-headline .specs-num {
  color: var(--yellow);
}
.specs-cards {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-end;
  pointer-events: all;
}
.spec-card {
  width: 200px;
  padding: 20px;
  border-radius: 4px;
  position: relative;
}
.dark-card {
  background: var(--black);
  color: var(--white);
}
.light-card {
  background: var(--white);
  color: var(--black);
}
.spec-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
  opacity: 0.5;
}
.spec-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}
.spec-value {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}
.spec-unit {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SECTION 7 — TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  position: relative;
  z-index: 10;
  background: var(--gray-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 10vw;
}
.testimonial-title {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  max-width: 1100px;
  width: 100%;
  text-align: left;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
  font-style: normal;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
  font-style: normal;
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   SECTION 8 — FOOTER CONTENT
═══════════════════════════════════════════ */
.footer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 36px 32px;
  pointer-events: all;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-headline {
  font-family: var(--font-display), sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--black);
  text-transform: uppercase;
}
.footer-headline .reg {
  font-size: 0.35em;
  vertical-align: super;
  font-weight: 700;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 24px;
}
.footer-tagline {
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-social a {
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}
.footer-credit {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   TAP-TO-ENTER (mobile loader)
═══════════════════════════════════════════ */
#loader.tap-ready .loader-pct {
  font-size: 13px;
  color: var(--white);
  animation: tap-pulse 1.6s ease-in-out infinite;
}
@keyframes tap-pulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════
   REDUCED MOTION — calm everything down
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain-overlay { animation: none; }
}

/* ═══════════════════════════════════════════
   MOBILE  (≤768px)
   Single-column stacking + large-viewport (lvh) heights
   so the browser toolbar can't jump the layout.
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Freeze grain flicker — the animated mix-blend recomposite is a
     major scroll-jank source on mobile. Static grain still looks filmic. */
  .grain-overlay { animation: none; }

  /* SCROLL ARCHITECTURE (the URL-bar-glitch fix) — lock the body so it can
     never natively scroll, and move scrolling into #scroller. iOS only
     collapses the toolbar when the ROOT document scrolls; scrolling an inner
     element keeps the toolbar fixed, so the viewport height stays constant and
     the page stops jumping on scroll-up. The fixed 3D layer / nav / loader all
     live OUTSIDE #scroller and stay pinned. Desktop leaves #scroller static. */
  html, body { height: 100%; overflow: hidden; }
  #scroller {
    position: fixed;
    inset: 0;
    z-index: 1;                       /* above the z-0 3D layer, below the z-100 nav */
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;      /* no rubber-band chaining to the document */
  }

  /* Large-viewport units — always ≥ the visible area, so sections never
     leave a gap when the URL bar collapses (svh was sizing them to the
     SMALL viewport, ~549px, which caused the ~34% gap). lvh is also stable,
     so it doesn't jump as the bar toggles. */
  .sticky-layer,
  .slide-over,
  .slide-inner { height: 100vh; height: 100lvh; }
  .testimonials-section { min-height: 100vh; min-height: 100lvh; }

  /* Hero */
  .hero-panel      { padding: 88px 22px 32px; }
  .hero-headline   { font-size: 13dvw; max-width: 92vw; margin-bottom: 28px; }
  .hero-tagline    { font-size: 4dvw; left: 22px; bottom: 24px; }
  .about-headline  { font-size: 9dvw; }
  .about-body      { font-size: 13px; max-width: 90vw; }
  .about-stats     { flex-wrap: wrap; gap: 22px; }
  .about-location  { left: 22px; }

  /* Slide-over headlines */
  .slide-text-block { padding: 0 22px 40px; }
  .slide-headline   { right: 20px; font-size: clamp(36px, 12vw, 64px); }

  /* Services — stack to one column */
  .services-top   { grid-template-columns: 1fr; gap: 28px; padding: 32px 22px; }
  .services-left  { padding-right: 0; }
  .services-grid  { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px 0; }
  .service-thumb  { padding: 0; }
  .divider        { margin: 0 22px; }

  /* Stats — stack the three figures */
  .stats-content  { grid-template-columns: 1fr; gap: 20px; padding: 0 22px 32px; }

  /* Specs — headline above the cards */
  .specs-content  {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 28px;
    padding: 88px 22px 32px;
  }
  .specs-cards    { flex-direction: row; align-self: stretch; }
  .spec-card      { width: 50%; }

  /* Testimonials */
  .testimonial-content { padding: 64px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-tag { display: none; }
  .services-full-list { padding: 0 22px; }

  /* Footer — stack contact block */
  .footer-content { padding: 88px 22px 28px; }
  .footer-bottom  { grid-template-columns: 1fr; gap: 20px; }
  .footer-social  { text-align: left; }
}

/* Portrait phones — shrink the hero headline so "CONSTRUCTION"
   (the longest line) fits the narrow width without clipping. */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-headline { font-size: 10dvw; max-width: 94vw; }

  /* #s2 "Completely Custom / Built to Last" — left-aligned, fitted,
     inset from the edges and clear of the fixed nav. */
  #s2 .slide-headline {
    right: auto;
    left: 24px;
    text-align: left;
    font-size: clamp(32px, 10.5vw, 56px);
    max-width: 88vw;
    padding-top: 92px;
  }
}
