/*
 * Original Benny's typography. These licensed WOFF2 files are stored locally
 * so the site does not depend on Wix for typography.
 */
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("/fonts/neue-haas-grotesk-display-pro-400.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("/fonts/neue-haas-grotesk-display-pro-500.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("/fonts/neue-haas-grotesk-display-pro-700.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #023056;
  --navy-dark: #001f38;
  --blue: #174d70;
  --sky: #83c7e9;
  --mist: #eaf0f8;
  --cream: #f7f1e8;
  --sand: #dcc4a4;
  --coral: #e96d4e;
  --white: #ffffff;
  --ink: #173042;
  --muted: #526977;
  --border: rgba(2, 48, 86, 0.16);
  --shadow-sm: 0 10px 28px rgba(2, 48, 86, 0.08);
  --shadow-lg: 0 28px 70px rgba(2, 48, 86, 0.16);
  --radius-sm: 0.75rem;
  --radius-md: 1.35rem;
  --radius-lg: 2.25rem;
  --container: min(100% - 2rem, 76rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration: 520ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Neue Haas Grotesk Display Pro", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--blue);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

button,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-family: "Neue Haas Grotesk Display Pro", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 10vw, 6rem);
  letter-spacing: normal;
}

h2 {
  font-size: clamp(2.15rem, 7vw, 4.25rem);
  letter-spacing: normal;
}

h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.25;
}

p,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.lede {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform var(--duration-fast) ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.5rem;
  transform: translateY(-200%);
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(234, 240, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    box-shadow var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(2, 48, 86, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 6.75rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 5.25rem;
  height: 5.25rem;
}

.brand span {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    transform var(--duration-fast) ease,
    opacity var(--duration-fast) ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.4rem;
}

.menu-icon::after {
  top: 0.4rem;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 6.75rem 0 auto;
  visibility: hidden;
  padding: 1.25rem 1rem 2rem;
  background: var(--mist);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-0.75rem);
  transition:
    visibility var(--duration-fast) ease,
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav ul {
  display: grid;
  gap: 0.25rem;
  width: var(--container);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--navy);
  border-radius: 0.65rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(131, 199, 233, 0.28);
}

.site-nav .button,
.site-nav .button:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.25rem;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(2, 48, 86, 0.14);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 24px rgba(2, 48, 86, 0.2);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
}

.button-coral {
  color: var(--navy-dark);
  background: var(--coral);
  border-color: var(--coral);
}

.button-coral:hover {
  color: var(--white);
  background: #cf5336;
  border-color: #cf5336;
}

