/* ============================================================
   OUTDOOR DESIGN — Shomera-inspired premium stylesheet
   Cormorant Garamond + Inter · Forest green / Warm ivory
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --green:      #8DC63F;
  --green-m:    #79b336;
  --green-dark: #3D6B10;
  --cream:   #F8F5EF;
  --stone:   #F0EBE1;
  --ink:     #1E1E1E;
  --mid:     #5A5A5A;
  --lite:    #8A8A8A;
  --white:   #ffffff;
  --serif:   'Montserrat', system-ui, sans-serif;
  --sans:    'Inter', system-ui, sans-serif;
  --nav-h:   98px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
em { font-style: normal; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--green);
  color: var(--ink);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ── Utilities ──────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.label--d { color: rgba(248,245,239,0.75); }

.dh {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
}
.dh em { font-style: normal; color: var(--green-dark); font-weight: 700; }
.dh--d { color: var(--cream); }
.dh--d em { color: rgba(248,245,239,0.7); }

.bp { font-size: 1rem; line-height: 1.75; color: var(--mid); margin-top: 16px; }

.btn-f, .btn-g, .btn-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.15s;
  white-space: nowrap;
}
.btn-f {
  background: var(--green);
  color: var(--ink);
}
.btn-f:hover { background: var(--green-m); transform: translateY(-1px); }
.btn-g {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(30,30,30,0.3);
}
.btn-g:hover { border-color: var(--ink); }
.btn-w {
  background: var(--cream);
  color: var(--green-dark);
}
.btn-w:hover { background: var(--white); transform: translateY(-1px); }

.sec-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.sec-head--d .label, .sec-head--d .dh, .sec-head--d .sec-sub { color: var(--cream); }
.sec-sub { font-size: 1rem; line-height: 1.7; color: var(--mid); margin-top: 16px; }
.sec-sub--d { color: rgba(248,245,239,0.65); }

/* ── Reveal animation classes (added by GSAP) ─────────── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
#nav.nav-scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.logo-img {
  height: 80px;
  width: auto;
  transition: filter 0.35s var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-right: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
#nav.nav-scrolled .nav-links a { color: var(--ink); }

/* ── Dropdown menus ───────────────────────────────── */
.nav-chev { font-size: 10px; margin-left: 3px; display: inline-block; transition: transform 0.2s; }
.has-drop { position: relative; }
.has-drop:hover .nav-chev { transform: rotate(180deg); }

.nav-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
  z-index: 200;
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-drop:focus-within .nav-chev { transform: rotate(180deg); }
.nav-drop li { list-style: none; }
.nav-drop a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink) !important;
  white-space: nowrap;
  letter-spacing: 0;
}
.nav-drop a::after { display: none; }
.nav-drop a:hover { color: var(--green) !important; background: rgba(141,198,63,0.07); }

/* ── Mobile sub-menus ─────────────────────────────── */
.mob-drop-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mob-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.mob-sub.mob-sub-open { max-height: 300px; }
.mob-sub a { font-size: 0.9rem; color: var(--mid); padding: 6px 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-tel {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-tel:hover { color: var(--white); }
#nav.nav-scrolled .nav-tel { color: var(--mid); }
#nav.nav-scrolled .nav-tel:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
#nav.nav-scrolled .nav-cta { background: var(--green); color: var(--ink); }
.nav-cta:hover { opacity: 0.88; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: 8px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
#nav.nav-scrolled .burger span { background: var(--ink); }

/* Mobile nav */
.mob-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 80px 36px 40px;
  gap: 8px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.38s var(--ease);
}
.mob-nav.mob-open { right: 0; }
.mob-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  touch-action: manipulation;
}
.mob-tel { font-size: 15px !important; color: var(--mid) !important; margin-top: 12px; }
.mob-cta {
  margin-top: 16px;
  background: var(--green) !important;
  color: var(--ink) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 2px;
  border-bottom: none !important;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mob-x {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 22px;
  color: var(--mid);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-veil {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mob-veil.veil-on { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide { position: relative; overflow: hidden; }

.s-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  will-change: transform;
}
.swiper-slide-active .s-bg { transform: scale(1.0); }

/* Dark gradient overlay */
.s-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 100%
  );
}

/* Slide copy: bottom-left, Shomera-style */
.s-copy {
  position: absolute;
  bottom: 130px;
  left: 10.4%;
  max-width: 62%;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s 0.2s var(--ease), transform 0.65s 0.2s var(--ease);
}
.swiper-slide-active .s-copy { opacity: 1; transform: translateY(0); }

.s-eye {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
}
.s-title em { font-style: normal; font-weight: 800; }

.s-sub {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.s-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.s-btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--sans);
}
.s-btn-primary {
  background: var(--green);
  color: var(--ink);
  border: 2px solid transparent;
}
.s-btn-primary:hover { background: var(--green-m); transform: translateY(-1px); }
.s-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.s-btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* Square Shomera-style arrows — bottom right */
.h-arr {
  position: absolute;
  bottom: 90px;
  z-index: 10;
  width: 54px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 1px;
  touch-action: manipulation;
}
.h-arr:hover { background: rgba(255,255,255,0.25); }
.h-prev { right: calc(10.4% + 58px); }
.h-next { right: 10.4%; }

.h-arr::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.h-prev::before { transform: rotate(135deg); margin-left: 3px; }
.h-next::before { transform: rotate(-45deg); margin-right: 3px; }

/* Pagination dots — bottom left aligned with copy */
.h-pag {
  position: absolute !important;
  bottom: 110px !important;
  left: 10.4% !important;
  width: auto !important;
  right: auto !important;
  text-align: left !important;
  z-index: 10;
}
.h-pag .swiper-pagination-bullet {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  margin: 0 3px !important;
  transition: background 0.2s, width 0.2s;
}
.h-pag .swiper-pagination-bullet-active {
  background: var(--white);
  width: 36px;
}

/* Hero bar pinned at bottom */

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust {
  background: var(--stone);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.tr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 48px;
}
.ts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.tn, .tn-s {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-dark);
}
.tl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
}
.td {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 100px 0; overflow: hidden; }

