﻿/* ============================================================
   SUDS N TUBS — Redesign v2
   Bold editorial energy, electric blue + sunshine accent.
   ============================================================ */

:root {
  --c-primary: #1737E6;
  /* electric cobalt */
  --c-primary-deep: #0A1FA3;
  --c-primary-soft: #DCE4FF;
  --c-accent: #FFD60A;
  /* sunshine */
  --c-accent-deep: #F5B800;
  --c-ink: #000000;
  --c-ink-soft: #fff;
  --c-paper: #F5F2EA;
  /* warm off-white */
  --c-paper-pure: #FFFFFF;
  --c-line: rgba(10, 14, 26, 0.12);
  --c-line-strong: rgba(10, 14, 26, 0.22);

  --f-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 28px;
  --r-xl: 44px;

  --pad: clamp(20px, 4vw, 45px);
  --gutter: clamp(16px, 2.5vw, 32px);
  /* --section-y: 100px 0px 100px 0px; */
  --header-h: clamp(72px, 9vw, 88px);
  --header-stack-h: calc(var(--header-h) + 20px);
}

section {
  padding: 100px 0px !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--c-accent);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.skip-link:focus {
  left: var(--pad);
  top: 12px;
  outline: 3px solid var(--c-paper);
  outline-offset: 2px;
}

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.display {
  font-family: var(--f-display) !important;
  font-weight: 900;
  font-stretch: 125%;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.mono {
  font-family: var(--f-mono);
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0;
  font-size: 16px;
}

/* â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-paper);
}

.btn-primary:hover {
  background: var(--c-primary-deep);
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-ink);
}

.btn-accent:hover {
  background: var(--c-ink);
  color: var(--c-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}

.btn-ghost:hover {
  background: var(--c-ink);
  color: var(--c-paper);
}

.btn-ghost-light {
  background: transparent;
  color: var(--c-paper);
  border-color: rgba(245, 242, 234, 0.4);
}

.btn-ghost-light:hover {
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-paper);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* â”€â”€ Photo placeholder â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.photo-slot {
  position: relative;
  background: repeating-linear-gradient(135deg,
      rgba(23, 55, 230, 0.10) 0px,
      rgba(23, 55, 230, 0.10) 2px,
      rgba(23, 55, 230, 0.04) 2px,
      rgba(23, 55, 230, 0.04) 14px), #E5EAF7;
  border: 1px dashed rgba(23, 55, 230, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.photo-slot.has-image {
  background: var(--c-ink);
  border: 0;
}

.photo-slot.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slot.has-image .ph-label {
  display: none;
}

.photo-slot .ph-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 14, 26);
  background: rgba(245, 242, 234, 0.92);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(10, 14, 26, 0.1);
  max-width: 80%;
}

.photo-slot.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 2px,
      rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 14px),
    var(--c-ink-soft);
  border-color: rgba(255, 255, 255, 0.18);
}

.photo-slot.dark .ph-label {
  background: rgba(10, 14, 26, 0.7);
  color: rgba(245, 242, 234, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg,
      rgba(6, 9, 20, 0.82) 0%,
      rgba(10, 14, 26, 0.38) 38%,
      rgba(10, 14, 26, 0.12) 72%,
      rgba(10, 14, 26, 0) 100%);
  border-bottom: 1px solid rgba(245, 242, 234, 0.06);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.site-header--solid {
  background: linear-gradient(180deg,
      rgba(10, 14, 26, 0.96) 0%,
      rgba(10, 14, 26, 0.88) 45%,
      rgba(10, 14, 26, 0.78) 100%);
  border-bottom-color: rgba(245, 242, 234, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: var(--header-h);
  padding-block: 10px;
}

.header-nav-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  border-radius: var(--r-sm);
}

.brand:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
}

.brand-logo {
  width: auto;
  height: clamp(48px, 7vw, 68px);
  max-width: min(280px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.brand-logo--missing {
  display: none !important;
}

.brand:has(.brand-logo:not(.brand-logo--missing)) .brand-mark,
.brand:has(.brand-logo:not(.brand-logo--missing)) .brand-name {
  display: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--c-primary);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.5) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.4) 0 2px, transparent 3px);
}

.brand-mark .drum {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2.5px solid var(--c-accent);
  position: relative;
  z-index: 1;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name .name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--c-paper);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75), 0 0 1px rgba(0, 0, 0, 0.9);
}

.brand-name .sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.78);
  margin-top: 3px;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.nav-main {

  --a: flex;
  --b: center;
  --c: space-between;

  --d: 16;
  --e: 2;

  --w: 100%;
  --x: 160px;

  display: var(--a);

  align-items: var(--b);

  justify-content: var(--c);

  gap: calc(var(--d) * var(--e) * 1px);

  width:
    calc(var(--w) - (calc(var(--x) + var(--x))));
}

.nav-main a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 6px 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75), 0 0 1px rgba(0, 0, 0, 0.85);
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--c-accent);
  transition: right 0.2s ease;
}

.nav-main a:hover::after {
  right: 0;
}

.nav-main a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.nav-main a:focus-visible::after {
  right: 0;
}

.site-header .btn-primary {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
}

/* Mobile navigation (replaces hidden desktop nav) */
.site-nav-mobile {
  display: none;
  position: relative;
}

.site-nav-mobile>summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(245, 242, 234, 0.22);
  background: rgba(245, 242, 234, 0.06);
  color: var(--c-paper);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-nav-mobile>summary::-webkit-details-marker {
  display: none;
}

.site-nav-mobile>summary:hover {
  background: rgba(245, 242, 234, 0.12);
  border-color: rgba(255, 214, 10, 0.45);
}

.site-nav-mobile>summary:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.site-nav-mobile .burger {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-nav-mobile .burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
}

.site-nav-mobile[open]>summary {
  background: rgba(23, 55, 230, 0.35);
  border-color: rgba(255, 214, 10, 0.5);
}

.site-nav-mobile-panel {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  min-width: min(280px, 86vw);
  padding: 12px;
  border-radius: var(--r-md);
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid rgba(245, 242, 234, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.site-nav-mobile-panel a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(245, 242, 234, 0.95);
  border-radius: var(--r-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav-mobile-panel a:hover,
.site-nav-mobile-panel a:focus-visible {
  background: rgba(255, 214, 10, 0.12);
  color: var(--c-accent);
  outline: none;
}

.site-nav-mobile-panel a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--c-accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

@media (max-width: 920px) {
  .nav-main:not(.wp-block-navigation) {
    display: none;
  }

  .site-nav-mobile {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand-name .sub {
    display: none;
  }

  .header-right .btn span:not(.arrow) {
    font-size: 13px;
  }
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100svh;
  padding-top: var(--header-stack-h);
  box-sizing: border-box;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo .photo-slot {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(23, 55, 230, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(255, 214, 10, 0.10) 0%, transparent 50%),
    repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 2px,
      rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 18px),
    linear-gradient(180deg, #000000 0%, #1A2240 100%);
  border: none;
}

.hero-photo .ph-label {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(245, 242, 234, 0.85);
  color: rgba(10, 14, 26, 0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 12% 42%, rgba(10, 14, 26, 0.88) 0%, transparent 52%),
    radial-gradient(ellipse 80% 60% at 88% 18%, rgba(23, 55, 230, 0.22) 0%, transparent 48%),
    linear-gradient(165deg, rgba(10, 14, 26, 0.5) 0%, rgba(10, 14, 26, 0.28) 42%, rgba(10, 14, 26, 0.9) 100%);
  pointer-events: none;
}

.hero-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(120px, 32vh, 320px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(6, 8, 18, 0.82) 0%,
      rgba(10, 14, 26, 0.5) 38%,
      rgba(10, 14, 26, 0.18) 68%,
      rgba(10, 14, 26, 0) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 214, 10, 0.06) 0%, transparent 18%, transparent 82%, rgba(23, 55, 230, 0.08) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  grid-row: 1;
  grid-column: 1;
  min-height: 0;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: clamp(20px, 4vh, 48px);
  padding-bottom: clamp(20px, 4vh, 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 12px;
  margin-bottom: clamp(10px, 2vh, 20px);
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--c-accent);
  background: rgba(10, 14, 26, 0.82);
  border: 1px solid rgba(245, 242, 234, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 20px;
}

.hero-eyebrow .pin {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.28);
}

.hero-title {
  font-size: 60px;
  margin-bottom: clamp(12px, 2vh, 22px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px 0px;
}

.hero-title .line1 {
  display: block;
  position: relative;
  padding-bottom: 0.12em;
}

.hero-title .line1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(2.2em, 120px);
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c-accent) 0%, rgba(255, 214, 10, 0.35) 100%);
  bottom: -4px;
}

.hero-title .line2 {
  display: block;
  color: var(--c-accent);
  margin-top: 15px;
}

.hero-tag {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(16px, 1.85vmin, 22px);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  color: rgba(245, 242, 234, 0.96);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.75);
  text-wrap: balance;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

.hero-cta-row .phone-inline {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 234, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-row .phone-inline strong {
  color: var(--c-paper);
  font-size: 15px;
}

.hero-cta-row .phone-inline strong a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-cta-row .phone-inline strong a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* â”€â”€ Marquee â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee {
  background: linear-gradient(180deg, #ffe566 0%, var(--c-accent) 42%, #f0c400 100%);
  color: #f1ca0a;
  border-top: 3px solid #1737e6;
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(18px, 2.8vw, 20px) 0;
  background: #c0e4ee;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
  animation: scroll 40s linear infinite;
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1737e6;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 6px rgba(10, 14, 26, 0.2);
  font-size: 40px;
}

.marquee-track .star {
  color: var(--c-primary-deep);
  font-size: 0.95em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.45);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* â”€â”€ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section {
  padding: var(--section-y) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  margin-bottom: 64px;
  align-items: end;
}

.section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-head .label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-primary);
}

.section-head h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 60px;
  letter-spacing: -0.025em;
  max-width: 22ch;
  line-height: 55px;
}

.section-head .blurb {
  color: #fff;
}

@media (max-width: 880px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.why .section-head,
.process .section-head,
.testi .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
  gap: clamp(12px, 2vw, 10px);
}

.why .section-head>div,
.process .section-head>div,
.testi .section-head>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.why .section-head>div:first-child,
.process .section-head>div:first-child,
.testi .section-head>div:first-child {
  gap: 14px;
}

.why .section-head .label,
.process .section-head .label,
.testi .section-head .label {
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 0;
}

.why .section-head h2,
.process .section-head h2,
.testi .section-head h2 {
  max-width: min(100%, 32ch);
  text-wrap: balance;
}

.why .section-head .blurb,
.process .section-head .blurb,
.testi .section-head .blurb {
  margin-inline: auto;
  text-wrap: balance;
}

.find .section-head {
  text-align: left;
  justify-items: stretch;
}

.find .section-head>div {
  display: block;
  width: auto;
  align-items: stretch;
}

.find .section-head .label {
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 20px;
}

.find .section-head h2 {
  max-width: 16ch;
}

/* â”€â”€ About / Family Owned â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0;
  background:
    linear-gradient(115deg, rgba(23, 55, 230, 0.28) 0%, transparent 42%),
    var(--c-ink);
  color: var(--c-paper);
  border-top: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  isolation: isolate;
}

.about::before {
  content: "";
  position: absolute;
  top: clamp(28px, 5vw, 64px);
  right: 0;
  bottom: clamp(28px, 5vw, 64px);
  z-index: 0;
  width: min(43vw, 620px);
  background:
    linear-gradient(180deg, rgba(255, 214, 10, 0.96) 0%, rgba(255, 214, 10, 0.82) 100%);
  border-left: 3px solid var(--c-ink);
}

/* .about::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent) 36%, var(--c-primary) 36%, var(--c-primary) 100%);
} */
.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 75px);
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42rem;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 8px;
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #1737e6;
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 #e7c209;
}

