:root {
  --ink: #001b24;
  --ink-2: #062b33;
  --cream: #fff8ef;
  --paper: #f8f3ea;
  --coral: #f05b3f;
  --teal: #16939b;
  --sky: #bfe7e9;
  --lime: #d7e332;
  --gold: #ffd69b;
  --muted: #5f716f;
  --line: rgba(0, 27, 36, 0.14);
  --shadow: 0 24px 70px rgba(0, 27, 36, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--cream); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.site-shell { min-height: 100vh; overflow: hidden; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  color: white;
  background: rgba(0, 27, 36, 0.92);
  backdrop-filter: blur(18px);
}

.brand-button {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  color: inherit;
  padding: 6px 10px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  display: block;
  width: clamp(132px, 16vw, 188px);
  height: auto;
}

.mark { width: 38px; display: grid; gap: 5px; }
.mark span {
  height: 5px;
  border-radius: 999px;
  background: var(--coral);
  transform: skewX(-20deg);
}
.mark span:nth-child(2) { background: var(--sky); margin-left: 7px; }
.mark span:nth-child(3) { background: var(--teal); margin-left: 2px; }

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav button, .footer button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nav button.active, .nav button:hover { background: rgba(255, 255, 255, 0.12); }

.nav-cta, .primary, .secondary {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 850;
}

.nav-cta, .primary {
  color: white;
  border: 0;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(240, 91, 63, 0.28);
}

.secondary {
  color: var(--lime);
  border: 1px solid var(--lime);
  background: transparent;
}

.secondary.dark-text { color: var(--ink); border-color: var(--line); }
.primary.ink { background: var(--ink); box-shadow: none; }
.menu-button { display: none; color: white; border: 0; background: transparent; padding: 8px; }

.page-band {
  position: relative;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 82px);
}

.dark { color: white; background: var(--ink); }
.light { background: var(--cream); }
a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 { font-size: clamp(54px, 9vw, 112px); max-width: 860px; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 5vw, 60px); max-width: 780px; margin-bottom: 18px; }
h3 { font-size: 18px; margin-bottom: 10px; }
p { line-height: 1.7; color: inherit; }
.lead { font-size: clamp(18px, 2vw, 25px); line-height: 1.45; max-width: 720px; color: rgba(255,255,255,0.88); }
.dark-lead { color: var(--muted); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  isolation: isolate;
}

.hero::after, .process::after {
  content: "";
  position: absolute;
  inset: auto -5% -54px -5%;
  height: 120px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 44% 44% 0 0;
  z-index: -1;
}

.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-panel { position: relative; min-height: 540px; }

.hero-photo {
  position: absolute;
  right: 6%;
  top: 18px;
  width: min(360px, 82vw);
  height: 420px;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  z-index: 1;
}

.hero-photo img, .photo-grid img, .story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fluid-art {
  position: absolute;
  inset: 0 0 0 46%;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 45% 55% 60% 40%;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,0.16));
}

.sky { width: 570px; height: 540px; top: -90px; right: -80px; background: rgba(191, 231, 233, 0.78); }
.sun { width: 300px; height: 300px; top: 150px; right: 360px; background: rgba(255, 214, 155, 0.9); }
.reef { width: 280px; height: 260px; top: 330px; right: 470px; background: rgba(240, 91, 63, 0.9); }
.lime { width: 530px; height: 170px; right: -60px; bottom: 90px; background: rgba(215, 227, 50, 0.82); transform: rotate(-4deg); }

.community-line {
  position: absolute;
  right: 110px;
  bottom: 210px;
  display: flex;
  gap: 26px;
  color: var(--ink);
}
.community-line .icon { width: 54px; height: 54px; }

.signal-card {
  position: absolute;
  width: min(260px, 70vw);
  padding: 22px;
  border-radius: 8px;
  color: white;
  box-shadow: var(--shadow);
}
.signal-card .icon { width: 28px; height: 28px; margin-bottom: 22px; background: currentColor; }
.signal-card span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 900; opacity: 0.75; }
.signal-card strong { display: block; margin-top: 8px; font-size: 22px; line-height: 1.16; }
.signal-card.coral { background: var(--coral); top: 74px; right: 52%; z-index: 2; }
.signal-card.teal { background: var(--teal); bottom: 80px; right: 10px; z-index: 2; }

.mini-map {
  position: absolute;
  left: 8%;
  bottom: 120px;
  width: 260px;
  height: 170px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}
.mini-map span { position: absolute; border-radius: 999px; background: var(--lime); }
.mini-map span:nth-child(1) { width: 72px; height: 8px; top: 44px; left: 38px; }
.mini-map span:nth-child(2) { width: 94px; height: 8px; top: 86px; left: 96px; background: var(--sky); }
.mini-map span:nth-child(3) { width: 8px; height: 70px; top: 50px; left: 70px; background: var(--coral); }
.mini-map span:nth-child(4) { width: 46px; height: 46px; top: 58px; left: 142px; border: 8px solid var(--gold); background: transparent; }