.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.ab-img {
  position: relative;
  overflow: hidden;
}
.ab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ab-photo { object-position: 20% center; }
.ab-img:hover img { transform: scale(1.04); }

.ab-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--green);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 1px;
}

.ab-copy {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.ab-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.as { display: flex; flex-direction: column; gap: 5px; }
.asn, .asn-s {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.asl { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.ab-copy .btn-f { margin-top: 36px; align-self: flex-start; }
.ab-note {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lite);
  margin-top: 14px;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: 100px 0 0; }

.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 500px 360px;
  gap: 3px;
  margin-top: 0;
}

.sv { position: relative; overflow: hidden; }
.sv-big { grid-column: span 2; }
.sv-sm  { grid-column: span 1; }

.sv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.sv:hover .sv-bg { transform: scale(1.06); }

/* Dark gradient from bottom */
.sv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  transition: background 0.4s;
}
.sv:hover .sv-bg::after {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 65%, rgba(0,0,0,0.1) 100%);
}

/* Lily effect: sv-body */
.sv-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  overflow: hidden;
}

.sv-cat {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.8);
  margin-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}

.sv-h {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  transition: transform 0.4s var(--ease);
}
.sv-big .sv-h { font-size: 2.2rem; }

/* Hidden by default — lily slides up on hover */
.sv-p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: max-height 0.45s var(--ease), opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.sv-lnk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--green);
  border-radius: 2px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s var(--ease), opacity 0.35s 0.1s var(--ease), transform 0.35s 0.1s var(--ease), background 0.2s;
}
.sv-lnk:hover { background: var(--green-m); color: var(--white); }

.sv:hover .sv-p {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}
.sv:hover .sv-lnk {
  max-height: 44px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 16px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  padding: 72px 48px;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-eye {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.6);
  margin-bottom: 12px;
}
.cta-h {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cta-note {
  font-size: 12px;
  color: rgba(248,245,239,0.5);
  letter-spacing: 0.04em;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why { padding: 100px 0; background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}

.why-l { position: sticky; top: calc(var(--nav-h) + 40px); }

.why-marks {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.wm { display: flex; flex-direction: column; gap: 4px; }
.wm-n { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--green-dark); line-height: 1; display: block; }
.wm-l { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.wm-d { width: 1px; height: 40px; background: rgba(0,0,0,0.12); }

.why-cov {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.cov-l { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lite); margin-bottom: 8px; }
.cov-t { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* Accordion */
#acc { display: flex; flex-direction: column; }

.ai { border-bottom: 1px solid rgba(0,0,0,0.1); }
.ai:first-child { border-top: 1px solid rgba(0,0,0,0.1); }

.ah {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.ah:hover .at { color: var(--green); }

.an {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lite);
  flex-shrink: 0;
  min-width: 26px;
  transition: color 0.2s;
}
.ai-open .an { color: var(--green); }

.at {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  transition: color 0.2s;
}

.ai-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 50%;
}
.ai-ico::before, .ai-ico::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.ai-ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ai-open .ai-ico::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.ab-body {
  overflow: hidden;
  height: 0;
  transition: height 0.4s var(--ease);
}
.ab-body p { font-size: 0.92rem; line-height: 1.75; color: var(--mid); padding-bottom: 20px; padding-left: 46px; }

/* ============================================================
   SPEC MARQUEE
   ============================================================ */
.spec-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(248,245,239,0.1);
  border-bottom: 1px solid rgba(248,245,239,0.1);
}

.spec-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.spec-row:nth-child(even) {
  animation-direction: reverse;
  animation-duration: 26s;
  margin-top: 12px;
}

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

.spec-row span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.65);
  padding: 0 24px;
}
.spec-row .sd {
  color: rgba(248,245,239,0.3);
  padding: 0;
  letter-spacing: 0;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio {
  background: var(--ink);
  padding: 100px 0 0;
}

.port-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 580px;
  gap: 3px;
  margin-top: 0;
}

.pi {
  position: relative;
  overflow: hidden;
}
.pi-tall { grid-row: span 1; }

.pi-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.pi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.pi:hover img { transform: scale(1.05); }

.pi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.pi:hover .pi-ov { opacity: 1; transform: translateY(0); }

.pi-t { font-size: 14px; font-weight: 600; color: var(--white); }
.pi-l { font-size: 11.5px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.pi-q { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; font-style: normal; }

/* Case strip */
.case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}

.ci {
  background: rgba(255,255,255,0.04);
  padding: 40px 36px;
  border-top: 2px solid rgba(248,245,239,0.08);
  transition: background 0.25s;
}
.ci:hover { background: rgba(255,255,255,0.07); }