.about-title {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 50px;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--c-paper);
  text-wrap: balance;
  max-width: 100%;
  line-height: 57px;
}

.about-title .about-amp {
  color: #fff;
}

.about-tag {
  margin: 0 0 26px;
  padding-left: 18px;
  border-left: 4px solid #ffffff;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(245, 242, 234, 0.94);
  max-width: 37ch;
}

.about-lede {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--c-paper);
  text-wrap: balance;
}

.about-lede em {
  font-style: normal;
  color: #fff;
}

.about-copy>p:last-of-type {
  margin: 0 0 clamp(22px, 3vw, 32px);
  max-width: 52ch;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 38rem);
  margin: 0 0 clamp(24px, 3vw, 34px);
  padding: 0;
  border: 1px solid rgba(245, 242, 234, 0.22);
  background: rgba(245, 242, 234, 0.22);
}

.about-facts>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 5.5rem;
  padding: 18px;
  background: rgba(10, 14, 26, 0.84);
}

.about-facts dt {
  margin: 0;
  font-family: var(--f-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 16px;
}

.about-facts dd {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1;
  color: #fff;
}

.about-facts dd::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 2px;
  background-color: #fff;
}

.about-cta {
  margin-top: 4px;
  box-shadow: 5px 5px 0 rgba(245, 242, 234, 0.18);
}

.about-visual {
  margin: 0;
  position: relative;
  width: 100%;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 34px) clamp(-10px, -1vw, -16px) clamp(-14px, -1vw, -20px) clamp(24px, 4vw, 46px);
  z-index: 0;
  background: var(--c-primary);
  border: 3px solid var(--c-ink);
  display: none;
}

