/* ============================================================
   PRIME SHINE EXTERIOR CARE — DESIGN SYSTEM
   Signature concept: "The Waterline" — a clean diagonal edge
   that recurs through dividers, the before/after slider, and
   hover states, echoing the line a pressure washer leaves
   between dirty and clean.
   ============================================================ */

:root{
  /* ---- Color tokens ---- */
  --ocean-deep:   #0b3346;   /* near-black deep ocean, dark sections */
  --ocean-deep-2: #0f3e54;
  --ocean:        #12617f;   /* primary brand blue */
  --ocean-bright: #1f8bb0;   /* interactive / hover blue */
  --sea-foam:     #8fbfa6;   /* soft green accent */
  --sea-foam-dim: #cfe3d6;
  --foam-white:   #f6f9f8;   /* main background */
  --paper:        #ffffff;
  --ink:          #0e2430;   /* primary text */
  --ink-soft:     #4c6470;   /* secondary text */
  --sand:         #eee7d8;   /* warm neutral, sparing use */
  --line:         rgba(14,36,48,0.10);

  /* ---- Type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* ---- Spacing scale ---- */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 96px;
  --sp-7: 140px;

  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--foam-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 var(--sp-2);
  color: var(--ocean-deep);
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; }
h2{ font-size: clamp(2rem, 4vw, 3.1rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.7rem); }

p{ margin: 0 0 var(--sp-2); color: var(--ink-soft); }

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-2);
}
.eyebrow::before{
  content:"";
  width: 26px; height: 1px;
  background: var(--ocean-bright);
}

:focus-visible{
  outline: 2px solid var(--ocean-bright);
  outline-offset: 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--ocean-bright);
  color: #fff;
}
.btn-primary:hover{ background: var(--ocean); transform: translateY(-2px); }

.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-dark{
  background: var(--ocean-deep);
  color:#fff;
}
.btn-dark:hover{ background: var(--ocean); transform: translateY(-2px); }

.btn-outline{
  border-color: var(--ocean);
  color: var(--ocean);
}
.btn-outline:hover{ background: var(--ocean); color:#fff; }

.btn-block{ width:100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--sp-3);
}
.site-header.is-scrolled{
  background: rgba(11,51,70,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand .mark{
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand small{
  display:block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--sea-foam);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: var(--sp-4);
}
.nav-links a{
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1px;
  background: var(--sea-foam);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:#fff; }

.header-actions{ display:flex; align-items:center; gap: 14px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  color:#fff; font-weight:600; font-family: var(--font-mono); font-size:0.88rem;
}

.nav-toggle{
  display:none;
  background:none; border:0;
  width: 42px; height: 42px;
  align-items:center; justify-content:center;
  color:#fff;
}
.nav-toggle svg{ width:22px; height:22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background: var(--ocean-deep);
}
.hero-media{
  position:absolute; inset:0;
  z-index:1;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }

.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,51,70,0.55) 0%, rgba(11,51,70,0.35) 35%, rgba(11,51,70,0.88) 100%);
}

.hero-content{
  position: relative;
  z-index: 5;
  width:100%;
  padding-bottom: var(--sp-6);
  padding-top: 160px;
}

.hero-eyebrow{
  font-family: var(--font-mono);
  color: var(--sea-foam);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display:flex; align-items:center; gap:10px;
  margin-bottom: var(--sp-3);
  opacity:0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}
.hero-eyebrow::before{ content:""; width:30px; height:1px; background: var(--sea-foam); }

.hero h1{
  color:#fff;
  max-width: 15ch;
  margin-bottom: var(--sp-3);
  opacity:0;
  animation: fadeUp 1s var(--ease) .45s forwards;
}
.hero-sub{
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
  opacity:0;
  animation: fadeUp 1s var(--ease) .6s forwards;
}
.hero-ctas{
  display:flex; flex-wrap:wrap; gap: 18px;
  opacity:0;
  animation: fadeUp 1s var(--ease) .75s forwards;
}

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

.hero-stats{
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: var(--sp-5);
}
.hero-stats .container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
}
.hero-stat{
  padding: var(--sp-3) var(--sp-3) var(--sp-3) 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-stat:last-child{ border-right:none; }
.hero-stat .num{
  font-family: var(--font-display);
  color:#fff;
  font-size: 2rem;
  display:block;
}
.hero-stat .label{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sea-foam-dim);
}

