/* ============================================
   SHORE BUILD PROS — Refreshed Palette
   Clean white · Slate · Sand · Teal
   ============================================ */

:root {
  --slate:       #1e2a32;
  --slate-mid:   #2d3e4a;
  --slate-light: #4a5c68;
  --teal:        #2a7a6e;
  --teal-light:  #38a093;
  --sand:        #c9a96e;
  --sand-light:  #dfc08a;
  --white:       #ffffff;
  --off-white:   #f7f5f2;
  --cream:       #efe9e0;
  --light-gray:  #e4e8eb;
  --gray:        #8a9aaa;
  --text:        #1e2a32;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-italic:  'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 42, 50, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); letter-spacing: 2px; }
.logo-sub  { font-family: var(--font-display); font-size: 0.85rem; color: var(--sand); letter-spacing: 4px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--sand); }
.nav-cta { background: var(--teal) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 4px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--teal-light) !important; }
.nav-cta.active { background: var(--teal-light) !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: var(--slate); padding: 1rem 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a { text-decoration: none; color: rgba(255,255,255,0.85); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
.mobile-menu.open { display: flex; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--slate);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(42,122,110,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201,169,110,0.1) 0%, transparent 50%),
    linear-gradient(150deg, #1e2a32 0%, #2d3e4a 60%, #1e2a32 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 6px);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: 680px;
  margin-left: 8vw;
}
.hero-eyebrow { font-size: 0.82rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); line-height: 0.9; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-family: var(--font-italic); font-style: italic; color: var(--sand); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge { position: absolute; bottom: 3rem; right: 4rem; display: flex; flex-direction: column; align-items: center; gap: 0.2rem; border: 2px solid var(--sand); padding: 1rem 1.5rem; border-radius: 4px; z-index: 2; }
.hero-badge span { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 3px; color: var(--sand); line-height: 1; }
.hero-badge span:nth-child(2) { font-size: 0.7rem; color: rgba(255,255,255,0.35); }

/* ============ BUTTONS ============ */
.btn-primary { display: inline-block; background: var(--teal); color: var(--white); padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.35); transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--sand); color: var(--sand); }
.btn-outline { display: inline-block; background: transparent; color: var(--slate); padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 600; border: 2px solid var(--slate); transition: all 0.2s; }
.btn-outline:hover { background: var(--slate); color: var(--white); }
.btn-white { display: inline-block; background: var(--white); color: var(--slate); padding: 0.85rem 2.5rem; border-radius: 4px; text-decoration: none; font-weight: 700; transition: all 0.2s; }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

/* ============ SECTION LABELS ============ */
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--slate); line-height: 1; }

/* ============ SERVICES STRIP ============ */
.services-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--off-white); border-top: 4px solid var(--teal); }
.strip-item { padding: 2.5rem 2rem; border-right: 1px solid var(--light-gray); transition: background 0.2s; }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--white); }
.strip-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.strip-item h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--slate); letter-spacing: 1px; margin-bottom: 0.5rem; }
.strip-item p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 1rem; }
.strip-item a { font-size: 0.85rem; font-weight: 600; color: var(--teal); text-decoration: none; }

/* ============ ABOUT BAND ============ */
.about-band { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--slate); line-height: 1; margin-bottom: 1.5rem; }
.about-text p { color: var(--slate-light); line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.about-text .btn-primary { margin-top: 1rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-block { background: var(--slate); padding: 2rem 1.5rem; border-radius: 8px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--sand); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; }

/* ============ WORK PREVIEW ============ */
.work-preview { background: var(--off-white); padding: 6rem 2rem; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto 2.5rem; }
.work-card { border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.work-img { height: 240px; object-fit: cover; width: 100%; display: block; }
.placeholder-img { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); font-size: 0.9rem; letter-spacing: 1px; }
.work-info { padding: 1.25rem 1.5rem; }
.work-info h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--slate); letter-spacing: 0.5px; }
.work-info p { font-size: 0.85rem; color: var(--gray); margin-top: 0.25rem; }
.center-btn { text-align: center; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--teal); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); letter-spacing: 1px; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band .btn-white { color: var(--teal); }

/* ============ FOOTER ============ */
.footer { background: var(--slate); padding: 4rem 2rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer-logo { margin-bottom: 0.5rem; }
.footer-links h4, .footer-contact h4 { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--sand); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--sand); text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ============ PAGE HERO ============ */
.page-hero { background: var(--slate); padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(42,122,110,0.3) 0%, transparent 65%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--teal-light); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); color: var(--white); line-height: 1; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ============ GALLERY ============ */
.gallery-section { padding: 5rem 2rem; max-width: 1300px; margin: 0 auto; }
.filter-tabs { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.6rem 1.5rem; border: 2px solid var(--light-gray); background: none; color: var(--slate); border-radius: 100px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--slate); color: var(--white); border-color: var(--slate); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { border-radius: 8px; overflow: hidden; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.07); transition: all 0.3s; }
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.gallery-img { height: 260px; width: 100%; object-fit: cover; display: block; }
.gallery-caption { padding: 1rem 1.25rem; }
.gallery-caption h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--slate); letter-spacing: 0.5px; }
.gallery-caption p { font-size: 0.82rem; color: var(--gray); margin-top: 0.2rem; }