.about-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/4.7;
  border: 3px solid var(--c-ink);
  background: var(--c-paper-pure);
  box-shadow: 12px 12px 0 rgba(10, 14, 26, 0.22),
    0 24px 48px rgba(10, 14, 26, 0.22);
}

.about-frame .photo-slot {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.about-frame .photo-slot.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: clamp(14px, 2.5vw, 22px);
  left: clamp(14px, 2.5vw, 22px);
  z-index: 2;
  padding: 7px 9px;
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: #fff;
  border: 2px solid var(--c-ink);
  box-shadow: 5px 5px 0 rgba(10, 14, 26, 0.22);
}

@media (max-width: 900px) {
  .about::before {
    width: 100%;
    top: auto;
    height: 36%;
    border-left: 0;
    border-top: 3px solid var(--c-ink);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }

  .about-copy {
    max-width: none;
  }

  .about-title {
    max-width: 12ch;
  }

  .about-frame {
    aspect-ratio: 16/11;
    max-width: 36rem;
    margin-inline: auto;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Why Choose / Features â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.18) 0%, transparent 42%),
    var(--c-paper-pure);
  color: var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 100px;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(10, 14, 26, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 14, 26, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.why::after {
  content: "";
  position: absolute;
  top: clamp(44px, 7vw, 92px);
  left: 0;
  z-index: 0;
  width: clamp(12px, 1.2vw, 20px);
  height: clamp(140px, 24vw, 320px);
  background: var(--c-primary);
  border-top: 3px solid var(--c-ink);
  border-right: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
}

.why .wrap {
  position: relative;
  z-index: 1;
}

.why .section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(24px, 4vw, 38px);
  border-bottom: 3px solid var(--c-ink);
}

.why .section-head h2 {
  color: var(--c-ink);
}

.why .section-head .label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--c-paper);
  background: var(--c-primary);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 var(--c-accent);
  padding: 8px 10px;
  font-size: 20px;
}

.why .section-head .label::before {
  display: none;
}

.why .section-head .blurb {
  color: #000;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  background: transparent;
  border: 0;
}

.feat {
  background: var(--c-paper-pure);
  padding: clamp(28px, 3vw, 25px);
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  box-shadow: 8px 8px 0 rgba(10, 14, 26, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--c-primary);
}

.feat:nth-child(even)::before {
  background: var(--c-accent);
}

.feat:hover {
  box-shadow: 12px 12px 0 rgba(10, 14, 26, 0.16);
  transform: translate(-3px, -3px);
}

.feat .num {
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  color: #000 !important;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.feat:nth-child(even) .num {
  color: #8a6800;
}

.feat h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 34px;
  margin-bottom: 0px;
  max-width: 15ch;
  color: var(--c-ink);
}

.feat p {
  margin-top: unset;
  padding-top: 7px;
}

.feat .glyph {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-ink);
  background: var(--c-primary-soft);
  display: grid;
  place-items: center;
  color: var(--c-primary-deep);
  box-shadow: 4px 4px 0 rgba(10, 14, 26, 0.12);
}

.feat:nth-child(even) .glyph {
  background: var(--c-accent);
  color: var(--c-ink);
}

.feat:hover .glyph {
  background: var(--c-ink);
  color: var(--c-accent);
  border-color: var(--c-ink);
}

@media (max-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feat {
    min-height: auto;
  }
}

/* â”€â”€ Services â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services {
  position: relative;
  padding: clamp(48px, 8vw, 100px) 0;
  background:
    linear-gradient(135deg, rgba(23, 55, 230, 0.16) 0%, rgba(220, 228, 255, 0.94) 46%, rgba(255, 214, 10, 0.16) 100%),
    #e9efff;
  border-top: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  isolation: isolate;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(90deg, rgba(10, 14, 26, 0.08) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(10, 14, 26, 0.05) 0 1px, transparent 1px 96px);
}

.services::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary) 50%, #1737e6 50%, #1737e6 100%);
}

.services .wrap {
  position: relative;
  z-index: 1;
}

.services-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 32px) clamp(32px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 3px solid #ffffff;
}

.services-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: clamp(120px, 18vw, 240px);
  height: 3px;
  background: #1737e6;
}

.services-intro-copy {
  min-width: 0;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 10px;
  font-size: 20px;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-paper);
  background: var(--c-ink);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 var(--c-accent);
}

.services-heading {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-wrap: balance;
  max-width: 100%;
  line-height: 60px;
}

.services-lede {
  margin: 0;
  padding-left: clamp(18px, 2.5vw, 28px);
  border-left: 3px solid rgba(10, 14, 26, 0.18);
  line-height: 1.55;
  font-weight: 500;
  color: var(--c-ink);
  max-width: 38ch;
  justify-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-paper-pure);
  border: 2px solid var(--c-ink);
  box-shadow:
    10px 10px 0 rgba(10, 14, 26, 0.12),
    0 18px 44px rgba(10, 14, 26, 0.09);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card::before {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: var(--c-paper-pure);
  font-family: var(--f-mono);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 rgba(10, 14, 26, 0.16);
}

.service-card:hover {
  box-shadow:
    14px 14px 0 rgba(10, 14, 26, 0.16),
    0 24px 56px rgba(10, 14, 26, 0.13);
  transform: translate(-3px, -3px);
}

.service-card--self {
  --service-stripe: var(--c-primary);
}

.service-card--self::before {
  content: "01";
  color: var(--c-primary-deep);
}

.service-card--full {
  --service-stripe: var(--c-accent-deep);
  margin-top: 0px;
}

.service-card--full::before {
  content: "02";
  background: #1737e6;
  color: #fff;
}

.service-card-visual {
  position: relative;
  aspect-ratio: 16/10;
  min-height: 210px;
  background: var(--c-ink);
  border-bottom: 6px solid #1737e6;
}

.service-card-visual .photo-slot {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.service-card-visual .photo-slot.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-visual .photo-slot.has-image img {
  transform: scale(1.04);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: clamp(22px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 242, 234, 0.88) 100%);
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(10, 14, 26, 0.2);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  font-size: 16px;
}

.service-chip--primary {
  background: var(--c-primary-soft);
  color: var(--c-primary-deep);
}

.service-chip--accent {
  background: rgba(255, 214, 10, 0.45);
  color: var(--c-ink);
}

.service-price {
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: rgba(10, 14, 26, 0.06);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000;
  text-align: right;
  display: none;
}

.service-price strong {
  display: inline;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-left: 6px;
  text-transform: none;
}

.service-price-inline {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  margin-left: 8px;
}

.service-title {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.service-desc {
  margin: 0 0 20px;
}

.service-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 600;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  background: var(--c-primary-soft);
  box-sizing: border-box;
}

.service-card--full .service-list li::before {
  border-color: var(--c-accent-deep);
  background: rgba(255, 214, 10, 0.35);
}

.service-cta {
  margin-top: auto;
  align-self: flex-start;
}

.services-foot {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  padding: clamp(22px, 3vw, 28px) clamp(24px, 3vw, 36px);
  border-radius: var(--r-md);
  background: var(--c-accent);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  box-shadow: 8px 8px 0 rgba(10, 14, 26, 0.14);
}

.services-foot-copy {
  margin: 0;
  line-height: 1.5;
  color: var(--c-ink);
  max-width: 46ch;
}

.services-foot-copy strong {
  color: var(--c-ink);
}

.services-foot-copy a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-foot-copy a:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.services-foot-btn {
  flex-shrink: 0;
}

.services-foot .btn-ghost-light {
  color: var(--c-ink);
  border-color: var(--c-ink);
}

.services-foot .btn-ghost-light:hover {
  background: var(--c-ink);
  color: var(--c-accent);
  border-color: var(--c-ink);
}

@media (max-width: 900px) {
  .services-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-lede {
    justify-self: start;
    padding-left: 0;
    border-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--full {
    margin-top: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-price {
    text-align: left;
  }
}

/* â”€â”€ Process / How It Works â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process {
  background: var(--c-primary);
  color: var(--c-paper);
}

.process .section-head .label {
  color: var(--c-accent);
  font-size: 20px;
  margin-bottom: 0px;
}

.process .section-head .label::before {
  background: var(--c-accent);
}

.process .section-head h2 {
  color: var(--c-paper);
}

.process .section-head .blurb {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 242, 234, 0.25);
}

.step {
  padding: 30px;
  border-right: 1px solid rgba(245, 242, 234, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
}

.steps .step:nth-child(1) {
  border-right: 1px solid rgba(245, 242, 234, 0.25);

}

.steps .wp-block-column:nth-child(2) .step {
  border-right: 1px solid rgba(245, 242, 234, 0.25);

}

.steps .wp-block-column:nth-child(3) .step {
  border-right: 1px solid rgba(245, 242, 234, 0.25);

}

.steps .wp-block-column:nth-child(4) .step {
  /* background: #fce7f3; */
  border: 0px;
}