.scroll-cue{
  position:absolute;
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 6;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-cue .line{
  width:1px; height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  51%{ transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   WATERLINE DIVIDER (signature element)
   ============================================================ */
.waterline{
  position: relative;
  height: 72px;
  margin-top: -1px;
}
.waterline svg{ position:absolute; inset:0; width:100%; height:100%; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section{ position: relative; }
.section{ padding: var(--sp-6) 0; }
.section-tight{ padding: var(--sp-5) 0; }
.section-dark{ background: var(--ocean-deep); color: #fff; }
.section-dark h2, .section-dark h3{ color:#fff; }
.section-dark p{ color: rgba(255,255,255,0.72); }
.section-sand{ background: var(--sand); }

.section-head{
  max-width: 640px;
  margin-bottom: var(--sp-5);
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head .eyebrow{ justify-content: flex-start; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

.reveal{
  opacity:0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-6);
  align-items:center;
}
.about-media{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 4/5;
}
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-media .badge{
  position:absolute;
  left: 24px; bottom: 24px;
  background: rgba(11,51,70,0.88);
  color:#fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  max-width: 240px;
}
.about-media .badge strong{
  display:block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sea-foam-dim);
  letter-spacing: 0;
  margin-bottom: 4px;
}

.about-list{
  margin-top: var(--sp-3);
  display:grid;
  gap: 14px;
}
.about-list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.about-list svg{ flex-shrink:0; width:20px; height:20px; color: var(--ocean-bright); margin-top:2px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.why-card{
  background: var(--paper);
  padding: var(--sp-4) var(--sp-3);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.why-card:hover{ background: var(--foam-white); transform: translateY(-4px); }
.why-card .icon{
  width: 46px; height:46px;
  color: var(--ocean-bright);
  margin-bottom: var(--sp-2);
}
.why-card h3{ font-size: 1.15rem; margin-bottom: 8px; }
.why-card p{ font-size: 0.92rem; margin-bottom:0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
.service-card{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 3/4;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: var(--sp-3);
}
.service-card img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease);
}
.service-card:hover img{ transform: scale(1.08); }
.service-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,51,70,0.05) 30%, rgba(8,38,51,0.92) 100%);
  z-index:1;
}
.service-card .content{ position:relative; z-index:2; }
.service-card .num{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--sea-foam-dim);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display:block;
}
.service-card h3{ color:#fff; font-size: 1.2rem; margin-bottom: 6px; }
.service-card p{
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  margin:0;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition: max-height .45s var(--ease), opacity .45s var(--ease), margin .45s var(--ease);
}
.service-card:hover p{ max-height: 100px; opacity:1; margin-top:6px; }
.service-card .arrow{
  position:relative; z-index:2;
  margin-top:12px;
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--sea-foam-dim);
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items:center;
}
.ba-slider{
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  overflow:hidden;
  user-select:none;
  box-shadow: 0 30px 60px -20px rgba(11,51,70,0.35);
}
.ba-slider img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  pointer-events:none;
}
.ba-before{
  z-index:1;
  filter: grayscale(40%) sepia(30%) saturate(160%) brightness(0.68) contrast(0.95) hue-rotate(-6deg);
}
.ba-after-wrap{
  position:absolute; inset:0;
  z-index:2;
  width: 50%;
  overflow:hidden;
}
.ba-after-wrap img{ width: 200%; max-width:none; height:100%; }
.ba-tag{
  position:absolute; top:16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform:uppercase;
  color:#fff;
  background: rgba(11,51,70,0.75);
  padding: 6px 12px;
  border-radius: 3px;
  z-index:3;
}
.ba-tag.before{ left:16px; }
.ba-tag.after{ right:16px; }
.ba-handle{
  position:absolute; top:0; bottom:0;
  left:50%;
  width:0;
  z-index:4;
  transform: translateX(-50%);
}
.ba-handle::before{
  content:"";
  position:absolute; top:0; bottom:0; left:50%;
  width:2px;
  background:#fff;
  transform: translateX(-50%);
}
.ba-grip{
  position:absolute; top:50%; left:50%;
  width:44px; height:44px;
  transform: translate(-50%,-50%);
  background:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: ew-resize;
  color: var(--ocean-deep);
}
.ba-grip svg{ width:20px; height:20px; }
.ba-range{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0;
  cursor: ew-resize;
  margin:0;
}

.ba-copy .stat-row{
  display:flex; gap: var(--sp-4);
  margin: var(--sp-3) 0 var(--sp-4);
}
.ba-copy .stat-row div strong{
  display:block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ocean-deep);
}
.ba-copy .stat-row div span{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform:uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-rail{
  position: relative;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-3);
  counter-reset: step;
}
.process-rail::before{
  content:"";
  position:absolute;
  top: 27px; left: 6%; right:6%;
  height:1px;
  background: repeating-linear-gradient(90deg, var(--sea-foam) 0 10px, transparent 10px 20px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; }
.process-step .index{
  font-family: var(--font-mono);
  width: 54px; height:54px;
  border-radius:50%;
  background: var(--paper);
  border: 1px solid var(--ocean-bright);
  color: var(--ocean-bright);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.95rem;
  margin-bottom: var(--sp-2);
}
.process-step h3{ font-size: 1.1rem; }
.process-step p{ font-size: 0.92rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-3);
}
.testi-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3);
}
.testi-stars{ color: var(--ocean-bright); letter-spacing:3px; margin-bottom: var(--sp-2); font-size:0.9rem; }
.testi-card p{ color: var(--ink); font-size: 1rem; font-family: var(--font-display); font-style:italic; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top: var(--sp-3); }
.testi-avatar{
  width:44px; height:44px; border-radius:50%;
  background: var(--ocean);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight:600;
  flex-shrink:0;
}
.testi-person strong{ display:block; font-size:0.92rem; color: var(--ink); }
.testi-person span{ font-size: 0.78rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width: 800px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) 4px;
  background:none; border:0;
  text-align:left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ocean-deep);
}
.faq-q .plus{
  width: 26px; height:26px;
  flex-shrink:0;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:"";
  position:absolute; top:50%; left:50%;
  background: var(--ocean-bright);
  transform: translate(-50%,-50%);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-q .plus::before{ width:16px; height:2px; }
.faq-q .plus::after{ width:2px; height:16px; }
.faq-item.open .plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .5s var(--ease);
}
.faq-a p{ padding: 0 4px var(--sp-3); font-size: 0.96rem; }
.faq-item.open .faq-a{ max-height: 260px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  position: relative;
  overflow:hidden;
  color:#fff;
  text-align:center;
  padding: var(--sp-6) 0;
}
.cta-band .media{ position:absolute; inset:0; z-index:0; }
.cta-band .media img{ width:100%; height:100%; object-fit:cover; }
.cta-band .media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,51,70,0.86), rgba(11,51,70,0.94));
}
.cta-band .container{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; max-width:20ch; margin:0 auto var(--sp-2); }
.cta-band p{ color: rgba(255,255,255,0.78); max-width: 50ch; margin:0 auto var(--sp-4); }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.72);
  padding: var(--sp-5) 0 var(--sp-3);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand{ color:#fff; margin-bottom: var(--sp-2); }
.footer-brand p{ max-width: 34ch; font-size: 0.9rem; }
.footer-col h4{
  color:#fff; font-size: 0.8rem; letter-spacing:0.1em; text-transform:uppercase;
  font-family: var(--font-mono); font-weight:500; margin-bottom: var(--sp-2);
}
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ font-size:0.9rem; transition: color .3s; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: var(--sp-3);
  font-size: 0.8rem;
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a:hover{ color:#fff; }

/* ============================================================
   STICKY CALL BUTTON (mobile)
   ============================================================ */
.sticky-call{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 600;
  display:none;
  background: var(--ocean-deep);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}
.sticky-call .row{ display:flex; gap:10px; }
.sticky-call a{
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight:600;
  font-size:0.92rem;
}
.sticky-call .call{ background: var(--ocean-bright); color:#fff; }
.sticky-call .quote{ background: transparent; border:1px solid rgba(255,255,255,0.4); color:#fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{
  position:relative;
  min-height: 62vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background: var(--ocean-deep);
}
.page-hero .hero-media img{ animation:none; transform:scale(1); }
.page-hero .hero-content{ padding-top:150px; padding-bottom: var(--sp-5); }
.page-hero h1{ max-width: 18ch; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--sea-foam-dim);
  margin-bottom: var(--sp-2);
}
.breadcrumb a{ color: rgba(255,255,255,0.7); }
.breadcrumb a:hover{ color:#fff; }

/* ============================================================
   FORM (contact)
   ============================================================ */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-3);
}
.form-grid .full{ grid-column: 1 / -1; }
.field label{
  display:block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width:100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--ocean-bright);
  outline:none;
}
.field textarea{ resize: vertical; min-height: 120px; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.contact-info-card{
  background: var(--ocean-deep);
  color:#fff;
  border-radius: var(--radius);
  padding: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.contact-info-card h3{ color:#fff; }
.contact-info-row{
  display:flex; gap:14px; align-items:flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-info-row:first-of-type{ border-top:none; }
.contact-info-row svg{ width:20px; height:20px; color: var(--sea-foam); flex-shrink:0; margin-top:2px; }
.contact-info-row a, .contact-info-row span{ color: rgba(255,255,255,0.85); font-size:0.94rem; }

.map-frame{
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
}
.map-frame iframe{ width:100%; height:100%; border:0; }

.form-note{ font-size:0.82rem; color: var(--ink-soft); margin-top:10px; }
.form-success{
  display:none;
  background: var(--sea-foam-dim);
  border: 1px solid var(--sea-foam);
  color: var(--ocean-deep);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: var(--sp-2);
}
.form-success.show{ display:block; }

/* ============================================================
   GALLERY
   ============================================================ */
.filter-row{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom: var(--sp-4);
}
.filter-btn{
  padding: 9px 18px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.85rem;
  font-weight:500;
  color: var(--ink-soft);
  transition: all .3s;
}
.filter-btn.active, .filter-btn:hover{
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color:#fff;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-2);
}
.gallery-item{
  border-radius: var(--radius);
  overflow:hidden;
  position:relative;
  aspect-ratio: 4/5;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-item .tag{
  position:absolute; left:12px; bottom:12px;
  background: rgba(11,51,70,0.82);
  color:#fff;
  font-family: var(--font-mono);
  font-size:0.66rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding: 6px 12px;
  border-radius:3px;
}
.gallery-item.wide{ grid-column: span 2; }

/* ============================================================
   VALUES (about page)
   ============================================================ */
.values-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-3);
}
.value-card{ padding: var(--sp-3) 0; border-top: 1px solid var(--line); }
.value-card .n{ font-family: var(--font-mono); color: var(--ocean-bright); font-size:0.72rem; letter-spacing:0.1em; }

.team-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-3);
}
.team-card .photo{
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow:hidden;
  margin-bottom: var(--sp-2);
}
.team-card .photo img{ width:100%; height:100%; object-fit:cover; }
.team-card h3{ font-size:1.05rem; margin-bottom:2px; }
.team-card span{ font-family: var(--font-mono); font-size:0.72rem; color: var(--ocean-bright); text-transform:uppercase; letter-spacing:0.06em; }

/* ============================================================
   SERVICES PAGE — detailed rows
   ============================================================ */
.service-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items:center;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child{ border-bottom:none; }
.service-row.reverse .service-row-media{ order:2; }
.service-row-media{
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 5/4;
}
.service-row-media img{ width:100%; height:100%; object-fit:cover; }
.service-row-copy .tag-list{ display:flex; flex-wrap:wrap; gap:8px; margin: var(--sp-2) 0 var(--sp-3); }
.service-row-copy .tag-list span{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform:uppercase;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--ink-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
  .nav-links, .header-actions .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .about-grid, .ba-wrap, .contact-grid, .service-row, .service-row.reverse{
    grid-template-columns: 1fr;
  }
  .service-row.reverse .service-row-media{ order:0; }
  .process-rail{ grid-template-columns: 1fr 1fr; row-gap: var(--sp-4); }
  .process-rail::before{ display:none; }
  .testi-track{ grid-template-columns: 1fr; }
  .hero-stats .container{ grid-template-columns: repeat(2,1fr); row-gap: var(--sp-2); }
  .sticky-call{ display:block; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px){
  .why-grid, .services-grid, .footer-grid, .team-grid, .gallery-grid, .values-grid{ grid-template-columns: 1fr; }
  .gallery-item.wide{ grid-column: span 1; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero-content{ padding-top: 130px; }
  section{ }
  .section{ padding: var(--sp-5) 0; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed; inset:0;
  background: var(--ocean-deep);
  z-index: 900;
  display:flex; flex-direction:column;
  padding: 100px var(--sp-3) var(--sp-3);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav a{
  color:#fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav .btn{ margin-top: var(--sp-3); }
.mobile-close{
  position:absolute; top:26px; right:var(--sp-3);
  background:none; border:0; color:#fff; width:42px; height:42px;
}
