/* =========================================================
   J.J.'S BOAT CLEANING — Devon + Cornwall
   Editorial navy / salt / signal orange. Sharp geometry,
   oversized type, grain, scroll choreography via GSAP.
   ========================================================= */

:root {
  --navy: #081521;
  --navy-2: #0c1e2e;
  --navy-3: #12293d;
  --salt: #efeadd;
  --salt-2: #e5ddc9;
  --white: #f7f4ec;
  --orange: #ff5325;
  --orange-dark: #d93e12;
  --sky: #9dbfd2;
  --muted-light: rgba(247, 244, 236, 0.62);
  --muted-dark: rgba(8, 21, 33, 0.62);
  --line-light: rgba(247, 244, 236, 0.14);
  --line-dark: rgba(8, 21, 33, 0.16);
  --display: "Clash Display", "Arial Black", sans-serif;
  --body: "General Sans", -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --edge: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--orange); color: var(--navy); }

/* Film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/images/noise.png") repeat;
  background-size: 160px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px var(--edge);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(8, 21, 33, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-light);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--orange); }
.brand-mark { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; margin-left: auto; margin-right: 10px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted-light);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-call { background: var(--orange); color: var(--navy); }
.btn-call:hover { background: var(--white); }
.btn-ghost { background: transparent; border-color: var(--line-light); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.on-light .btn-ghost { border-color: var(--line-dark); color: var(--navy); }
.on-light .btn-ghost:hover { border-color: var(--navy); }
.btn.big { padding: 18px 32px; font-size: 16px; }

/* =========================================================
   SHARED
   ========================================================= */
.section { padding: clamp(90px, 12vw, 150px) var(--edge); position: relative; }
.section.on-light { background: var(--salt); color: var(--navy); }
.wrap { max-width: 1320px; margin: 0 auto; }

.tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.tag::before { content: ""; width: 34px; height: 1px; background: var(--orange); }

.display-2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.section-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 540px;
  color: var(--muted-light);
}
.on-light .section-lede { color: var(--muted-dark); }

/* Signal stripe divider */
.stripe {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 22px,
    var(--navy) 22px 44px,
    var(--salt) 44px 66px,
    var(--navy) 66px 88px
  );
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh;
  padding: 120px var(--edge) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 45%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 21, 33, 0.72) 0%, rgba(8, 21, 33, 0.45) 45%, rgba(8, 21, 33, 0.94) 100%),
    linear-gradient(100deg, rgba(8, 21, 33, 0.85) 20%, rgba(8, 21, 33, 0.2) 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.coords {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.coords::before { content: ""; width: 34px; height: 1px; background: var(--orange); }

.display-1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 11.5vw, 190px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.display-1 .line { display: block; overflow: hidden; }
.display-1 em { font-style: normal; color: var(--orange); }

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
}
.hero .lead {
  font-size: clamp(16.5px, 1.35vw, 20px);
  color: var(--muted-light);
  max-width: 460px;
}
.hero .lead strong { color: var(--white); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.price-chip {
  width: 100%;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-top: 4px;
}
.price-chip strong { color: var(--white); font-weight: 600; }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--navy);
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  gap: 44px;
  padding-right: 44px;
  animation: tick 30s linear infinite;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track .sep { color: var(--orange); }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* =========================================================
   SERVICES — editorial rows
   ========================================================= */
.svc-rows { margin-top: 30px; }
.svc-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--line-dark);
  transition: background 0.2s;
}
.svc-row:last-child { border-bottom: 1px solid var(--line-dark); }
.svc-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--orange);
}
.svc-row h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.svc-row p { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted-dark); align-self: center; }
.svc-list {
  list-style: none;
  display: grid;
  gap: 0;
  align-self: start;
}
.svc-list li {
  border-top: 1px solid var(--line-dark);
  padding: 10px 0;
  font-size: clamp(15px, 1.15vw, 16.5px);
  font-weight: 500;
  color: rgba(8, 21, 33, 0.8);
}
.svc-list li:first-child { border-top: none; padding-top: 0; }

.price-note {
  margin-top: 56px;
  max-width: 820px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.25;
  color: var(--navy);
}
.price-note em { font-style: normal; color: var(--orange); }
.price-note small {
  display: block;
  font-family: var(--body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--muted-dark);
  margin-top: 14px;
}

/* =========================================================
   WHERE — copy + portrait video panel
   ========================================================= */
.where-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.where-video {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(33vw, 380px);
  margin-top: clamp(-200px, -14vw, -80px);
  z-index: 5;
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.65);
}
.where-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.where-video figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 21, 33, 0.72);
  padding: 7px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  margin-top: 48px;
}
.where-item { border-top: 1px solid var(--line-light); padding-top: 26px; }
.where-item .svc-num { display: block; margin-bottom: 12px; }
.where-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  margin-bottom: 10px;
  line-height: 1.05;
}
.where-item p { color: var(--muted-light); font-size: 15.5px; }

/* =========================================================
   MEET JAY JAY
   ========================================================= */