.button-small {
  min-height: 2.65rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.mobile-book {
  position: fixed;
  z-index: 900;
  right: 1rem;
  bottom: 1rem;
  box-shadow: 0 12px 32px rgba(2, 48, 86, 0.28);
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 6.75rem) 0 clamp(4.5rem, 10vw, 8.5rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy p {
  max-width: 41rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.hero-media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 573 / 588;
}

.hero-media::before {
  content: none;
}

.hero-media picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 573 / 588;
  border-radius: var(--radius-md);
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -0.4rem;
  bottom: 0.5rem;
  max-width: 9.5rem;
  padding: 0.8rem 1rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(2, 48, 86, 0.12);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.page-hero {
  padding: clamp(3.25rem, 8vw, 7rem) 0 clamp(2.75rem, 7vw, 5rem);
}

.page-hero .lede {
  margin-bottom: 0;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy .eyebrow,
.section-navy a:not(.button) {
  color: var(--white);
}

.section-navy .lede {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce8ef;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.025);
}

.card-body {
  padding: 1.35rem;
}

.card-body > :last-child {
  margin-bottom: 0;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card .card-body {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.service-card .card-body > .eyebrow,
.service-card .card-body > h3,
.service-card .card-body > p {
  width: 100%;
}

.service-card .card-body > .eyebrow {
  align-self: flex-start;
}

.service-card .card-body > p {
  flex: 1;
}

.service-card .card-body > .text-link {
  margin-top: auto;
}

.service-card .card-media {
  aspect-ratio: 4 / 5;
}

.service-card .card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card .card-media img {
  object-position: 50% 50%;
}

.photo-carousel {
  position: relative;
  isolation: isolate;
}

.photo-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms var(--ease);
}

.photo-carousel .carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  z-index: 2;
  bottom: 0.9rem;
  left: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.42rem 0.58rem;
  background: rgba(2, 48, 86, 0.78);
  border-radius: 999px;
}

.carousel-dot {
  position: relative;
  flex: 0 0 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  background: rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    background-color var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.carousel-dot.is-active::before {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.14);
}

.carousel-dot:hover::before,
.carousel-dot:focus-visible::before {
  background: var(--coral);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 1px;
}

.carousel-toggle {
  display: inline-grid;
  width: 1.8rem;
  height: 1.4rem;
  margin-left: 0.16rem;
  padding: 0 0 0 0.38rem;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.carousel-toggle:hover,
.carousel-toggle:focus-visible {
  color: var(--coral);
  background: transparent;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .photo-carousel .carousel-slide {
    transition: none;
  }
}

.price {
  display: inline-flex;
  margin: 0.5rem 0 1rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.quote-band {
  display: grid;
  gap: 1.5rem;
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--sky);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.quote-band p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.image-frame::after {
  position: absolute;
  z-index: -1;
  inset: 1rem -1rem -1rem 1rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  content: "";
}

.concept-card {
  overflow: hidden;
  justify-self: center;
  width: 100%;
  max-width: 25rem;
  padding: 0.5rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.concept-card::after {
  display: none;
}

.concept-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.5rem);
  box-shadow: none;
}

.concept-card .media-note {
  margin: 0.5rem 0.2rem 0.1rem;
  max-width: 60ch;
  font-size: 0.78rem;
  line-height: 1.35;
}

.check-list,
.plain-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
  content: "✓";
}

.detail-grid {
  display: grid;
  gap: 1rem;
}

.detail-block {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.detail-block h3,
.detail-block h4 {
  margin-bottom: 0.6rem;
}

.detail-block ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.service-comfort-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.service-comfort-note strong {
  color: var(--coral);
}

.pricing-panel {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.pricing-selector {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: clamp(1.4rem, 5vw, 2.5rem);
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pricing-selector-compact {
  margin-top: 0;
}

.pricing-selector-intro label {
  display: block;
  margin: 1rem 0 0.35rem;
  color: var(--navy);
  font-weight: 700;
}

.pricing-selector select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.7rem 2.6rem 0.7rem 0.9rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 0.6rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pricing-results {
  display: grid;
  gap: 0.8rem;
}

.pricing-results article {
  padding: 1.1rem;
  background: var(--white);
  border-left: 5px solid var(--coral);
  border-radius: 0.6rem;
}

.pricing-results h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.pricing-results strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.1;
}

.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-panel h2,
.pricing-panel h3 {
  color: var(--white);
}

.pricing-number {
  display: block;
  margin: 0.2rem 0 0.5rem;
  color: var(--sky);
  font-family: "Neue Haas Grotesk Display Pro", Helvetica, Arial, sans-serif;
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

.map-grid {
  display: grid;
  gap: 1.5rem;
}

#service-map {
  width: 100%;
  min-height: 28rem;
  background: #dce7ee;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.map-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
  padding-left: 0;
}

.map-key li {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
}

.swatch-service {
  background: rgba(23, 77, 112, 0.35);
  border: 2px solid var(--blue);
}

.swatch-limited {
  background: rgba(51, 51, 51, 0.55);
  border: 2px solid #545353;
}

.town-list {
  columns: 2;
  column-gap: 1.5rem;
  padding-left: 1.2rem;
}

.town-list li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.faq-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(131, 199, 233, 0.3), transparent 28rem),
    var(--mist);
}

.faq-hero-grid {
  display: grid;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: end;
}

.faq-hero-card {
  padding: clamp(1.5rem, 5vw, 2.4rem);
  background: var(--cream);
  border: 1px solid rgba(2, 48, 86, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-hero-card h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.faq-hero-card > :last-child {
  margin-bottom: 0;
}

.faq-card-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-page {
  background: var(--cream);
}

.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.faq-jump a {
  padding: 0.65rem 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.faq-jump a:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.faq-sections {
  display: grid;
  gap: 1.25rem;
}

.faq-group {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.4rem, 5vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(2, 48, 86, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 8rem;
}

.faq-group:nth-child(even) {
  background: var(--mist);
}

.faq-group-heading p {
  max-width: 28rem;
  color: var(--muted);
}

.faq-group-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  overflow-wrap: break-word;
}

.faq-group-heading > :last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(233, 109, 78, 0.5);
  box-shadow: 0 10px 24px rgba(2, 48, 86, 0.07);
}

.faq-item summary {
  position: relative;
  padding: 1.1rem 3.8rem 1.1rem 1.15rem;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  color: var(--navy);
  background: rgba(131, 199, 233, 0.34);
  border-radius: 50%;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
  transition:
    color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.faq-item[open] summary::after {
  color: var(--white);
  background: var(--coral);
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
}

.faq-answer a {
  font-weight: 700;
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

.instagram-provider {
  margin: 1.5rem 0 2rem;
}

.instagram-provider [class^="elfsight-app-"]:empty {
  min-height: 4rem;
}

.video-frame {
  overflow: hidden;
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.blog-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card .text-link {
  margin-top: auto;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article {
  width: min(100%, 47rem);
  margin-inline: auto;
}

.article h1 {
  font-size: clamp(2.5rem, 8vw, 4.8rem);
}

.article h2 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 5vw, 2.65rem);
}

.article h3 {
  margin-top: 2rem;
}

.article p,
.article li {
  font-size: 1.05rem;
}

.article hr {
  width: 5rem;
  height: 3px;
  margin: 3rem 0;
  background: var(--sky);
  border: 0;
}

.article-callout {
  margin: 2.5rem 0;
  padding: 1.4rem;
  background: var(--cream);
  border-left: 5px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.policy-document h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.policy-document li + li {
  margin-top: 0.55rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  min-width: 2.8rem;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.85rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.social-link:hover {
  color: var(--white);
  background: var(--blue);
}

.site-footer {
  padding: 4rem 0 6rem;
  color: var(--muted);
  background: var(--mist);
  border-top: 1px solid var(--border);
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--navy);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  width: 8rem;
  height: 8rem;
  margin-bottom: 1rem;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  text-decoration-color: rgba(2, 48, 86, 0.35);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 56, 0.74);
  backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 35rem);
  max-height: min(90vh, 44rem);
  overflow: auto;
  padding: clamp(1.5rem, 6vw, 2.75rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.3rem;
}

.modal-logo {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1rem;
}

.modal h2 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.notice {
  padding: 1rem 1.2rem;
  background: #fff8d9;
  border: 1px solid #dfc86a;
  border-radius: var(--radius-sm);
}

.shop-status {
  min-height: 60vh;
  display: grid;
  align-items: center;
}

@media (min-width: 42rem) {
  .brand span {
    display: inline;
  }

  .card-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .pricing-selector:not(.pricing-selector-compact) {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.2fr);
    align-items: center;
  }

  .pricing-selector:not(.pricing-selector-compact) .pricing-note {
    grid-column: 1 / -1;
  }

  .pricing-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 62rem) {
  .nav-shell {
    width: min(100% - 3rem, 90rem);
    min-height: 8.25rem;
    gap: clamp(2rem, 4vw, 5rem);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex: 1;
    visibility: visible;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    transform: none;
  }

  .site-nav ul {
    display: flex;
    width: auto;
    gap: clamp(0.15rem, 0.45vw, 0.55rem);
    align-items: center;
    justify-content: flex-end;
  }

  .brand img {
    width: 7.5rem;
    height: 7.5rem;
  }

  .site-nav a {
    padding: 0.78rem clamp(0.8rem, 1vw, 1.1rem);
    font-size: 1.03rem;
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 6rem);
  }

  .split-reverse > :first-child {
    order: 2;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
    align-items: end;
  }

  .section-heading > :last-child {
    justify-self: end;
  }

  .faq-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.65fr);
  }

  .faq-group {
    grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
  }

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

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

  .map-grid {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .mobile-book {
    display: none;
  }
}

@media (min-width: 84rem) {
  .nav-shell {
    min-height: 9rem;
  }

  .brand img {
    width: 8.25rem;
    height: 8.25rem;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .site-nav a {
    padding: 0.9rem clamp(1rem, 1.2vw, 1.4rem);
    font-size: 1.16rem;
  }

  .site-nav ul {
    gap: clamp(0.35rem, 0.65vw, 0.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