/* 
#process .step:last-child {
  border-right: none;
} */

.step .step-n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(245, 242, 234, 0.15);
  margin-bottom: 10px;
}

.step h4 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0px;
}

@media (max-width: 880px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step:nth-child(2) {
    border-right: none;
  }

  .step:nth-child(1),
  .step:nth-child(2) {
    border-bottom: 1px solid rgba(245, 242, 234, 0.25);
  }
}

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi {
  position: relative;
  background:
    linear-gradient(135deg, rgba(23, 55, 230, 0.34) 0%, rgba(10, 14, 26, 0) 42%),
    var(--c-ink);
  color: var(--c-paper);
  border-top: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  isolation: isolate;
}

.testi::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(245, 242, 234, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245, 242, 234, 0.12) 1px, transparent 1px);
  background-size: 86px 86px;
}

/* .testi::after {
      content: "";
      position: absolute;
      right: 0;
      top: clamp(44px, 8vw, 100px);
      z-index: 0;
      width: min(15vw, 360px);
      height: min(48vw, 620px);
      background: #ffd60a;
      border-top: 3px solid var(--c-ink);
      border-left: 3px solid var(--c-ink);
      border-bottom: 3px solid var(--c-ink);
    } */

.testi .wrap {
  position: relative;
  z-index: 1;
}

.testi .section-head {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  justify-items: stretch;
  align-items: end;
  text-align: left;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(34px, 5vw, 56px);
  align-items: center;
}

.testi .section-head>div {
  align-items: flex-start;
}

.testi .section-head .label {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--c-ink);
  background: var(--c-accent);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 var(--c-primary);
  font-size: 20px;
}

.testi .section-head .label::before {
  display: none;
}

.testi .section-head h2 {
  color: var(--c-paper);
  max-width: 100%;
}

.testi .section-head .blurb {
  color: #fff;
  margin-inline: 0;
  font-weight: 500;
}

.testi-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 4vw, 30px);
  align-items: stretch;
}

.testi-proof {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 20px;
  border: 2px solid rgba(245, 242, 234, 0.22);
  border-radius: var(--r-md);
  background: rgba(245, 242, 234, 0.08);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
}

.testi-proof-kicker {
  margin: 0 0 14px;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.testi-proof-score {
  margin: 0;
  font-family: var(--f-display);
  font-size: 37px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--c-paper);
}

.testi-proof-copy {
  margin: 16px 0 26px;
  line-height: 1.6;
  margin-bottom: 0px;
  margin-bottom: 15px;
}

.testi-proof-list {
  display: grid;
  gap: 1px;
  margin-top: unset;
  border: 1px solid rgba(245, 242, 234, 0.2);
  background: rgba(245, 242, 234, 0.2);
}

.testi-proof-list div {
  padding: 10px;
  background: rgba(10, 14, 26, 0.72);
}

.testi-proof-list dt {
  margin: 0 0 4px;
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testi-proof-list dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.testi-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--r-md);
  border: 2px solid var(--c-ink);
  background: var(--c-paper-pure);
  position: relative;
  color: var(--c-ink);
  box-shadow: 8px 8px 0 rgba(10, 14, 26, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 
    .testi-card:nth-child(2),
    .testi-card:nth-child(3) {
      transform: translateY(18px);
    } */

.testi-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 rgba(10, 14, 26, 0.3);
}

.testi-card:nth-child(2):hover,
.testi-card:nth-child(3):hover {
  transform: translate(-3px, 15px);
}

.testi-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--c-primary);
}

.testi-card:nth-child(even)::before {
  background: var(--c-accent);
}

.testi-card .quote-mark {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 74px;
  line-height: 0.7;
  color: rgba(23, 55, 230, 0.16);
  margin: 0;
}

.testi-card blockquote {
  margin: 0 0 21px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 1.7vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.testi-card .stars {
  align-self: flex-start;
  margin: 0 0 24px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-ink);
  background: #1737e6;
  color: #fff;
  font-family: var(--f-mono);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 0px;
  margin-top: auto;
  border-top: 1px dashed rgba(10, 14, 26, 0.22);
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
}

.meta br {
  display: none;
  margin-top: 15px !important;
}

.testi-card .who .avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--r-sm);
  background: var(--c-primary);
  color: var(--c-paper);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  border: 2px solid var(--c-ink);
  box-shadow: 3px 3px 0 rgba(10, 14, 26, 0.18);
}

.testi-card:nth-child(even) .who .avatar {
  background: var(--c-accent);
  color: var(--c-ink);
}

.testi-card .who .meta strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.testi-card .who .meta span {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  letter-spacing: 0px;
  color: #000;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .testi-layout {
    grid-template-columns: 1fr;
  }

  .testi-proof {
    min-height: auto;
  }

  .testi-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .testi .section-head {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card,
  .testi-card:nth-child(2),
  .testi-card:nth-child(3) {
    transform: none;
  }

  .testi-card:hover,
  .testi-card:nth-child(2):hover,
  .testi-card:nth-child(3):hover {
    transform: translate(-3px, -3px);
  }

  .testi-card blockquote {
    max-width: 28ch;
  }
}