.ci-s { font-size: 13px; color: #F4B400; letter-spacing: 2px; margin-bottom: 16px; }
.ci-q { font-family: var(--sans); font-size: 0.92rem; font-weight: 400; line-height: 1.65; color: rgba(248,245,239,0.85); font-style: normal; }
.ci-a { font-size: 13px; font-weight: 600; color: var(--cream); margin-top: 18px; }
.ci-l { font-size: 11.5px; color: rgba(248,245,239,0.45); margin-top: 2px; }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 100px 0;
  background: var(--white);
}

.proc-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 0;
}

.ps {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.ps-n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green);
}

.ps-h {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ps-p { font-size: 0.88rem; line-height: 1.7; color: var(--mid); }

.pc {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin-top: 26px;
  position: relative;
}
.pc::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  border-left: 6px solid rgba(0,0,0,0.12);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}

.proc-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: var(--stone);
  padding: 100px 0;
}

.rev-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.g-bdg {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.g-g {
  width: 44px;
  height: 44px;
  background: #4285F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.g-sc { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.g-st { font-size: 14px; color: #F4B400; letter-spacing: 1px; margin-top: 1px; }
.g-sb { font-size: 11px; color: var(--lite); margin-top: 2px; }

.rev-swiper { overflow: hidden; }
.rev-swiper .swiper-wrapper { align-items: stretch; }
.rev-swiper .swiper-slide { height: auto; }

.rc {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rc-s { font-size: 13px; color: #F4B400; letter-spacing: 2px; margin-bottom: 16px; }
.rc-t {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  font-style: normal;
  flex: 1;
}
.rc-a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.rc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.rc-n { font-size: 13px; font-weight: 600; color: var(--ink); }
.rc-l { font-size: 11.5px; color: var(--lite); margin-top: 2px; }

.rev-pag { margin-top: 32px !important; }
.rev-pag .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.2);
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}
.rev-pag .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scale(1.25);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { overflow: hidden; }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.ct-l {
  background: var(--ink);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.ctl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: rgba(248,245,239,0.82);
  transition: color 0.2s;
}
.ctl:hover { color: var(--cream); }
.ctl svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.6; }

.ct-cov {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(248,245,239,0.12);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chips span {
  background: rgba(248,245,239,0.08);
  border: 1px solid rgba(248,245,239,0.22);
  color: rgba(248,245,239,0.75);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Contact left panel: dark bg — all text uses light cream values */
.ct-l .label--d { color: rgba(248,245,239,0.6); }
.ct-l .dh--d { color: var(--cream); }
.ct-l .dh--d em { color: rgba(248,245,239,0.7); }
.ct-l .cov-l { color: rgba(248,245,239,0.55); }
.ct-l .cov-t { color: rgba(248,245,239,0.75); }

.ct-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 400px;
  color: rgba(248,245,239,0.72);
}

.rev-dh { margin-top: 12px; }

.ct-r {
  background: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form */
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fg label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); }
.fg label span { color: var(--green); }

.fg input, .fg select, .fg textarea {
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); }
.fg-err { font-size: 13px; color: #c0392b; margin-top: -2px; }
.fg textarea { resize: vertical; min-height: 100px; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235A5A5A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.f-sub {
  width: 100%;
  height: 52px;
  background: var(--green);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 4px;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s, transform 0.15s;
}
.f-sub:hover { background: var(--green-m); transform: translateY(-1px); }

.f-prv { font-size: 11px; color: var(--lite); text-align: center; margin-top: 12px; }

.f-ok {
  text-align: center;
  padding: 60px 20px;
}
.f-ok p { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.f-ok small { font-size: 0.88rem; color: var(--mid); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--ink); padding: 80px 0 0; }

.ft-in {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.ft-brand { }
.ft-tag { font-size: 0.88rem; line-height: 1.7; color: rgba(248,245,239,0.5); margin-top: 20px; max-width: 280px; }

.ft-soc {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.ft-soc a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248,245,239,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,239,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.ft-soc a:hover { border-color: rgba(248,245,239,0.5); color: var(--cream); }

.fct {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.5);
  margin-bottom: 20px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul a { font-size: 0.88rem; color: rgba(248,245,239,0.6); transition: color 0.2s; }
.ft-col ul a:hover { color: var(--cream); }

.ft-hrs {
  font-size: 0.8rem;
  color: rgba(248,245,239,0.35);
  margin-top: 20px;
  line-height: 1.7;
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 24px 48px;
  border-top: 1px solid rgba(248,245,239,0.08);
  font-size: 0.78rem;
  color: rgba(248,245,239,0.3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-btn svg { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .ab-copy { padding: 60px 48px; }
  .why-grid { gap: 60px; padding: 0 36px; }
  .ft-in { grid-template-columns: 1fr 1fr; gap: 48px; padding: 0 36px; }
  .ft-bot { padding: 24px 36px; }
}

@media (max-width: 960px) {
  /* Nav */
  .nav-links, .nav-tel { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }

  /* Hero */
  .s-copy { left: 6%; max-width: 86%; bottom: 100px; }
  .h-pag { left: 6% !important; }
  .h-prev { right: calc(6% + 58px); }
  .h-next { right: 6%; }
  /* Services */
  .sv-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 300px 300px;
  }
  .sv-big { grid-column: span 1; }
  .sv-sm  { grid-column: span 1; }

  /* About */
  .ab-grid { grid-template-columns: 1fr; grid-template-rows: 380px auto; }
  .ab-copy { padding: 48px 36px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-l { position: static; }

  /* Portfolio */
  .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pi-tall { display: none; }
  .pi-col { grid-template-rows: 250px 250px; }

  /* Case strip */
  .case-strip { grid-template-columns: 1fr; }

  /* Process */
  .proc-grid { flex-wrap: wrap; justify-content: center; }
  .ps { flex-basis: 45%; }
  .pc { display: none; }

  /* Contact */
  .ct-grid { grid-template-columns: 1fr; }
  .ct-l { padding: 60px 36px; }
  .ct-r { padding: 60px 36px; }

  /* CTA band */
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-btn-wrap { align-items: center; }

  /* Footer */
  .ft-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }

  .logo-img { height: 50px; }

  .container { padding: 0 20px; }

  #about, #services, #why, #portfolio, #process, #reviews { padding: 72px 0; }

  /* Hero */
  #hero { height: 72svh; min-height: 520px; }
  .s-bg { background-position: center 30%; }
  .s-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .s-copy { left: 5%; max-width: 90%; bottom: 60px; }
  .s-btn { height: 44px; padding: 0 20px; font-size: 11px; }
  .h-pag { display: none !important; }
  .h-arr { bottom: 16px; }
  .h-prev { right: calc(5% + 52px); }
  .h-next { right: 5%; }

  /* Trust */
  .tr-row { padding: 24px 20px; gap: 0; }
  .td { margin: 0 16px; height: 36px; }
  .tn { font-size: 1.7rem; }

  /* About */
  .ab-stats { gap: 24px; flex-wrap: wrap; }

  /* Services */
  .sv-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 360px);
  }
  .sv-big, .sv-sm { grid-column: span 1; }

  /* Services show text by default on mobile */
  .sv-p { max-height: 130px; opacity: 1; transform: translateY(0); }
  .sv-lnk { max-height: 44px; opacity: 1; transform: translateY(0); margin-top: 12px; }

  /* Why */
  .why-grid { padding: 0 20px; }

  /* Portfolio */
  .port-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pi-col { grid-template-rows: 240px 240px; }

  /* Process */
  .ps { flex-basis: 100%; padding: 0 12px; }
  .proc-grid { gap: 32px; }

  /* Reviews */
  .rev-hd { flex-direction: column; align-items: flex-start; }

  /* Contact */
  .fr { grid-template-columns: 1fr; }
  .ct-l, .ct-r { padding: 48px 24px; }

  /* Footer */
  .ft-in { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .ft-bot { flex-direction: column; text-align: center; padding: 20px 24px; }

  /* CTA band */
  .cta-band { padding: 52px 24px; }

  /* WhatsApp */
  .wa-btn { bottom: 20px; right: 20px; width: 48px; height: 48px; }

  /* Touch-friendly form inputs (44px min per Apple HIG, 16px prevents iOS auto-zoom) */
  .fg input, .fg select, .fg textarea { min-height: 44px; font-size: 1rem; }

  /* Hero arrows — hidden on mobile */
  .h-arr { display: none; }

  /* Service page hero — tighter font on small phones to reduce orphan words */
  .ph-h { font-size: 1.75rem; }
}

/* ============================================================
   FEATURED PROJECT HOVER PANELS  (Shomera-style)
   ============================================================ */
#portfolio {
  background: var(--ink);
  padding-top: 100px;
  padding-bottom: 0;
}

/* ── Shared panel base ──────────────────────────────────── */
.feat-swiper .swiper-slide,
.fg-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Background image */
.fs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  will-change: transform;
}

/* Solid brand-colour flood (hidden by default) */
.fs-overlay {
  position: absolute;
  inset: 0;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 1;
}

/* Content block pinned bottom-left */
.fs-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 52px;
  background: none; /* no gradient — pure image until hover */
}

.fs-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.6);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.05s var(--ease), transform 0.35s 0.05s var(--ease);
}