.meet-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.meet-photo { overflow: hidden; position: relative; }
.meet-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  width: 100%;
  will-change: transform;
}
.meet-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 21, 33, 0.72);
  padding: 7px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.meet-copy p { margin-bottom: 18px; font-size: clamp(16px, 1.35vw, 19px); color: rgba(8, 21, 33, 0.82); max-width: 560px; }
.meet-copy p strong { color: var(--navy); }

/* Depth type: text behind Jay Jay, cutout in front */
.depth-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  text-align: center;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
  text-shadow: 0 4px 30px rgba(8, 21, 33, 0.4);
  pointer-events: none;
}
.depth-text span { display: inline-block; white-space: pre; }
.depth-cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  z-index: 3;
  pointer-events: none;
}
.meet-photo figcaption { z-index: 4; }

/* =========================================================
   STEPS
   ========================================================= */
.steps-split {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.steps-photo { overflow: hidden; }
.steps-photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 38px);
  margin-top: 48px;
  counter-reset: step;
}
.steps li { border-top: 1px solid var(--line-light); padding-top: 26px; }
.steps .svc-num { display: block; margin-bottom: 12px; }
.steps h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 10px;
  line-height: 1.05;
}
.steps p { color: var(--muted-light); font-size: 15.5px; }

/* =========================================================
   AREAS — giant type index
   ========================================================= */
.areas-list { margin-top: 40px; }
.area-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(10px, 1.6vw, 20px) 0;
  border-top: 1px solid var(--line-dark);
  text-decoration: none;
  transition: padding-left 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.area-row:last-child { border-bottom: 1px solid var(--line-dark); }
.area-row h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.area-row .county {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
  white-space: nowrap;
}
.area-row:hover { padding-left: 18px; }
.area-row:hover h3 { color: var(--orange); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: 50px;
}
.faq-item { border-top: 1px solid var(--line-dark); padding-top: 22px; }
.faq-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.faq-item p { font-size: 15.5px; color: var(--muted-dark); max-width: 480px; }

/* =========================================================
   BIG CTA
   ========================================================= */
.cta {
  text-align: left;
  padding: clamp(110px, 14vw, 180px) var(--edge);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--navy) 0%, rgba(8, 21, 33, 0.55) 40%, rgba(8, 21, 33, 0.75) 100%),
    url("/images/water-texture.webp") center / cover no-repeat;
}
.cta .wrap { position: relative; z-index: 2; }
.cta .display-2 { margin-bottom: 10px; }
.cta-phone {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 10.5vw, 170px);
  letter-spacing: 0.005em;
  color: var(--orange);
  text-decoration: none;
  line-height: 1.05;
  margin: 20px 0 26px;
  transition: color 0.2s;
  overflow: hidden;
}
.cta-phone:hover { color: var(--white); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--line-light);
  padding: 60px var(--edge) 36px;
}
.foot-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.foot-brand p { color: var(--muted-light); font-size: 14.5px; margin-top: 10px; max-width: 300px; }
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  color: var(--muted-light);
  text-decoration: none;
  font-size: 14px;
  padding: 3px 0;
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--white); }
.foot-towns { columns: 2; column-gap: 32px; }
.foot-bottom {
  max-width: 1320px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-light);
}
.foot-bottom a { color: var(--white); text-decoration: none; }
.crafted { display: inline-flex; align-items: center; gap: 8px; }
.crafted a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  line-height: 1;
}
.sh-logo {
  height: 24px;
  width: 24px;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  flex: none;
}

/* =========================================================
   TOWN PAGES
   ========================================================= */
.town-hero {
  min-height: 72svh;
  padding: 170px var(--edge) 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.town-bg { position: absolute; inset: 0; }
.town-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.town-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 33, 0.78) 0%, rgba(8, 21, 33, 0.5) 50%, rgba(8, 21, 33, 0.93) 100%);
}
.town-hero .wrap { width: 100%; position: relative; z-index: 2; }
.town-hero .display-1 { font-size: clamp(48px, 10.5vw, 170px); }
.crumb {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.crumb::before { content: ""; width: 34px; height: 1px; background: var(--orange); }
.crumb a { color: inherit; text-decoration: none; }
.crumb a:hover { color: var(--white); }
.town-intro {
  font-size: clamp(16.5px, 1.35vw, 20px);
  color: var(--muted-light);
  max-width: 620px;
  margin-bottom: 36px;
}
.town-list-inline { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.town-list-inline a {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--muted-dark);
  transition: color 0.15s;
}
.town-list-inline a:hover { color: var(--orange); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 56px 1fr; }
  .svc-row p, .svc-row .svc-list { grid-column: 2; }
  .meet-grid { grid-template-columns: 1fr; }
  .meet-photo { max-width: 440px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .where-split { grid-template-columns: 1fr; }
  .where-video { justify-self: end; width: min(62%, 320px); margin-top: -60px; }
  .where-grid, .steps, .faq-grid { grid-template-columns: 1fr; gap: 26px; }
  .steps-split { grid-template-columns: 1fr; }
  .steps-photo { max-width: 400px; }
  .hero-foot { padding-bottom: 36px; }
}
@media (max-width: 560px) {
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .nav .btn-call { width: auto; padding: 11px 16px; font-size: 13px; }
  .brand { font-size: 14px; }
  .area-row .county { display: none; }
}