@media (max-width: 620px) {
  .testi::after {
    width: 44vw;
    height: 180px;
  }

  .testi-proof-list {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Amenities banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.amenities {
  background: #1737e6;
  border-top: 2px solid var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  padding: 80px 0px !important;
}

.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amen {
  text-align: center;
  padding: 24px;
}

.amen .icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffd60a;
  color: #000;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.amen h4 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: #fff;
}

.amen p {
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 720px) {
  .amen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.18) 0%, transparent 42%),
    var(--c-paper);
  border-top: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  overflow: visible;
  isolation: isolate;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(90deg, rgba(10, 14, 26, 0.06) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(10, 14, 26, 0.04) 0 1px, transparent 1px 82px);
}

.faq .wrap {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: none;
  padding: clamp(28px, 3.4vw, 42px);
  border-radius: var(--r-md);
  border: 2px solid var(--c-ink);
  background: var(--c-paper-pure);
  box-shadow: 10px 10px 0 rgba(10, 14, 26, 0.12);
}

.faq-intro .label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--c-paper);
  background: var(--c-primary);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 var(--c-accent);
}

.faq-intro .label::before {
  display: none;
}

.faq-intro h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 45px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  max-width: 9.5ch;
  text-wrap: balance;
  line-height: 55px;
}

.faq-intro .blurb {
  font-size: 17px;
  line-height: 1.6;
  max-width: 30ch;
  margin-top: 4px;
  text-wrap: balance;
}

.faq-intro .blurb a {
  color: var(--c-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
}

.faq-list {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.faq-item {
  overflow: hidden;
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  background: var(--c-paper-pure);
  box-shadow: 6px 6px 0 rgba(10, 14, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
  box-shadow: 9px 9px 0 rgba(10, 14, 26, 0.14);
}

.faq-item:hover {
  transform: translate(-2px, -2px);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 2.5vw, 30px);
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(18px, 1.9vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  user-select: none;
}

.faq-q .plus {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 2px solid #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #1737e6;
  box-shadow: 3px 3px 0 rgba(10, 14, 26, 0.14);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-q .plus::before {
  content: "+";
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--c-ink);
  color: var(--c-accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding-top: 10px !important;
  padding: 0 clamp(20px, 2.5vw, 30px) clamp(22px, 2.8vw, 30px);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: relative;
    top: auto;
    max-width: none;
  }

  .faq-intro h2 {
    max-width: 12ch;
  }
}

/* â”€â”€ Find Us â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.find {
  position: relative;
  background:
    linear-gradient(160deg, rgba(23, 55, 230, 0.25) 0%, transparent 45%),
    var(--c-ink);
  color: var(--c-paper);
  overflow: hidden;
  isolation: isolate;
}

.find::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 0;
  width: min(38vw, 520px);
  height: min(46vw, 620px);
  background: #000000;
  border-top: 3px solid var(--c-ink);
  border-left: 3px solid var(--c-ink);
}

.find .wrap {
  position: relative;
  z-index: 1;
}

.find .section-head {
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(24px, 3.5vw, 34px);
  border-bottom: 2px solid rgba(245, 242, 234, 0.18);
}

.find .section-head .label {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--c-ink);
  background: var(--c-accent);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-sm);
  box-shadow: 5px 5px 0 var(--c-primary);
  font-size: 20px;
}

.find .section-head .label::before {
  display: none;
}

.find .section-head h2 {
  color: var(--c-paper);
}

.find .section-head .blurb {
  font-weight: 500;
  text-align: end;
}

.find-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 3.5vw, 46px);
  align-items: stretch;
}

.find-map {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  background: #1A2240;
  border: 3px solid var(--c-ink);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.22);
}

.find-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) saturate(0.9);
  position: absolute;
  inset: 0;
}

.find-map .pin-badge {
  position: absolute;
  bottom: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  background: var(--c-accent);
  color: var(--c-ink);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-ink);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
  box-shadow: 5px 5px 0 rgba(10, 14, 26, 0.2);
  font-size: 16px;
}

.find-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.find-card {
  background: rgba(245, 242, 234, 0.98);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow: 8px 8px 0 rgba(10, 14, 26, 0.18);
}

.find-card .l {
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
}

.find-card .v {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.find-card .v small {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0;
}

.find-card.hours .now-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: rgba(20, 184, 108, 0.14);
  color: #087a43;
  border: 1px solid rgb(8 122 67);
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1;
  font-size: 16px;
}

.find-card.hours .now-state.closed {
  background: rgba(224, 65, 65, 0.12);
  color: #b71d1d;
  border-color: rgba(183, 29, 29, 0.24);
}

.find-card.hours .now-state .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.find .wp-block-buttons {
  width: 100%;
  margin: 0;
}

.find-cta,
.find .wp-block-button.find-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.find-cta .wp-block-button__link,
.find .wp-block-button.find-cta .wp-block-button__link {
  width: 100%;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--c-ink);
  box-shadow: 6px 6px 0 rgba(10, 14, 26, 0.18);
}

@media (max-width: 880px) {
  .find-grid {
    grid-template-columns: 1fr;
  }

  .find-map {
    min-height: 360px;
  }

  .find::before {
    width: 58vw;
    height: 260px;
  }
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(58px, 8vw, 92px) 0 32px;
  border-top: 3px solid var(--c-ink);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(245, 242, 234, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245, 242, 234, 0.1) 1px, transparent 1px);
  background-size: 88px 88px;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--c-accent) 0 34%, var(--c-primary) 34% 100%);
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.49fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(240px, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(42px, 5vw, 56px);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-grid h5 {
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-grid .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid .col li a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
  font-size: 16px;
}

.footer-grid .col li a:hover {
  color: var(--c-accent);
  transform: translateX(3px);
}

.footer-grid .col p {
  color: rgb(255 255 255);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
}

.footer-brand-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-brand-logo {
  width: auto;
  height: clamp(52px, 8vw, 76px);
  max-width: min(300px, 100%);
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand-logo.footer-brand-logo--missing {
  display: none;
}

.footer-brand-fallback {
  display: none;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 14ch;
}

.footer-brand-fallback em {
  font-style: normal;
  color: var(--c-accent);
}

.footer-brand-link:has(.footer-brand-logo--missing) .footer-brand-fallback {
  display: block;
}

.footer-brand .tag {
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 40ch;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.45;
  color: var(--c-paper);
  margin: 0 0 6px;
}

.footer-brand .tag-line-2 {
  margin-bottom: 0;
  opacity: 0.92;
}

.footer-col-contact .footer-contact-address,
.footer-col-contact .footer-contact-hours {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-paper);
}

.footer-col-contact .footer-contact-address .suds-address {
  color: inherit;
}

.footer-phone-line {
  margin: 10px 0 6px;
  line-height: 1.1;
}

.footer-contact-link,
.footer-phone-line .suds-phone-link {
  color: var(--c-accent);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible,
.footer-phone-line .suds-phone-link:hover,
.footer-phone-line .suds-phone-link:focus-visible {
  color: var(--c-paper);
}

.footer-contact-link:focus-visible,
.footer-phone-line .suds-phone-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-contact-note {
  display: block;
  margin: 0;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.92);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 234, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  color: rgb(255 255 255);
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* â”€â”€ Tweak overrides for layout/font variants â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.font-bricolage {
  --f-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
}

body.font-archivo {
  --f-display: "Archivo", "Helvetica Neue", sans-serif;
}

body.font-space {
  --f-display: "Space Grotesk", "Helvetica Neue", sans-serif;
}

/* Hide bubbles motif (tweak) */
body.no-bubbles .brand-mark::after {
  display: none;
}

/* Internal page hero */
.page-hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  padding-top: var(--header-stack-h);
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 3px solid var(--c-ink);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 15% 50%, rgba(23, 55, 230, 0.35) 0%, transparent 55%), radial-gradient(ellipse 50% 60% at 90% 20%, rgba(255, 214, 10, 0.12) 0%, transparent 50%), linear-gradient(165deg, #0a0e1a 0%, #1a2240 100%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  z-index: 1;
  background: linear-gradient(90deg, var(--c-accent) 0 36%, var(--c-primary) 36% 100%);
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 22px);
  max-width: 52rem;
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(10, 14, 26, 0.72);
  border: 1px solid rgba(245, 242, 234, 0.2);
  border-radius: var(--r-sm);
}

.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}

