/* ============================================================
   J3 MARINE — STYLESHEET
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --orange:       #E8611A;
  --orange-hover: #C95010;
  --orange-glow:  rgba(232, 97, 26, 0.25);
  --orange-tint:  rgba(232, 97, 26, 0.10);

  --navy:         #0D1E36;
  --navy-mid:     #152D52;
  --navy-light:   #1E3E6E;
  --ink:          #070F1D;

  --white:        #FFFFFF;
  --off-white:    #F4F7FA;
  --gray-100:     #EEF1F5;
  --gray-300:     #CBD5E0;

  --text:         #1A2533;
  --text-muted:   #64748B;
  --text-faint:   rgba(255,255,255,0.50);

  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --max-w:        1200px;
  --gutter:       clamp(1.25rem, 4vw, 2rem);

  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.22);

  --ease:         0.25s ease;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

.eyebrow,
.section-header .eyebrow,
.hero-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.site-header.inner-header { background: var(--navy); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  inset-inline: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.nav-cta::after { display: none; }
.nav-cta:hover  { background: var(--orange-hover); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url('../images/hero-marina.jpg');
  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,20,38,0.72) 0%,
    rgba(13,30,54,0.48) 45%,
    rgba(7,20,38,0.86) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 7rem 5rem;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50%       { opacity: 1;   transform: scaleY(1.1);  }
}

/* ── SERVICES ICON GRID ────────────────────────────────────── */
.icon-services {
  padding-block: 5.5rem;
  background: var(--off-white);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--orange-tint);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--ease), color var(--ease);
}
.icon-wrap svg { width: 26px; height: 26px; }
.icon-letter {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
}
.icon-card:hover .icon-wrap { background: var(--orange); color: var(--white); }

.icon-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.icon-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SLIPS BANNER ──────────────────────────────────────────── */
.slips-banner {
  background: var(--orange);
  padding-block: 3rem;
}
.slips-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.slips-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--white);
  margin-bottom: 0.35rem;
}
.slips-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about { padding-block: 6rem; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--navy-mid); /* shows if image is missing */
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-content .btn { margin-top: 0.75rem; }

/* Team cards beside the About story */
.about-team-layout { grid-template-columns: 1.05fr 0.95fr; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.team-card:nth-child(3) img { object-position: center 38%; }
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,15,29,0.92), transparent 58%);
}
.team-card > span {
  position: absolute;
  z-index: 1;
  inset-inline: 1rem;
  bottom: 1rem;
  color: var(--white);
}
.team-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.team-card small {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--ease), transform var(--ease);
}
.team-card:hover img { transform: scale(1.045); }
.team-card:hover small,
.team-card:focus-visible small { opacity: 1; transform: none; }
.team-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Individual team stories */
.profile-section {
  padding-block: 6rem;
  scroll-margin-top: 72px;
}
.profile-section.profile-alt { background: var(--off-white); }
.profile-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.profile-layout.profile-reverse .profile-photo { order: 2; }
.profile-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.profile-photo.profile-fish { object-position: center 38%; }
.profile-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.profile-copy > p:not(.eyebrow) {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.profile-copy .btn { margin-top: 0.75rem; }

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.service-cards {
  padding-block: 6rem;
  background: var(--off-white);
}

/* 12-column grid; top row = 2 half-width, bottom = 3 thirds */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.card:nth-child(1) { grid-column: span 6; }
.card:nth-child(2) { grid-column: span 6; }
.card:nth-child(3),
.card:nth-child(4),
.card:nth-child(5) { grid-column: span 4; }

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* Card background image layer */
.card-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-mid);   /* placeholder colour */
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.card:hover .card-bg { transform: scale(1.05); }

/* Gradient overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,15,29,0.92) 0%,
    rgba(7,15,29,0.30) 55%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(7,15,29,0.96) 0%,
    rgba(7,15,29,0.55) 60%,
    rgba(7,15,29,0.10) 100%
  );
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  /* card height via aspect-ratio on parent */
}
.card:nth-child(1) .card-body,
.card:nth-child(2) .card-body { padding-top: 14rem; }
.card:nth-child(3) .card-body,
.card:nth-child(4) .card-body,
.card:nth-child(5) .card-body { padding-top: 10rem; }

.card-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.card:hover .card-body p {
  max-height: 80px;
  opacity: 1;
}