.intro-grid, .split, .booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.copy-stack { max-width: 640px; color: var(--muted); font-size: 18px; }

.people-stories {
  padding-top: 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 22px;
}

.photo-grid figure, .story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 27, 36, 0.08);
}

.photo-grid figure {
  height: 420px;
  position: relative;
}

.photo-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: rgba(0, 27, 36, 0.84);
  backdrop-filter: blur(12px);
  font-weight: 850;
  line-height: 1.35;
}

.proof-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-ribbon span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 18px;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-align: center;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}
.section-head p { max-width: 500px; color: var(--muted); }
.dark .section-head p { color: rgba(255,255,255,0.72); }

.service-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-row article {
  min-height: 255px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}
.service-row article:last-child { border-right: 0; }
.service-row .icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 40% 60% 48% 52%;
  background: var(--teal);
  color: white;
  margin-bottom: 38px;
}
.service-row article:nth-child(2) .icon { background: var(--coral); }
.service-row article:nth-child(3) .icon { background: var(--lime); color: var(--ink); }
.service-row article:nth-child(4) .icon { background: var(--sky); color: var(--ink); }
.service-row article:nth-child(5) .icon { background: var(--ink); }
.service-row p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-line article {
  position: relative;
  padding: 32px 24px;
  border-top: 1px dashed rgba(215, 227, 50, 0.65);
}
.process-line span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-line p { color: rgba(255,255,255,0.72); font-size: 14px; }

.cta-wave {
  color: white;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-wave h2 { margin: 0; }

.subhero.compact { min-height: 430px; display: grid; align-content: center; }
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(0, 27, 36, 0.07);
}
.price-card.featured { background: var(--ink); color: white; transform: translateY(-18px); }
.price-card p { color: var(--muted); }
.price-card.featured p { color: rgba(255,255,255,0.72); }
.price-card h2 { font-size: 34px; }
.price { font-size: 46px; margin: 10px 0 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.price-card li { display: flex; gap: 10px; line-height: 1.45; }
.price-card button { margin-top: auto; }

.add-ons {
  padding-top: 10px;
}

.addon-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.addon-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.addon-grid strong {
  display: block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}

.addon-grid span {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.addon-grid p {
  color: var(--muted);
  font-size: 15px;
}

.story-card {
  border-radius: 8px;
  padding: 36px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 20px;
}
.story-card .icon { width: 34px; height: 34px; margin-bottom: 18px; background: var(--lime); }
.story-photo {
  min-height: 560px;
  position: relative;
}

.story-photo figcaption, .case-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: rgba(0, 27, 36, 0.86);
  font-size: 20px;
  line-height: 1.45;
}
.story { grid-template-columns: repeat(2, 1fr); display: grid; gap: 44px; }
.story p { color: rgba(255,255,255,0.76); font-size: 18px; }

.case-photo {
  min-height: 520px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.case-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.case-grid article, .post-grid article, .featured-post {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 40px rgba(0, 27, 36, 0.07);
}

.case-grid article {
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.case-grid span, .post-grid span, .featured-post span {
  display: block;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.case-grid h3, .post-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.06;
}

.case-grid p, .post-grid p, .featured-post p {
  color: var(--muted);
}

.case-grid ul {
  list-style: none;
  padding: 0;
  margin: auto 0 22px;
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.case-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.case-grid .case-highlight {
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 214, 155, 0.72) 0 18%, transparent 19%),
    radial-gradient(circle at 14% 88%, rgba(22, 147, 155, 0.8) 0 28%, transparent 29%),
    var(--ink);
}

.case-grid .case-highlight span {
  color: var(--lime);
}

.case-grid .case-highlight p {
  color: rgba(255,255,255,0.78);
}

.case-grid .case-highlight li {
  color: white;
}

.clickable-card {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.clickable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 27, 36, 0.12);
}

.clickable-card:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.case-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.case-highlight .case-link {
  border-color: rgba(255,255,255,0.28);
  color: white;
}

.blog-page {
  display: grid;
  gap: 28px;
}

.featured-post {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(30px, 6vw, 70px);
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 27, 36, 0.94), rgba(0, 27, 36, 0.72)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&q=80&w=1600") center / cover;
}

.featured-post div {
  max-width: 760px;
}

.featured-post h2 {
  margin-bottom: 20px;
}

.featured-post p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 680px;
}

.featured-post .primary {
  margin-top: 18px;
}