.fs-h {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s 0.08s var(--ease), transform 0.4s 0.08s var(--ease);
}
.fs-h em { font-style: normal; color: rgba(248,245,239,0.8); }

.fs-p {
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(248,245,239,0.78);
  margin-top: 14px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s 0.1s var(--ease), transform 0.4s 0.1s var(--ease);
}

.fs-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 44px;
  padding: 0 26px;
  margin-top: 24px;
  background: transparent;
  border: 1.5px solid rgba(248,245,239,0.5);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s 0.16s var(--ease), transform 0.4s 0.16s var(--ease),
              background 0.2s, border-color 0.2s;
}
.fs-btn:hover {
  background: rgba(248,245,239,0.12);
  border-color: rgba(248,245,239,0.8);
}

/* ── HOVER — panel floods green, content rises up ──────── */
.feat-swiper .swiper-slide:hover .fs-bg,
.feat-swiper-rev .swiper-slide:hover .fs-bg {
  transform: scale(1.06);
  opacity: 0.18;
}
.feat-swiper .swiper-slide:hover .fs-overlay,
.feat-swiper-rev .swiper-slide:hover .fs-overlay {
  opacity: 0.95;
}
.feat-swiper .swiper-slide:hover .fs-tag,
.feat-swiper-rev .swiper-slide:hover .fs-tag {
  opacity: 1;
  transform: translateY(0);
}
.feat-swiper .swiper-slide:hover .fs-h,
.feat-swiper-rev .swiper-slide:hover .fs-h {
  opacity: 1;
  transform: translateY(0);
}
.feat-swiper .swiper-slide:hover .fs-p,
.feat-swiper-rev .swiper-slide:hover .fs-p {
  opacity: 1;
  transform: translateY(0);
}
.feat-swiper .swiper-slide:hover .fs-btn,
.feat-swiper-rev .swiper-slide:hover .fs-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── Row 1: left-scrolling ──────────────────────────────── */
.feat-swiper {
  overflow: hidden;
  margin-top: 0;
}
.feat-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.feat-swiper .swiper-slide {
  width: 55%;
  height: 500px;
}