/* ============ SERVICES DETAIL ============ */
.services-detail { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img { border-radius: 8px; width: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 0.9rem; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-row-text h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--slate); line-height: 1; margin-bottom: 1rem; }
.service-row-text p { color: var(--slate-light); line-height: 1.8; margin-bottom: 1.5rem; }
.service-row-text ul { list-style: none; margin-bottom: 2rem; }
.service-row-text ul li { padding: 0.4rem 0; color: var(--slate-light); font-size: 0.95rem; }
.service-row-text ul li::before { content: '✓'; color: var(--teal); font-weight: 700; margin-right: 0.75rem; }

/* ============ WHY WORK / PERKS ============ */
.why-work { padding: 5rem 2rem; background: var(--off-white); }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.perk-card { background: var(--white); padding: 2rem; border-radius: 8px; border-top: 3px solid var(--teal); }
.perk-icon { font-size: 2rem; margin-bottom: 1rem; }
.perk-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--slate); letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.perk-card p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.7; }

/* ============ POSITIONS ============ */
.positions { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.positions-list { display: flex; flex-direction: column; gap: 1.5rem; }
.position-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 2rem 2.5rem; border-left: 4px solid var(--teal); }
.position-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
.position-header h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--slate); }
.position-type { background: var(--slate); color: var(--white); padding: 0.25rem 0.85rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; }
.position-card p { color: var(--slate-light); line-height: 1.7; margin-bottom: 1rem; }
.position-card ul { list-style: none; margin-bottom: 1.5rem; }
.position-card ul li { color: var(--slate-light); font-size: 0.9rem; padding: 0.25rem 0; }
.position-card ul li::before { content: '→'; color: var(--teal); margin-right: 0.5rem; }

/* ============ FORMS ============ */
.apply-section, .contact-section { padding: 5rem 2rem; background: var(--off-white); }
.form-container { max-width: 700px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.contact-wrapper { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-form-wrap { background: var(--white); padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--slate); margin-bottom: 1.5rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--slate); line-height: 1; margin-bottom: 1rem; }
.contact-info > p { color: var(--slate-light); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; margin-top: 0.1rem; }
.contact-detail strong { display: block; color: var(--slate); font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail p { color: var(--slate-light); font-size: 0.9rem; line-height: 1.6; }
.contact-detail a { color: var(--teal); text-decoration: none; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--slate); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--light-gray); border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text); transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 0.5rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { margin-left: 2rem; }
  .hero-badge { display: none; }
  .services-strip { grid-template-columns: 1fr 1fr; }
  .strip-item { border-bottom: 1px solid var(--light-gray); }
  .about-band { grid-template-columns: 1fr; gap: 3rem; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-strip { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem; }
  .hero-title { font-size: 3.5rem; }
}

/* ============ OUTDOOR SHOWERS PAGE ============ */
.shower-intro { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.shower-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.shower-intro-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--slate); line-height: 1; margin-bottom: 1rem; }
.shower-intro-text p { color: var(--slate-light); line-height: 1.8; margin-bottom: 1rem; }
.shower-intro-text a { color: var(--teal); }
.shower-stats { display: flex; gap: 2rem; margin: 2rem 0; }
.shower-stat { display: flex; flex-direction: column; }
.shower-stat .stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--teal); line-height: 1; }
.shower-stat .stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

.shower-process { background: var(--off-white); padding: 5rem 2rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.process-card { background: var(--white); border-radius: 8px; padding: 1.5rem; position: relative; }
.process-num { font-family: var(--font-display); font-size: 3rem; color: var(--light-gray); line-height: 1; margin-bottom: 0.5rem; }
.process-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--slate); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.6; }

.shower-options { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.option-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--light-gray); background: var(--white); position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.option-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.option-card.featured { border: 2px solid var(--teal); }
.option-badge { position: absolute; top: 1rem; right: 1rem; background: var(--teal); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; padding: 0.3rem 0.75rem; border-radius: 100px; text-transform: uppercase; z-index: 1; }
.option-body { padding: 1.25rem 1.5rem 1.5rem; }
.option-body h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--slate); margin-bottom: 0.5rem; }
.option-body p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 1.25rem; }

.addons { background: var(--off-white); padding: 5rem 2rem; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.addon-item { background: var(--white); border-radius: 8px; padding: 1.75rem; border-top: 3px solid var(--sand); }
.addon-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.addon-item h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--slate); margin-bottom: 0.5rem; }
.addon-item p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.6; }

.service-area-band { background: var(--slate); padding: 5rem 2rem; }
.service-area-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-area-inner .section-label { color: var(--teal-light); }
.service-area-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.service-area-inner p { color: rgba(255,255,255,0.6); line-height: 1.7; }
.area-towns { display: flex; gap: 2rem; }
.towns-col { display: flex; flex-direction: column; gap: 0.6rem; }
.towns-col span { color: rgba(255,255,255,0.55); font-size: 0.9rem; padding-left: 1rem; border-left: 2px solid var(--teal); }

.crosslink-band { background: var(--teal); padding: 4rem 2rem; text-align: center; }
.crosslink-inner { max-width: 600px; margin: 0 auto; }
.crosslink-text .section-label { color: rgba(255,255,255,0.7); }
.crosslink-text h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); margin-bottom: 0.75rem; }
.crosslink-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; line-height: 1.7; }
.crosslink-text .btn-white { color: var(--teal); }

@media (max-width: 900px) {
  .shower-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .service-area-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .area-towns { flex-direction: column; gap: 1rem; }
  .shower-stats { gap: 1.25rem; }
}