.card-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s, color var(--ease);
}
.card:hover .card-link { opacity: 1; transform: translateY(0); }
.card-link:hover { color: var(--white); }

/* ── CONTACT STRIP ─────────────────────────────────────────── */
.contact-strip {
  background: var(--navy);
  padding-block: 5.5rem;
}

/* Floating local weather widget */
.floating-weather {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 700;
  width: min(400px, calc(100vw - 2.5rem));
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.floating-weather-title {
  margin: 0;
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-weather iframe {
  display: block;
  width: 100%;
  max-width: 400px;
  border: 0;
}
.weather-credit {
  position: relative;
  z-index: 1;
  display: block;
  height: 20px;
  margin-top: -20px;
  overflow: hidden;
  text-indent: -9999em;
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.contact-col h3 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.contact-col p,
.contact-col address {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.85;
}
.contact-col a {
  color: rgba(255,255,255,0.72);
  transition: color var(--ease);
}
.contact-col a:hover { color: var(--orange); }

.contact-btn { margin-top: 1.5rem; }

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange) !important;
}
.map-link:hover { color: var(--white) !important; }

.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: rgba(255,255,255,0.42); }
.hours-list .closed { color: rgba(255,100,80,0.75); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--ink); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-logo {
  display: block;
  width: 120px;
  margin-bottom: 0.85rem;
}
.footer-logo img { width: 100%; height: auto; }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.65rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--ease), color var(--ease);
}
.social-link svg { width: 18px; height: 18px; }
.social-link span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.social-link:hover { background: var(--orange); color: var(--white); }

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--orange); }

.footer-contact p,
.footer-contact address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.footer-contact a { transition: color var(--ease); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.4rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ── INNER PAGES ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 11rem 6rem;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 15% 80%, rgba(232,97,26,0.20), transparent 30%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  right: -150px;
  top: -170px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero > .container > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.page-section { padding-block: 6rem; }
.values-section,
.product-categories {
  padding-block: 6rem;
  background: var(--off-white);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.value-card > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.value-card h3 { color: var(--navy); margin-bottom: 0.65rem; }
.value-card p { color: var(--text-muted); font-size: 0.92rem; }
.page-cta { padding-block: 3.5rem; background: var(--orange); }
.page-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.page-cta .eyebrow { color: rgba(255,255,255,0.72); }
.page-cta h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* Service detail page */
.service-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
}
.service-number {
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 0.3rem;
}
.service-detail h2 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.65rem; }
.service-detail p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.service-detail ul { display: grid; gap: 0.35rem; }
.service-detail li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.84rem;
}
.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.service-detail a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.service-detail a:hover { color: var(--orange-hover); }
.seasonal-pricing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