/* ── Row 2: right-scrolling (reverse) ──────────────────── */
.feat-swiper-rev {
  overflow: hidden;
  margin-top: 0;
}
.feat-swiper-rev .swiper-wrapper {
  transition-timing-function: linear !important;
}
.feat-swiper-rev .swiper-slide {
  width: 48%;
  height: 400px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .feat-swiper .swiper-slide    { width: 75%; height: 420px; }
  .feat-swiper-rev .swiper-slide { width: 65%; height: 340px; }
  .fs-content { padding: 36px 36px; }
}

@media (max-width: 640px) {
  #portfolio { padding-top: 72px; }
  .feat-swiper .swiper-slide    { width: 88%; height: 380px; }
  .feat-swiper-rev .swiper-slide { width: 88%; height: 340px; }
  .fs-content { padding: 28px 24px; }
  .fs-h { font-size: 1.5rem; }
  /* Mobile: show real photo (no green flood), text hidden until tap */
  .feat-swiper .swiper-slide .fs-overlay,
  .feat-swiper-rev .swiper-slide .fs-overlay { opacity: 0; }
  .feat-swiper .swiper-slide .fs-bg,
  .feat-swiper-rev .swiper-slide .fs-bg { opacity: 1; }

  /* Mobile tap-to-reveal: show content when .touched is added by JS */
  .feat-swiper .swiper-slide.touched .fs-tag,
  .feat-swiper-rev .swiper-slide.touched .fs-tag,
  .feat-swiper .swiper-slide.touched .fs-h,
  .feat-swiper-rev .swiper-slide.touched .fs-h,
  .feat-swiper .swiper-slide.touched .fs-p,
  .feat-swiper-rev .swiper-slide.touched .fs-p,
  .feat-swiper .swiper-slide.touched .fs-btn,
  .feat-swiper-rev .swiper-slide.touched .fs-btn {
    opacity: 1;
    transform: translateY(0);
  }
  .feat-swiper .swiper-slide.touched .fs-content,
  .feat-swiper-rev .swiper-slide.touched .fs-content {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  }
  .feat-swiper .swiper-slide.touched .fs-tag,
  .feat-swiper-rev .swiper-slide.touched .fs-tag { color: rgba(248,245,239,0.75); }
}


/* ============================================================
   INNER PAGES — shared components
   ============================================================ */

/* Nav static (always white, no hero behind) */
#nav.nav-static { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
#nav.nav-static .nav-links a { color: var(--ink); }
#nav.nav-static .nav-tel { color: var(--mid); }
#nav.nav-static .nav-tel:hover { color: var(--ink); }
#nav.nav-static .nav-cta { background: var(--green); color: var(--ink); }
#nav.nav-static .burger span { background: var(--ink); }

/* Page hero (image behind nav, dark gradient) */
.ph {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.ph:hover .ph-bg { transform: scale(1.03); }
.ph-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.12) 100%);
}
.ph-content { position: relative; z-index: 1; }
.ph-content .label { color: rgba(255,255,255,0.7); margin-bottom: 12px; display: block; }
.ph-h {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 8px;
}
.ph-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  font-weight: 400;
}