.post-grid article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.post-grid button,
.post-grid a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.post-grid .resource-card {
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 91, 63, 0.7) 0 18%, transparent 19%),
    radial-gradient(circle at 10% 88%, rgba(191, 231, 233, 0.72) 0 28%, transparent 29%),
    var(--ink);
}

.post-grid .resource-card span {
  color: var(--lime);
}

.post-grid .resource-card p {
  color: rgba(255,255,255,0.78);
}

.post-grid .resource-card a {
  border-color: rgba(255,255,255,0.28);
  color: white;
}

.article-page {
  max-width: 1060px;
  margin: 0 auto;
}

.article-category {
  display: block;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.article-page h1 {
  color: var(--ink);
  max-width: 980px;
}

.article-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

.article-body {
  max-width: 760px;
  margin: 44px 0;
  color: var(--ink);
}

.article-body h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 36px;
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
}

.source-list {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin: 0 0 40px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.source-list h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.source-list a {
  color: var(--teal);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-size: 13px;
  font-weight: 900;
}

.icon.back {
  transform: rotate(180deg);
}

.review-grid {
  grid-template-columns: repeat(4, 1fr);
}

.review-grid article {
  min-height: 280px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 12px 40px rgba(0, 27, 36, 0.06);
}

.review-grid span {
  display: block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.review-grid p {
  color: var(--muted);
  font-size: 15px;
}

.booking { align-items: start; min-height: calc(100vh - 84px); }
.contact-list { display: grid; gap: 16px; margin-top: 34px; color: var(--ink); font-weight: 750; }
.contact-list span, .contact-list a { display: flex; gap: 12px; align-items: center; }
.contact-list a { width: fit-content; color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.calendly-link {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  background: white;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.calendly-head, .wide { grid-column: 1 / -1; }
.calendly-head { display: flex; align-items: center; gap: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.calendly-head .icon { background: var(--teal); }
.calendly-head strong, .calendly-head span { display: block; }
.calendly-head span { color: var(--muted); font-size: 14px; }
.slot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.slot {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdfa;
  font-size: 14px;
  font-weight: 900;
}

.slot.active {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}
label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 850; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 13px;
  color: var(--ink);
  background: #fffdfa;
}
textarea { min-height: 118px; resize: vertical; }
.success { margin: 0; color: var(--teal); font-weight: 850; }

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: white;
  background: var(--ink);
  padding: 32px clamp(20px, 6vw, 82px);
}
.footer p { margin: 0; color: rgba(255,255,255,0.72); }
.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-actions a,
.footer button:not(.footer-brand) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: white;
  min-height: 40px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  vertical-align: -3px;
  mask: var(--mask) center / contain no-repeat;
  -webkit-mask: var(--mask) center / contain no-repeat;
}

.icon.arrow { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.2 4.8 20.4 12l-7.2 7.2-1.4-1.4 4.8-4.8H4v-2h12.6l-4.8-4.8 1.4-1.4Z'/%3E%3C/svg%3E"); }
.icon.calendar { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3v17H4V5h3V2Zm13 9H6v9h14v-9ZM6 9h14V7H6v2Z'/%3E%3C/svg%3E"); }
.icon.menu { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 6h16v2H4V6Zm0 5h16v2H4v-2Zm0 5h16v2H4v-2Z'/%3E%3C/svg%3E"); }
.icon.users { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8.5 1a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7ZM2 21v-2a6 6 0 0 1 12 0v2H2Zm12.5 0v-2.2a7.4 7.4 0 0 0-1.4-4.3A5 5 0 0 1 22 18v3h-7.5Z'/%3E%3C/svg%3E"); }
.icon.store { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h16l1 6a4 4 0 0 1-2 3.5V21H5v-7.5A4 4 0 0 1 3 10l1-6Zm3 10v5h10v-5H7Zm-1-8-.7 4a2 2 0 0 0 3.9.6L9.5 6H6Zm5.5 0-.3 4a2 2 0 0 0 4 0l-.3-4h-3.4Zm6 0 .3 4.6a2 2 0 0 0 3.9-.6L20 6h-2.5Z'/%3E%3C/svg%3E"); }
.icon.heart { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21s-7.5-4.7-9.6-9.2C.6 7.9 3.1 4 7.2 4c2 0 3.6 1 4.8 2.6C13.2 5 14.8 4 16.8 4c4.1 0 6.6 3.9 4.8 7.8C19.5 16.3 12 21 12 21Z'/%3E%3C/svg%3E"); }
.icon.spark { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 1.8 6.2L20 10l-6.2 1.8L12 18l-1.8-6.2L4 10l6.2-1.8L12 2Zm7 12 1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3ZM5 14l.8 2.2L8 17l-2.2.8L5 20l-.8-2.2L2 17l2.2-.8L5 14Z'/%3E%3C/svg%3E"); }
.icon.target { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v3.1A7 7 0 0 1 18.9 11H22v2h-3.1A7 7 0 0 1 13 18.9V22h-2v-3.1A7 7 0 0 1 5.1 13H2v-2h3.1A7 7 0 0 1 11 5.1V2Zm1 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm0 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z'/%3E%3C/svg%3E"); }
.icon.palette { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a9 9 0 0 0 0 18h1.5a2.5 2.5 0 0 0 1.8-4.2 1.2 1.2 0 0 1 .9-2h1.2A3.6 3.6 0 0 0 21 11.2C21 6.7 17 3 12 3ZM7.5 12A1.5 1.5 0 1 1 7.5 9a1.5 1.5 0 0 1 0 3Zm3-4A1.5 1.5 0 1 1 10.5 5a1.5 1.5 0 0 1 0 3Zm4 0A1.5 1.5 0 1 1 14.5 5a1.5 1.5 0 0 1 0 3Zm2 4a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z'/%3E%3C/svg%3E"); }
.icon.megaphone { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M21 5v14h-2l-8-4H7l2 5H6l-2-5H3V9h8l8-4h2ZM5 11v2h5V11H5Zm7 2.8 7 3.5V6.7l-7 3.5v3.6Z'/%3E%3C/svg%3E"); }
.icon.compass { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm4.8 3.2-2.1 6.5-6.5 2.1 2.1-6.5 6.5-2.1Zm-5 3.6-.7 2.1 2.1-.7.7-2.1-2.1.7Z'/%3E%3C/svg%3E"); }
.icon.mail { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2 3.2V17h14V8.2l-7 5-7-5ZM6.4 7l5.6 4 5.6-4H6.4Z'/%3E%3C/svg%3E"); }
.icon.phone { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 2h3.3l1.5 5-2.2 1.5a13 13 0 0 0 6.3 6.3l1.5-2.2 5 1.5v3.3A3.6 3.6 0 0 1 18.4 21 15.4 15.4 0 0 1 3 5.6 3.6 3.6 0 0 1 6.6 2Z'/%3E%3C/svg%3E"); }
.icon.pin { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E"); }
.icon.dollar { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v3h4v2h-5c-1.7 0-3 .9-3 2s1.3 2 3 2c3 0 6 1.6 6 5 0 2.6-2.1 4.6-5 4.9V23h-2v-2H6v-2h6c2.2 0 4-1.2 4-3s-1.8-3-4-3c-3 0-5-1.6-5-4 0-2.2 1.7-3.7 4-3.9V2Z'/%3E%3C/svg%3E"); }
.icon.facebook { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3 0-5 2-5 5v2H6v4h3v7h4v-7h3.2l.8-4h-4V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E"); }

@media (max-width: 1020px) {
  .nav-cta { display: none; }
  .service-row, .pricing, .addon-grid, .review-grid, .photo-grid, .case-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-ribbon { grid-template-columns: repeat(2, 1fr); }
  .service-row article:nth-child(2n) { border-right: 0; }
  .hero, .intro-grid, .split, .booking, .story { grid-template-columns: 1fr; }
  .hero-panel { min-height: 440px; }
  .hero-photo { right: 10%; top: 28px; }
  .fluid-art { inset: 34% -20% 0 8%; opacity: 0.8; }
  .section-head, .cta-wave { display: block; }
  .cta-wave button { margin-top: 24px; }
}

@media (max-width: 760px) {
  .topbar { grid-template-columns: 1fr auto; gap: 14px; padding: 14px 18px; }
  .brand-button { padding: 5px 7px; }
  .brand-logo { width: 132px; }
  .menu-button { display: block; }
  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    display: none;
    padding: 10px;
    background: var(--ink-2);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav button { text-align: left; }
  h1 { font-size: clamp(46px, 15vw, 70px); }
  h2 { font-size: 35px; }
  .page-band { padding: 52px 20px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-panel { min-height: 340px; }
  .fluid-art { inset: 43% -45% 0 0; }
  .signal-card { position: relative; top: auto !important; right: auto !important; bottom: auto !important; margin: 16px 0; }
  .hero-photo { position: relative; top: auto; right: auto; width: 100%; height: 320px; transform: none; margin-bottom: 18px; }
  .mini-map { display: none; }
  .service-row, .pricing, .process-line, .booking-form, .footer, .addon-grid, .review-grid, .proof-ribbon, .slot-row, .photo-grid, .case-grid, .post-grid { grid-template-columns: 1fr; }
  .photo-grid figure { height: 340px; }
  .story-photo { min-height: 460px; }
  .case-photo { min-height: 420px; }
  .case-grid article, .post-grid article { min-height: auto; }
  .service-row article { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .price-card.featured { transform: none; }
  .footer { text-align: left; }
}