.page-hero-lede {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(245, 242, 234, 0.92);
  max-width: 42ch;
}

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

body.internal-page .site-header {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.96) 0%, rgba(10, 14, 26, 0.88) 45%, rgba(10, 14, 26, 0.78) 100%);
  border-bottom-color: rgba(245, 242, 234, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.nav-main a[aria-current="page"]::after {
  right: 0;
}

.nav-main a[aria-current="page"] {
  color: var(--c-accent);
}

/* ── Contact page (form + overlapping info card) ──────────── */
.contact-page {
  padding: calc(var(--header-stack-h) + clamp(32px, 5vw, 56px)) 0 0 !important;
  background:
    linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, transparent 32%),
    linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-paper) 100%);
  border-bottom: 0;
}

.internal-page-title,
.contact-page-title,
.faq-page-title,
.svc-intro-title {
  margin: 0 0 clamp(24px, 4vw, 36px);
  text-align: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 45px !important;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  line-height: 1;
  margin-bottom: 15px !important;
}

.svc-intro .svc-intro-title {
  margin-bottom: 16px;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.contact-form-panel {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
  margin-right: clamp(12px, 2vw, 24px);
  background: var(--c-paper-pure);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-lg);
  box-shadow: 10px 10px 0 rgba(10, 14, 26, 0.1);
}

.contact-form-panel h2 {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-ink);
  line-height: 1.1;
}

.contact-form-intro {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: 52ch;
  line-height: 1.6;
  color: rgba(10, 14, 26, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(10, 14, 26, 0.18);
  border-radius: var(--r-md);
  font: inherit;
  font-size: 16px;
  color: var(--c-ink);
  background: var(--c-paper-pure);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(10, 14, 26, 0.42);
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible,
.contact-field select:focus-visible {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(23, 55, 230, 0.18);
}

.contact-field textarea {
  min-height: 115px;
  resize: vertical;
}

.contact-phone-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
}

.contact-phone-row select {
  padding: 14px 10px;
  cursor: pointer;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.contact-form-actions .btn {
  min-width: 200px;
  justify-content: center;
  border: 2px solid var(--c-ink);
  box-shadow: 5px 5px 0 var(--c-accent);
}

.contact-info-panel {
  position: relative;
  z-index: 2;
  margin-left: clamp(-16px, -1.5vw, -8px);
  margin-top: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(165deg, var(--c-primary-deep) 0%, var(--c-primary) 55%, #1e45e8 100%);
  color: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-lg);
  box-shadow: 12px 12px 0 rgba(10, 14, 26, 0.18);
}

.contact-info-greet {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-paper);
}

.contact-info-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 8px 14px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 242, 234, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0px;
}

.contact-info-block:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(2px);
}

.contact-info-block__body {
  min-width: 0;
}

.contact-info-block .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-accent);
  color: var(--c-ink);
  flex-shrink: 0;
  position: relative;
  top: 20px;
}

.contact-info-block .icon-wrap svg {
  display: block;
}

.contact-info-block .info-label {
  margin: 0 0 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.92);
}

.contact-info-block .info-value {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--c-paper);
}

.contact-info-block .info-value a {
  color: var(--c-paper);
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-info-block .info-value a:hover,
.contact-info-block .info-value a:focus-visible {
  color: var(--c-accent);
}

.contact-info-block .info-value a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-info-block .info-value small {
  display: block;
  margin-top: 4px;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(245, 242, 234, 0.88);
}

.contact-info-hours .now-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: rgba(20, 184, 108, 0.2);
  color: #b8f5d4;
  border: 1px solid rgba(184, 245, 212, 0.35);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-hours .now-state.closed {
  background: rgba(224, 65, 65, 0.2);
  color: #ffc9c9;
  border-color: rgba(255, 201, 201, 0.35);
}

.contact-info-hours .now-state .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.contact-social {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 242, 234, 0.2);
}

.contact-social h3 {
  margin: 0 0 16px;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 234);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 234, 0.28);
  display: grid;
  place-items: center;
  color: var(--c-paper);
  background: rgba(10, 14, 26, 0.2);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  background: var(--c-accent);
  color: var(--c-ink);
  border-color: var(--c-ink);
  transform: translateY(-2px);
}

.contact-social-links a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.contact-map-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-map-wrap {
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(320px, 42vw, 480px);
  position: relative;
  border: 0;
  border-top: 3px solid var(--c-ink);
  box-shadow: none;
  background: #1a2240;
  margin: 0;
}

.contact-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.contact-map-wrap .pin-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--c-accent);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(10, 14, 26, 0.2);
}

@media (max-width: 1020px) {
  .contact-shell {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
  }

  .contact-info-panel {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .contact-form-panel {
    margin-right: 0;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .contact-phone-row {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}

/* ── Services page (Papa-style layout, Suds N Tubs colors) ─── */
.svc-intro {
  padding: calc(var(--header-stack-h) + clamp(32px, 5vw, 56px)) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 56px) !important;
  background:
    linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, transparent 32%),
    linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-paper) 100%);
  border-bottom: 0;
  text-align: center;
}