/* Static page header (cream, no image) */
.pgh {
  padding: 80px 0 64px;
  margin-top: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pgh .label { margin-bottom: 12px; display: block; }
.pgh-h {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 8px;
  color: var(--ink);
}
.pgh-sub {
  font-size: 1rem;
  color: var(--mid);
  margin-top: 14px;
  max-width: 540px;
  line-height: 1.7;
}

/* Intro 2-col layout */
.pg-intro { padding: 80px 0; }
.pg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pg-grid-3 { grid-template-columns: 3fr 2fr; }
.pg-intro-h {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.pg-intro-p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
}
.pg-intro-p:last-child { margin-bottom: 0; }

/* Feature checklist */
.pg-feats { display: flex; flex-direction: column; gap: 10px; }
.pg-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 3px;
  border-left: 3px solid var(--green);
}
.pg-feat-body {}
.pg-feat-t { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.pg-feat-d { font-size: 0.84rem; color: var(--mid); line-height: 1.55; }
.pg-feat-tick {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pg-feat-tick::after {
  content: '';
  display: block;
  width: 6px;
  height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Benefits strip */
.pg-benefits { padding: 72px 0; background: var(--cream); }
.pg-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pg-ben {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 3px;
  border-top: 3px solid var(--green);
}
.pg-ben-n {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pg-ben-t { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.pg-ben-d { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

/* Related projects grid */
.pg-projects { padding: 80px 0; }
.pg-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pg-proj-card {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #111;
}
.pg-proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}
.pg-proj-card:hover img { transform: scale(1.05); opacity: 0.88; }
.pg-proj-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white);
}
.pg-proj-cap p { font-size: 0.82rem; font-weight: 600; }

/* FAQ section */
.pg-faq { padding: 80px 0; background: var(--cream); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 3px; }
.faq-item {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 50%;
}
.faq-ico::before, .faq-ico::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.faq-open .faq-ico::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.35s var(--ease);
}
.faq-a p { padding: 0 28px 24px; font-size: 0.9rem; line-height: 1.8; color: var(--mid); }

/* CTA strip */
.pg-cta {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}
.pg-cta-h {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pg-cta-p { font-size: 1rem; color: rgba(30,30,30,0.72); margin-bottom: 36px; line-height: 1.7; }
.btn-white {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 36px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  margin: 0 8px 8px;
}
.btn-white:hover { background: var(--ink); color: var(--white); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 36px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white { background: var(--white); border-color: var(--white); color: var(--green-dark); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); }

/* Portfolio page */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pp-card {
  border-radius: 3px;
  overflow: hidden;
  background: #111;
  position: relative;
}
.pp-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}
.pp-card:hover .pp-card-img { transform: scale(1.05); opacity: 0.85; }
.pp-card-info {
  padding: 16px 18px;
  background: var(--white);
}
.pp-card-t { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.pp-card-l { font-size: 0.78rem; color: var(--lite); margin-top: 3px; }

/* About page */
.ab-vals { padding: 80px 0; }
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.val-item {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: 3px;
  border-top: 3px solid var(--green);
}
.val-n {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.val-t { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.val-d { font-size: 0.875rem; color: var(--mid); line-height: 1.75; }

/* Stats row */
.pg-stats { padding: 72px 0; background: var(--ink); }
.pg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.pg-stat { padding: 32px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.pg-stat:last-child { border-right: none; }
.pg-stat-n {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.pg-stat-l { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Areas strip */
.areas-strip { padding: 56px 0; background: var(--ink); text-align: center; }
.areas-strip h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.area-tag {
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s;
}
.area-tag:hover { border-color: var(--green); color: var(--green); }

/* Contact page */
.ct-section { padding: 80px 0; }
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ct-info-h { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 28px; }
.ct-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ct-icon {
  width: 40px;
  height: 40px;
  background: rgba(61,107,16,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.ct-row-t { font-size: 0.82rem; font-weight: 700; color: var(--lite); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ct-row-v { font-size: 0.97rem; color: var(--ink); font-weight: 500; }
.ct-row-v a { color: var(--green-dark); }
.ct-row-v a:hover { color: var(--green); }

/* Responsive inner pages */
@media (max-width: 1024px) {
  .pg-ben-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ph { height: 55vh; min-height: 360px; padding-bottom: 48px; }
  .ph-tall { height: 72vh; }
  .ph-h { font-size: 2rem; }
  .pg-grid, .pg-grid-3, .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .pg-proj-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid { grid-template-columns: 1fr; }
  .pg-ben-grid { grid-template-columns: 1fr; }
  .pg-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pgh { padding: 60px 0 48px; }
}
@media (max-width: 480px) {
  .pg-proj-grid, .pp-grid { grid-template-columns: 1fr; }
  .pg-stats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   SHOMERA-INSPIRED EDITORIAL — garden rooms page
   ============================================================ */

/* Taller hero variant */
.ph-tall { height: 82vh; min-height: 520px; }

/* Statement section */
.sh-stmt { padding: 96px 0 72px; text-align: center; }
.sh-stmt-h {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--ink);
}
.sh-stmt-p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.9;
}
.sh-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.sh-img-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: opacity 0.4s;
}
.sh-img-row img:hover { opacity: 0.9; }

/* Section label (small caps) */
.sh-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* Editorial 2-col section */
.sh-edit { padding: 96px 0; }
.sh-edit.sh-cream { background: var(--cream); }
.sh-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sh-edit-grid.sh-flip { direction: rtl; }
.sh-edit-grid.sh-flip > * { direction: ltr; }
.sh-edit-h {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.sh-edit-p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 18px;
}
.sh-edit-p:last-of-type { margin-bottom: 0; }
.sh-edit-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.sh-edit-img.sh-landscape { aspect-ratio: 5/4; }

/* Inline stats (3 across) */
.sh-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.09);
  margin-top: 48px;
  padding-top: 40px;
}
.sh-stat-i { text-align: center; border-right: 1px solid rgba(0,0,0,0.09); }
.sh-stat-i:last-child { border-right: none; }
.sh-stat-i-n {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.sh-stat-i-l { font-size: 0.82rem; color: var(--mid); font-weight: 500; }

/* Text link (discover more style) */
.sh-text-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.sh-text-link:hover { color: var(--green); }

/* Portfolio (Shomera-style clean cards) */
.sh-portfolio { padding: 96px 0; }
.sh-port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.sh-port-card {}
.sh-port-card-wrap {
  overflow: hidden;
  border-radius: 2px;
}
.sh-port-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.sh-port-card:hover .sh-port-card-img { transform: scale(1.04); }
.sh-port-card-t {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 4px;
}
.sh-port-card-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.sh-port-card-link:hover { color: var(--green-m); }
.sh-port-all { text-align: center; margin-top: 52px; }
.sh-port-all a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.sh-port-all a:hover { color: var(--green); }

/* Testimonials (dark) */
.sh-reviews { padding: 96px 0; background: var(--ink); }
.sh-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sh-rev-item {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
}
.sh-rev-stars { color: #F4B400; font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.sh-rev-q { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 20px; }
.sh-rev-name { font-size: 0.82rem; font-weight: 700; color: var(--green); }
.sh-rev-loc { font-size: 0.76rem; color: rgba(255,255,255,0.38); margin-top: 3px; }

/* Final CTA (minimal) */
.sh-cta { padding: 100px 0; text-align: center; background: var(--white); }
.sh-cta-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.sh-cta-h {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.sh-cta-p { font-size: 1rem; color: var(--mid); margin-bottom: 44px; line-height: 1.7; }

/* Responsive */
@media (max-width: 900px) {
  .sh-edit-grid, .sh-edit-grid.sh-flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .sh-rev-grid { grid-template-columns: 1fr; gap: 16px; }
  .sh-port-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-stats-inline { grid-template-columns: repeat(3, 1fr); }
  .sh-img-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .sh-port-grid { grid-template-columns: 1fr; }
}

/* ── Shomera-inspired intro: body text left, photo right ── */
.sh-intro { padding: 80px 0 64px; }
.sh-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.sh-intro-p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 22px;
}
.sh-intro-p:last-child { margin-bottom: 0; }
.sh-intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ── Green checkmark feature list ── */
.sh-checks { padding: 56px 0 80px; border-top: 1px solid rgba(0,0,0,0.07); }
.sh-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sh-check-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}
.sh-check-ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--green);
}

/* ── Full-width tall image slideshow ── */
.sh-full-slide { position: relative; overflow: hidden; }
.sh-full-slide .swiper { height: 680px; }
.sh-full-slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sh-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
}
.sh-full-slide:hover .sh-slide-btn { opacity: 1; }
.sh-slide-btn:hover { background: rgba(255,255,255,0.32); }
.sh-slide-prev { left: 24px; }
.sh-slide-next { right: 24px; }

@media (max-width: 900px) {
  .sh-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .sh-full-slide .swiper { height: 440px; }
}
@media (max-width: 560px) {
  .sh-full-slide .swiper { height: 300px; }
}

/* ── Shomera-style testimonial slider ── */
.sh-testi {
  background: var(--green);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
}
.sh-testi-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 16px;
}
.sh-testi-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.sh-testi-swiper { overflow: hidden; }
.sh-testi-slide { padding: 0 100px; }
.sh-testi-q {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.sh-testi-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.sh-testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
  z-index: 10;
}
.sh-testi-nav:hover { color: var(--white); }
.sh-testi-prev { left: 24px; }
.sh-testi-next { right: 24px; }
.sh-testi-pag {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.sh-testi-pag .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  border-radius: 50%;
  transition: background 0.2s;
}
.sh-testi-pag .swiper-pagination-bullet-active { background: var(--white); }

.sh-intro-img-wrap {
  overflow: hidden;
}
.sh-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Dark feature highlights band ── */
.sh-features { padding: 80px 0; background: var(--ink); }
.sh-features-intro { text-align: center; margin-bottom: 56px; }
.sh-features-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green); display: block; margin-bottom: 14px;
}
.sh-features-h {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--white); letter-spacing: -0.02em;
}
.sh-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.sh-feat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 36px;
}
.sh-feat-ico { color: var(--green); margin-bottom: 22px; display: block; }
.sh-feat-h {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.sh-feat-p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.58); }