/* Seasonal pricing pages */
.pricing-hero { padding-bottom: 4rem; }
.pricing-switcher {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 2rem;
}
.pricing-switcher a {
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
}
.pricing-switcher a.active,
.pricing-switcher a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.pricing-section { padding-top: 3rem; background: var(--off-white); }
.pricing-container { max-width: 1040px; }
.pricing-notice,
.pricing-status {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
}
.pricing-status { padding: 3rem; text-align: center; border-left: 0; }
.pricing-status h2 { margin-bottom: 0.75rem; color: var(--navy); }
.pricing-status a { color: var(--orange); font-weight: 700; }
.pricing-groups { display: grid; gap: 1.5rem; }
.pricing-group {
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pricing-group > header { padding: 1.5rem 1.75rem 1.25rem; background: var(--navy); }
.pricing-group h2 { color: var(--white); font-size: 1.2rem; }
.pricing-group header p { margin-top: 0.35rem; color: rgba(255,255,255,0.72); font-size: 0.86rem; }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th,
.pricing-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100); text-align: left; }
.pricing-table thead th { color: var(--text-muted); font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pricing-table tbody th { width: 60%; color: var(--navy); font-size: 0.92rem; }
.pricing-table td:nth-child(2) { color: var(--navy); font-family: var(--font-head); font-weight: 800; white-space: nowrap; }
.pricing-table td:last-child { color: var(--text-muted); font-size: 0.86rem; white-space: nowrap; }
.pricing-table small { display: block; margin-top: 0.25rem; color: var(--text-muted); font-weight: 400; line-height: 1.45; }
.pricing-table tr:last-child th,
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-updated { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.78rem; text-align: right; }

/* Our work */
.work-section { background: var(--off-white); }
.project-gallery { display: grid; gap: 2rem; }
.project-card { overflow: hidden; border: 1px solid var(--gray-300); border-radius: 14px; background: var(--white); box-shadow: 0 10px 30px rgba(7, 21, 43, 0.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.project-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(7, 21, 43, 0.12); }
.project-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--navy); }
.project-comparison figure { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.project-comparison img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.project-card:hover .project-comparison img { transform: scale(1.015); }
.project-photo-label { position: absolute; left: 0.85rem; bottom: 0.85rem; padding: 0.38rem 0.65rem; border-radius: 999px; background: rgba(7, 21, 43, 0.88); color: var(--white); font-family: var(--font-head); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.project-photo-label.after { background: var(--orange); }
.project-copy { padding: clamp(1.35rem, 3vw, 2rem); }
.project-copy h2 { margin: 0.25rem 0 0.7rem; color: var(--navy); }
.project-copy p { margin-bottom: 0; color: var(--text-muted); white-space: pre-line; }
.project-date { color: var(--orange); font-family: var(--font-head); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.work-empty { padding: 3rem; border: 1px dashed var(--gray-300); border-radius: 14px; background: var(--white); text-align: center; }

/* Product spotlight */
.spotlight-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.3fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.spotlight-feature > div:last-child > p:not(.eyebrow) {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.spotlight-mark {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--navy);
  border: 12px solid var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.spotlight-mark span {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 800;
}
.spotlight-mark small {
  margin-top: 1rem;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.spotlight-note {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.spotlight-note strong { color: var(--navy); font-family: var(--font-head); }
.spotlight-note p { color: var(--text-muted); margin-block: 0.35rem; }
.spotlight-note a { color: var(--orange); font-weight: 700; }

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-fallback {
  margin: 1rem auto 0;
  max-width: 1000px;
  color: var(--text-muted);
  font-size: 0.84rem;
  text-align: center;
}
.video-fallback a { color: var(--orange); font-weight: 700; }
.video-fallback a:hover { color: var(--orange-hover); }
.youtube-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}
.youtube-callout h2 { color: var(--navy); margin-bottom: 0.4rem; }
.youtube-callout > div > p:last-child { color: var(--text-muted); }

/* Contact page */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-form { display: grid; gap: 1.15rem; margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: 400 0.95rem var(--font-body);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-tint);
}
.contact-form .btn { justify-self: start; }
.form-note { color: var(--text-muted); font-size: 0.8rem; }
.contact-sidebar { display: grid; gap: 1rem; }
.contact-info-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: rgba(255,255,255,0.74);
}
.contact-info-card h3 {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-info-card a:hover { color: var(--orange); }
.contact-info-card .hours-list li { color: rgba(255,255,255,0.75); }

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-inner { gap: 2rem; }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card:nth-child(1),
  .card:nth-child(2) { grid-column: span 1; }
  .card:nth-child(3),
  .card:nth-child(4),
  .card:nth-child(5) { grid-column: span 1; }

  .contact-inner { gap: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .service-list-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .project-comparison { grid-template-columns: 1fr; }
  .hero { background-position: 56% center; }

  .floating-weather {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(400px, calc(100% - 2rem));
    margin: 2rem auto;
  }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset-block-start: 72px;
    inset-inline: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 800;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-cta { align-self: flex-start; }

  /* Slips banner */
  .slips-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-team-layout .team-grid { order: -1; }

  /* Cards */
  .cards-grid {
    display: flex;
    flex-direction: column;
  }
  .card-body p     { max-height: none; opacity: 1; }
  .card-link       { opacity: 1; transform: none; }
  .card:nth-child(1) .card-body,
  .card:nth-child(2) .card-body,
  .card:nth-child(3) .card-body,
  .card:nth-child(4) .card-body,
  .card:nth-child(5) .card-body { padding-top: 11rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .page-hero { padding-block: 9rem 4.5rem; }
  .page-section,
  .values-section,
  .product-categories { padding-block: 4.5rem; }
  .value-grid,
  .spotlight-feature,
  .contact-page-grid { grid-template-columns: 1fr; }
  .spotlight-mark { max-width: 320px; margin-inline: auto; }
  .page-cta-inner { flex-direction: column; align-items: flex-start; }
  .youtube-callout { flex-direction: column; align-items: flex-start; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-layout.profile-reverse .profile-photo { order: 0; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 3.25rem; }
  .icon-grid  { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-number { padding: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 320px; }
}