.svc-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.svc-intro-subtitle {
  margin: 0 0 20px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.svc-intro-text {
  margin: 0 0 clamp(28px, 4vw, 36px);
  max-width: 58ch;
  line-height: 1.65;
  color: rgba(10, 14, 26);
}

.btn.svc-btn-cta,
a.btn.btn-accent.svc-btn-cta,
.wp-block-button.svc-btn-cta .wp-block-button__link {
  min-width: 180px;
  justify-content: center;
  border: 2px solid var(--c-ink) !important;
  box-shadow: 5px 5px 0 var(--c-primary) !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.btn.svc-btn-cta:hover,
a.btn.btn-accent.svc-btn-cta:hover,
.wp-block-button.svc-btn-cta .wp-block-button__link:hover {
  background: var(--c-ink) !important;
  color: var(--c-accent) !important;
  border-color: var(--c-ink) !important;
}

.btn.svc-btn-cta .arrow,
.wp-block-button.svc-btn-cta .wp-block-button__link .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn.svc-btn-cta:hover .arrow,
.wp-block-button.svc-btn-cta .wp-block-button__link:hover .arrow {
  transform: translateX(3px);
}

.svc-block-title {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.svc-block-subtitle {
  margin: clamp(20px, 3vw, 28px) 0 14px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--c-ink);
}

.svc-block-text {
  margin: 0 0 8px;
  line-height: 1.65;
  color: rgba(10, 14, 26);
}

.svc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.svc-checklist li,
.wp-block-list.svc-checklist li {
  align-items: start;
  line-height: 1.5;
  color: var(--c-ink);
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.wp-block-list.svc-checklist {
  list-style: none;
  padding-left: 0;
}

.wp-block-list.svc-checklist li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  border: 2px solid rgba(23, 55, 230, 0.25);
  box-shadow: inset 0 0 0 5px #1737e6;
  background: transparent;
  box-shadow: unset;
  border: 0px;
  background: #1737e6;
  outline: 2px solid #1737e6;
  outline-offset: 2px;
}

.svc-bullet {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  border: 2px solid rgba(23, 55, 230, 0.25);
  position: relative;
  flex-shrink: 0;
  position: absolute;
  left: 0;
}

.svc-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--c-primary);
}

.svc-feature {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  min-height: clamp(420px, 52vw, 560px);
  background: var(--c-paper-pure);
}

.svc-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-feature-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0.2) 45%, transparent 72%);
  pointer-events: none;
}

.svc-feature-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 52vw, 560px);
  padding: clamp(40px, 6vw, 72px) 0 !important;
}

.svc-feature-card {
  max-width: min(100%, 520px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--c-paper-pure);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  box-shadow: 10px 10px 0 rgba(10, 14, 26, 0.14);
}

.svc-split {
  padding: clamp(64px, 8vw, 100px) 0 !important;
  background: linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, var(--c-primary-soft) 100%);
  border-bottom: 3px solid var(--c-ink);
}

.svc-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.svc-split-divider {
  width: 1px;
  min-height: 100%;
  background: rgba(10, 14, 26, 0.16);
  justify-self: center;
}

.svc-split-col {
  padding: 0 clamp(8px, 2vw, 16px);
}

.svc-cta {
  padding: clamp(56px, 7vw, 88px) clamp(24px, 4vw, 48px) !important;
  background: linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, var(--c-primary-soft) 100%);
  border-bottom: 3px solid var(--c-ink);
  text-align: center;
}

.svc-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
}

.svc-cta-title {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  text-wrap: balance;
}

.svc-cta-text {
  margin: 0 0 clamp(28px, 4vw, 36px);
  line-height: 1.65;
  color: rgba(10, 14, 26);
}

@media (max-width: 880px) {
  .svc-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-split-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .svc-feature-layout {
    align-items: flex-end;
    padding-bottom: clamp(32px, 5vw, 48px) !important;
  }

  .svc-feature-card {
    max-width: 100%;
  }
}

/* ── FAQ page (accordion layout) ──────────────────────────── */
.faq-page {
  padding: calc(var(--header-stack-h) + clamp(32px, 5vw, 56px)) 0 clamp(64px, 8vw, 88px) !important;
  background:
    linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, transparent 32%),
    linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-paper) 100%);
  border-bottom: 0;
}

.faq-page .faq-accordion {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.faq-page .faq-item {
  margin: 0;
  border: 1px solid rgba(10, 14, 26, 0.14);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--c-paper-pure);
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.faq-page .faq-item.open {
  border-color: var(--c-primary);
  box-shadow: none;
}

.faq-page .faq-item:hover {
  transform: none;
}

.faq-page .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.5vw, 24px);
  margin: 0;
  border: 0;
  background: var(--c-paper-pure);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-page .faq-q-text {
  flex: 1;
  min-width: 0;
}

.faq-page .faq-item.open .faq-q {
  background: var(--c-primary);
  color: var(--c-paper);
}

.faq-page .faq-q:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: -3px;
}

.faq-page .faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.faq-page .faq-chevron::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-page .faq-item.open .faq-chevron::before {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-page .faq-q .plus {
  display: none;
}

.faq-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--c-paper-pure);
}

.faq-page .faq-a p {
  margin: 0;
  padding: clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 24px) clamp(22px, 2.8vw, 28px);
  line-height: 1.65;
  color: rgba(10, 14, 26);
  font-size: 16px;
}

.faq-page .faq-a a {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-page .faq-a a:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-page .faq-item.open .faq-a {
  max-height: 480px;
}

.faq-page-help {
  margin: clamp(32px, 4vw, 44px) auto 0;
  max-width: 920px;
  text-align: center;
  line-height: 1.6;
  color: rgba(10, 14, 26);
}

.faq-page-help a,
.faq-page-help .suds-phone-link {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-page-help a:focus-visible,
.faq-page-help .suds-phone-link:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── About page (Papa-style layout, Suds N Tubs colors) ───── */
.abt-band {
  background: linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, var(--c-primary-soft) 100%);
  border-bottom: 3px solid var(--c-ink);
}

.abt-hero-intro .internal-page-title {
  margin: 0 0 clamp(20px, 3vw, 28px);
  text-wrap: balance;
}

.abt-title {
  margin: 0 0 20px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  text-wrap: balance;
}

.abt-block-title {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.abt-lede {
  margin: 0 0 20px;
  line-height: 1.6;
  color: rgba(10, 14, 26);
}

.abt-card-lede {
  margin: 0 0 18px;
  line-height: 1.55;
  color: rgba(10, 14, 26);
}

.abt-card-note {
  margin: 18px 0 22px;
  line-height: 1.55;
  color: rgba(10, 14, 26);
}

.abt-hero {
  padding: 0 !important;
}

.abt-hero-intro {
  padding: calc(var(--header-stack-h) + clamp(32px, 5vw, 56px)) 0 clamp(40px, 5vw, 56px) !important;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(220, 228, 255, 0.95) 0%, transparent 32%),
    linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-paper) 100%);
}