/* ── Numbered process steps ── */
.sh-process { padding: 80px 0; }
.sh-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
}
.sh-pstep {
  padding: 0 28px 0 28px;
  border-left: 1px solid rgba(0,0,0,0.1);
}
.sh-pstep:first-child { border-left: none; padding-left: 0; }
.sh-pstep-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800;
  color: var(--green); line-height: 1; margin-bottom: 14px;
  font-family: var(--serif);
}
.sh-pstep-h { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.sh-pstep-p { font-size: 0.85rem; line-height: 1.65; color: #777; }

@media (max-width: 900px) {
  .sh-features-grid { grid-template-columns: 1fr; gap: 2px; }
  .sh-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .sh-pstep { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 28px; }
  .sh-pstep:first-child { border-top: none; padding-top: 0; }
}
@media (max-width: 560px) {
  .sh-process-grid { grid-template-columns: 1fr; }
}

/* ── Before / After drag slider ── */
.ba-section { padding: 80px 0 88px; background: var(--cream); }
.ba-section-head { text-align: center; margin-bottom: 48px; }
.ba-section-head .sh-edit-h { margin-bottom: 16px; }
.ba-section-head .sh-edit-p { max-width: 540px; margin: 0 auto; }

.ba-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  max-height: 620px;
}
.ba-before { display: block; position: relative; z-index: 1; }
.ba-before img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  z-index: 3;
  transform: translateX(-50%);
  will-change: left;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-label {
  position: absolute;
  top: 20px;
  z-index: 4;
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  pointer-events: none;
}
.ba-label-before { left: 20px; }
.ba-label-after  { right: 20px; }

@media (max-width: 768px) {
  .ba-before img, .ba-after img { height: 400px; }
  .ba-wrap { max-height: 400px; }
}

@media (max-width: 900px) {
  .sh-testi-slide { padding: 0 48px; }
  .sh-testi-nav { display: none; }
}

/* ── Portfolio page ───────────────────────────────────────── */
.pf-hero { background: var(--ink); padding: 100px 0 80px; }
.pf-hero-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 18px; }
.pf-hero-h { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); font-weight: 800; line-height: 1.05; margin-bottom: 22px; }
.pf-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.75; }