.abt-hero-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.abt-hero-intro-inner p {
  margin: 0 0 14px;
  line-height: 1.65;
  color: rgba(10, 14, 26);
}

.abt-hero-intro-inner p:last-child {
  margin-bottom: 0;
}

.abt-hero-visual {
  position: relative;
  margin: 0;
  background-color: var(--c-paper-pure);
  overflow: hidden;
}

.abt-hero-visual.has-hero-bg {
  background-image: var(--abt-hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.abt-hero-visual .abt-comfort-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: clamp(320px, 42vw, 480px);
  padding: clamp(48px, 6vw, 80px) var(--pad) !important;
}

.abt-hero-visual .abt-services-card {
  margin-left: auto;
  flex-shrink: 0;
}

.abt-hero-visual>img {
  width: 100%;
  display: block;
  height: clamp(260px, 36vh, 380px);
  max-height: 380px;
  object-fit: cover;
  object-position: center center;
}

.abt-services-card {
  width: min(100% - 40px, 620px);
  padding: clamp(24px, 3vw, 36px);
  background: var(--c-paper-pure);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-lg);
  box-shadow: 12px 12px 0 rgba(10, 14, 26, 0.12);
}

.abt-apart {
  padding: clamp(64px, 8vw, 100px) 0 !important;
}

.abt-apart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.abt-apart-copy .svc-checklist {
  margin-bottom: 28px;
}

.abt-apart-visual {
  margin: 0;
  text-align: center;
}

.abt-apart-visual img {
  width: min(100%, 420px);
  height: auto;
  display: inline-block;
  filter: drop-shadow(8px 12px 24px rgba(10, 14, 26, 0.12));
}

.abt-more {
  padding: clamp(56px, 7vw, 88px) 0 !important;
  border-top: 0;
}

.abt-more-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.abt-more-inner p {
  margin: 0 0 clamp(28px, 4vw, 36px);
  line-height: 1.65;
  color: rgba(10, 14, 26);
  max-width: 850px;
  margin-inline: auto;
}

.abt-comfort {
  position: relative;
  padding: 0 !important;
  min-height: clamp(400px, 48vw, 520px);
  overflow: hidden;
  border-top: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
}

.abt-comfort-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abt-comfort-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.abt-comfort-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 55, 230, 0.35) 0%, rgba(23, 55, 230, 0.15) 40%, transparent 70%);
  pointer-events: none;
}

.abt-comfort-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: clamp(400px, 48vw, 520px);
  padding: clamp(40px, 6vw, 72px) var(--pad) !important;
}

.abt-comfort-card {
  width: min(100%, 620px);
  margin-left: auto;
  flex-shrink: 0;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--c-paper-pure);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-lg);
  box-shadow: 10px 10px 0 rgba(10, 14, 26, 0.14);
}

.abt-amenities-box {
  margin: 20px 0;
  padding: 6px 0;
  background: var(--c-accent);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(10, 14, 26, 0.1);
}

.abt-amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.abt-amenities-list li {
  padding: 14px 20px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(15px, 1.6vw, 17px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 1px solid rgba(10, 14, 26, 0.18);
}

.abt-amenities-list li:last-child {
  border-bottom: 0;
}

.abt-more--footer {
  border-bottom: 3px solid var(--c-ink);
}

@media (max-width: 960px) {
  .abt-hero-visual {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .abt-hero-visual>img {
    height: clamp(220px, 32vh, 300px);
    max-height: 300px;
  }

  .abt-services-card {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 32px);
    margin: -48px auto 32px;
  }

  .abt-apart-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abt-apart-copy .svc-checklist {
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-comfort-layout {
    justify-content: center;
    padding: clamp(32px, 5vw, 48px) 0 !important;
  }

  .abt-comfort-card {
    width: calc(100% - 8px);
  }
}

/* ── Homepage footer (3-column layout, index only) ────────── */
.site-footer--home .footer-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 48px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.site-footer--home .footer-home-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer--home .footer-home-heading {
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  line-height: 1.2;
}

.site-footer--home .footer-home-links ul,
.site-footer--home .footer-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.site-footer--home .footer-home-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-paper);
  transition: color 0.18s ease;
}

.site-footer--home .footer-home-links a:hover,
.site-footer--home .footer-home-links a:focus-visible {
  color: var(--c-accent);
}

.site-footer--home .footer-home-links a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer--home .footer-brand-link {
  margin-bottom: 12px;
}

.site-footer--home .footer-brand-logo {
  margin: 0 auto;
  height: clamp(56px, 8vw, 80px);
}

.site-footer--home .footer-home-tagline {
  margin: 0 0 20px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 234);
  max-width: 28ch;
  font-size: 16px;
  margin-top: 15px;
}

.site-footer--home .footer-home-brand .footer-home-heading {
  margin-top: 4px;
}

.site-footer--home .footer-home-address {
  margin: 0 0 14px;
  font-style: normal;
  line-height: 1.55;
  color: var(--c-paper);
  font-size: 16px;
}

.site-footer--home .footer-home-phone {
  margin: 0 0 6px;
}

.site-footer--home .footer-home-phone a {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.01em;
  color: var(--c-accent);
  transition: color 0.18s ease;
}

.site-footer--home .footer-home-phone a:hover,
.site-footer--home .footer-home-phone a:focus-visible {
  color: var(--c-paper);
}

.site-footer--home .footer-home-phone a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer--home .footer-home-note {
  margin: 0 0 20px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 234);
  font-size: 16px;
}

.site-footer--home .footer-home-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.site-footer--home .footer-home-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 234, 0.35);
  display: grid;
  place-items: center;
  color: var(--c-paper);
  background: rgba(245, 242, 234, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer--home .footer-home-social a:hover,
.site-footer--home .footer-home-social a:focus-visible {
  background: var(--c-accent);
  color: var(--c-ink);
  border-color: var(--c-accent);
}

.site-footer--home .footer-home-social a:focus-visible {
  outline: 2px solid var(--c-paper);
  outline-offset: 3px;
}

.site-footer--home .footer-hours-list li {
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-paper);
}

.site-footer--home .footer-hours-list .day {
  font-weight: 700;
  color: rgba(245, 242, 234);
}

.site-footer--home .footer-hours-list .time {
  font-weight: 500;
}

.site-footer--home .footer-bottom {
  justify-content: center;
  text-align: center;
  gap: 8px 24px;
}

.abt-more .abt-more-inner {
  max-width: 850px !important;
}

@media (max-width: 900px) {
  .site-footer--home .footer-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .site-footer--home .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}



* {
  letter-spacing: 0px !important;
}

.page-id-6 .find-info .find-card:nth-child(3) .v small {
  display: none !important;
}

.page-id-10 .contact-info-panel .contact-info-block:first-of-type .info-value small {
  display: none !important;
}