.pf-grid-wrap { padding: 80px 0 100px; background: var(--white); }
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }

.pf-card { text-decoration: none; display: block; }
.pf-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.pf-card-img::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: 2; }
.pf-card:hover .pf-card-img::after { transform: scaleX(1); }
.pf-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); display: block; }
.pf-card:hover .pf-card-img img { transform: scale(1.05); }
.pf-card-info { padding: 22px 0 0; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 1px; }
.pf-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 10px; }
.pf-card-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.3; margin-bottom: 6px; transition: color 0.2s; }
.pf-card:hover .pf-card-title { color: var(--green-m); }
.pf-card-loc { font-size: 0.8rem; color: rgba(0,0,0,0.42); letter-spacing: 0.02em; }

.pf-cta { background: var(--cream); padding: 80px 0; text-align: center; }
.pf-cta-h { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.pf-cta-p { color: var(--mid); font-size: 0.95rem; margin-bottom: 36px; }

@media (max-width: 720px) {
  .pf-grid { grid-template-columns: 1fr; gap: 44px; }
  .pf-hero { padding: 72px 0 60px; }
  .pf-hero-h { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ab-statement {
  padding: 96px 0 80px;
  background: var(--white);
}
.ab-statement-inner {
  max-width: 860px;
}
.ab-statement-h {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  margin-top: 14px;
}
.ab-statement-sub {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mid);
  max-width: 720px;
}

.ab-process-head {
  margin-bottom: 56px;
}
.ab-process-head .sh-edit-h {
  margin-top: 12px;
  max-width: 600px;
}

.ab-areas {
  padding: 96px 0;
  background: var(--cream);
}
.ab-areas-h {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-top: 12px;
  margin-bottom: 16px;
}
.ab-areas-sub {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
}
.ab-tag {
  background: var(--white);
  border-color: rgba(0,0,0,0.12);
  color: var(--ink);
}
.ab-tag:hover { border-color: var(--green); color: var(--green); background: var(--white); }

@media (max-width: 768px) {
  .ab-statement { padding: 64px 0 56px; }
  .ab-areas { padding: 64px 0; }
}

/* "View Project" hover overlay on portfolio cards */
.pf-card-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,20,20,0.46);
  opacity: 0;
  transition: opacity 0.38s var(--ease);
  z-index: 3;
}
.pf-card-view span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 10px 26px;
  border-radius: 1px;
}
.pf-card:hover .pf-card-view { opacity: 1; }
/* On touch devices (no hover) show overlay at low opacity so tap affordance is visible */
@media (hover: none) {
  .pf-card-view { opacity: 0.55; }
}

/* ============================================================
   PROJECT DETAIL PAGES
   ============================================================ */
.proj-crumb {
  margin-top: var(--nav-h);
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.proj-crumb a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.proj-crumb a:hover { color: var(--green); }

.proj-header {
  padding: 52px 0 44px;
  background: var(--white);
}
.proj-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
}
.proj-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.proj-loc {
  font-size: 0.88rem;
  color: var(--lite);
}

.proj-hero-img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  display: block;
}

.proj-body { padding: 72px 0; background: var(--white); }
.proj-body-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.proj-info-panel {}
.proj-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 0;
}
.proj-info-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.proj-info-k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lite);
  margin-bottom: 5px;
}
.proj-info-v {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.proj-desc {}
.proj-desc-h {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.proj-desc-divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin-bottom: 28px;
}
.proj-desc-p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 20px;
}
.proj-desc-p:last-child { margin-bottom: 0; }

.proj-gallery {
  padding: 80px 0;
  background: var(--cream);
}
.proj-gallery-h {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 28px;
}
.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.proj-gallery-item {
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: zoom-in;
  background: #111;
}
.proj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}
.proj-gallery-item:hover img { transform: scale(1.04); opacity: 0.92; }

/* Lightbox */
.proj-lb {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(10,10,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.proj-lb.lb-open { opacity: 1; pointer-events: auto; }
.proj-lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 1px;
}
.proj-lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 8px;
}
.proj-lb-close:hover { color: #fff; }
.proj-lb-prev, .proj-lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none; color: rgba(255,255,255,0.8);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 1px;
}
.proj-lb-prev { left: 16px; }
.proj-lb-next { right: 16px; }
.proj-lb-prev:hover, .proj-lb-next:hover { background: rgba(255,255,255,0.2); color: #fff; }
.proj-lb-count {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .proj-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-body { padding: 52px 0; }
  .proj-header { padding: 36px 0 28px; }
}
@media (max-width: 480px) {
  .proj-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION — respect prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Stop Ken Burns zoom on hero / page hero images */
  .s-bg,
  .ph-bg { transition: none !important; transform: none !important; }

  /* Pause marquee */
  .spec-row { animation: none !important; }

  /* Skip reveal animations — show content immediately */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Stop image hover zoom and Swiper auto-scroll */
  .sv-bg,
  .ab-img img,
  .fs-bg,
  .pp-card-img,
  .pg-proj-card img,
  .sh-img-row img { transition: none !important; transform: none !important; }

  /* Stop auto-scrolling portfolio carousels */
  .feat-swiper .swiper-wrapper,
  .feat-swiper-rev .swiper-wrapper { transition: none !important; }

  /* Collapse all transitions to instant */
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
