:root {
  --white: #ffffff;
  --soft: #fffbf5;
  --warm: #fff7ed;
  --fresh: #eef8f3;
  --sage: #6f8f78;
  --blue: #1f5f7a;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --gold: #f5a524;
  --charcoal: #1f2937;
  --ink: #111827;
  --muted: #6b7280;
  --line: #fed7aa;
  --line-soft: rgba(254, 215, 170, 0.72);
  --shadow: 0 18px 48px rgba(146, 64, 14, 0.12);
  --shadow-strong: 0 22px 54px rgba(234, 88, 12, 0.2);
  --radius: 16px;
  --font-heading: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

[hidden],
.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

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

.container {
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.25rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(254, 215, 170, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, transform 240ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
}

.site-header.is-hidden {
  transform: translate3d(0, -110%, 0);
  pointer-events: none;
}

.nav-wrap {
  width: min(100% - 2rem, 1200px);
  min-height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 clamp(152px, 16vw, 212px);
  width: clamp(152px, 16vw, 212px);
  height: 78px;
  aspect-ratio: 424 / 229;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-menu a,
.nav-dropdown-trigger {
  color: rgba(31, 41, 55, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a[aria-current="page"],
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-current="page"],
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--orange-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  z-index: 30;
  width: min(92vw, 360px);
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(254, 215, 170, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  display: grid;
  gap: 0.12rem;
  padding: 0.78rem 0.85rem;
  border-radius: 12px;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  background: var(--warm);
}

.nav-dropdown-panel strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.2;
}

.nav-dropdown-panel span {
  color: rgba(31, 41, 55, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--charcoal);
}

.hero {
  height: clamp(640px, calc(100svh - 90px), 760px);
  min-height: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 36%, rgba(255, 255, 255, 0.78) 48%, rgba(17, 24, 39, 0.12) 76%, rgba(17, 24, 39, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 52%, rgba(17, 24, 39, 0.2));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  gap: clamp(1.8rem, 4.8vw, 4rem);
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink) url("/assets/hero/puregold-hero-poster.jpg") center / cover no-repeat;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

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

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

p {
  margin: 0;
}

.hero-lede {
  max-width: 46ch;
  margin-top: 1.05rem;
  color: rgba(31, 41, 55, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.button-primary[href^="/book-cleaning/"] {
  animation: booking-breathe 4.8s ease-in-out infinite;
}

.button-primary[href^="/book-cleaning/"]::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  opacity: 0;
  pointer-events: none;
}

.button-primary[href^="/book-cleaning/"]:hover::after,
.button-primary[href^="/book-cleaning/"]:focus-visible::after {
  animation: booking-sheen 720ms ease;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--orange-dark);
}

.button-secondary:hover {
  border-color: rgba(234, 88, 12, 0.54);
  color: var(--ink);
}

.trust-line,
.hero-service-markers {
  margin-top: 1.25rem;
  color: rgba(31, 95, 122, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 520px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.hero-service-markers span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(31, 95, 122, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(31, 41, 55, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(calc(var(--chip-start, 0) * -1px)) translateY(4px);
  animation: marker-settle 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-service-markers span:nth-child(1) {
  --chip-start: 0;
  animation-delay: 180ms;
}

.hero-service-markers span:nth-child(2) {
  --chip-start: 92;
  animation-delay: 280ms;
}

.hero-service-markers span:nth-child(3) {
  --chip-start: 188;
  animation-delay: 380ms;
}

.hero-service-markers span:nth-child(4) {
  --chip-start: 326;
  animation-delay: 480ms;
}

.service-card img,
.story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-card {
  position: relative;
  min-height: 460px;
  padding: 1.35rem;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.92)),
    radial-gradient(circle at 74% 16%, rgba(245, 165, 36, 0.34), transparent 16rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-card,
.motion-hero-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: 1rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 54%;
  height: 150%;
  transform: skewX(-16deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  animation: clean-sweep 5.6s ease-in-out 1s infinite;
}

.hero-video-frame,
.clean-motion-frame {
  position: relative;
  min-height: 285px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.16);
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(17, 24, 39, 0.72));
  pointer-events: none;
}

.video-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.15rem;
  color: var(--white);
}

.video-caption strong {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.clean-motion-frame {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.7), transparent 10rem),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #fff3e4 100%);
  border: 1px solid rgba(254, 215, 170, 0.8);
}

.motion-room {
  position: absolute;
  inset: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(254, 215, 170, 0.38) 1px, transparent 1px),
    linear-gradient(rgba(254, 215, 170, 0.38) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 58%, #f9e4cc 100%);
  background-size: 56px 56px, 56px 56px, auto;
  box-shadow: inset 0 0 0 1px rgba(254, 215, 170, 0.78);
  overflow: hidden;
}

.motion-room::before {
  content: "";
  position: absolute;
  inset: 0 48% 0 0;
  background:
    radial-gradient(circle at 28% 68%, rgba(107, 114, 128, 0.18), transparent 4rem),
    linear-gradient(180deg, rgba(31, 41, 55, 0.08), rgba(31, 41, 55, 0.02));
  animation: before-fade 4.8s ease-in-out infinite;
}

.window,
.counter,
.sink,
.tile,
.dust,
.spark {
  position: absolute;
  display: block;
}

.window {
  top: 1.2rem;
  left: 1.2rem;
  width: 104px;
  height: 88px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.9) 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.9) 48% 52%, transparent 52%),
    linear-gradient(135deg, #bfe7ff, #fff6da);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.72), 0 14px 28px rgba(59, 130, 246, 0.14);
}

.counter {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 2.1rem;
  height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4b264, #f97316);
  box-shadow: inset 0 12px 0 rgba(255, 255, 255, 0.32), 0 20px 30px rgba(146, 64, 14, 0.14);
}

.sink {
  right: 3.2rem;
  bottom: 3.15rem;
  width: 104px;
  height: 42px;
  border-radius: 8px 8px 22px 22px;
  background: linear-gradient(180deg, #ffffff, #e5e7eb);
  box-shadow: inset 0 -8px 0 rgba(107, 114, 128, 0.18);
}

.sink::before {
  content: "";
  position: absolute;
  left: 38px;
  top: -28px;
  width: 30px;
  height: 34px;
  border: 7px solid #9ca3af;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.tile {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(254, 215, 170, 0.84);
}

.tile-a {
  top: 8rem;
  left: 2.2rem;
}

.tile-b {
  top: 7rem;
  right: 2.5rem;
}

.dust {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.16);
  filter: blur(8px);
  animation: dust-clear 4.8s ease-in-out infinite;
}

.dust-a {
  left: 3.8rem;
  bottom: 6.5rem;
}

.dust-b {
  left: 9rem;
  top: 7rem;
}

.dust-c {
  right: 6rem;
  bottom: 6rem;
}

.spark {
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(245, 165, 36, 0.5));
  animation: sparkle-reveal 4.8s ease-in-out infinite;
}

.spark-a {
  top: 4.4rem;
  right: 7rem;
}

.spark-b {
  right: 3.2rem;
  bottom: 7rem;
  animation-delay: 120ms;
}

.spark-c {
  left: 9.2rem;
  bottom: 4.4rem;
  animation-delay: 220ms;
}

.clean-wipe {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -38%;
  width: 34%;
  transform: skewX(-13deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.94), rgba(245, 165, 36, 0.22), transparent);
  filter: blur(10px);
  animation: motion-clean-wipe 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.motion-caption {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 0.1rem 0.15rem;
  color: var(--ink);
}

.motion-caption strong {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.motion-caption span {
  color: rgba(31, 41, 55, 0.66);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-mark {
  width: 88%;
  height: 150px;
  margin: 1.2rem auto 2rem;
  padding: 0;
  border-radius: 26px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-soft), 0 24px 44px rgba(146, 64, 14, 0.1);
  overflow: hidden;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clean-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.clean-panel span,
.hero-proof-row span,
.proof-tile span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--charcoal);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(254, 215, 170, 0.7);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-proof-row span {
  justify-content: center;
  min-height: 50px;
}

.standard-note {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
}

.hero-video-card .standard-note,
.motion-hero-card .standard-note {
  margin-top: 0;
}

.standard-note strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.standard-note p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  padding: 0.85rem 0;
  border-block: 1px solid var(--line-soft);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-align: center;
  color: rgba(31, 41, 55, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.services-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
}

.quick-book {
  padding: 1rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}

.quick-book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(254, 215, 170, 0.86);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--soft), var(--white));
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.07);
}

.quick-book-inner p {
  color: rgba(31, 41, 55, 0.78);
}

.quick-book-inner strong {
  color: var(--ink);
}

.quick-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.section-heading {
  max-width: 660px;
}

.section-heading.narrow {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.card-grid,
.service-grid,
.step-grid {
  display: grid;
  gap: 1rem;
}

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

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.25rem;
}

.feature-card,
.service-card,
.step-card,
.area-card,
.page-card,
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(146, 64, 14, 0.08);
}

.feature-card,
.service-card,
.step-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card,
.step-card,
.area-card,
.page-card:not(.media-page-card):not(.contact-card) {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::after,
.step-card::after,
.area-card::after,
.page-card:not(.media-page-card):not(.contact-card)::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  top: -1.8rem;
  z-index: 0;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.feature-card > *,
.step-card > *,
.area-card > *,
.page-card:not(.media-page-card):not(.contact-card) > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover,
.service-card:hover,
.step-card:hover,
.area-card:hover,
.page-card:not(.media-page-card):not(.contact-card):hover,
.page-card:not(.media-page-card):not(.contact-card):focus-within {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 22px 48px rgba(146, 64, 14, 0.12);
}

.feature-card:hover::after,
.step-card:hover::after,
.area-card:hover::after,
.page-card:not(.media-page-card):not(.contact-card):hover::after,
.page-card:not(.media-page-card):not(.contact-card):focus-within::after {
  transform: scale(1.08);
  opacity: 0.9;
}

.feature-card {
  padding: 1.35rem;
}

.feature-card .icon,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--warm);
  color: var(--orange-dark);
  font-weight: 900;
}

.feature-card p,
.service-card p,
.step-card p,
.area-card p,
.page-card p,
.faq-panel p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.soft-section {
  background: linear-gradient(180deg, var(--soft), var(--warm));
}

.service-card {
  position: relative;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 240ms ease, transform 560ms ease;
}

.service-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-position: center;
  transition: transform 520ms ease, filter 240ms ease;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.service-card h3 {
  padding: 1rem 1.1rem 0;
  font-size: 1.18rem;
}

.service-card p {
  padding-inline: 1.1rem;
}

.service-card a {
  margin-top: auto;
  padding: 1rem 1.1rem 1.1rem;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.service-card a:hover,
.text-link:hover {
  color: var(--ink);
}

.proof-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.results-video-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.results-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.results-video-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.results-video-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.results-video-caption strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.05;
}

.results-video-caption span {
  color: rgba(31, 41, 55, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(260px, 0.8fr) minmax(260px, 0.78fr);
  gap: clamp(1.4rem, 3.6vw, 2.8rem);
  align-items: center;
}

.story-image {
  min-height: 520px;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--fresh);
  box-shadow: 0 22px 54px rgba(31, 95, 122, 0.12);
}

.story-image img {
  object-position: center;
}

.proof-tile {
  min-height: 170px;
  display: flex;
  align-items: end;
  padding: 1rem;
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(31, 41, 55, 0.04), rgba(249, 115, 22, 0.13)),
    repeating-linear-gradient(135deg, rgba(254, 215, 170, 0.44) 0 1px, transparent 1px 14px);
  border: 1px dashed rgba(234, 88, 12, 0.35);
}

.proof-tile:first-child {
  grid-row: span 2;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 18px;
  background: var(--soft);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: inset 0 0 0 5px var(--warm);
}

.step-card {
  padding: 1.35rem;
}

.area-card {
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--ink);
  color: var(--white);
}

.area-card h3 {
  color: var(--white);
}

.area-card p {
  color: rgba(255, 255, 255, 0.78);
}

.area-card .button {
  margin-top: 1.4rem;
}

.team-invite-section {
  margin-top: clamp(-2.25rem, -3vw, -1.25rem);
  padding: 0 0 clamp(1.5rem, 3.5vw, 2.6rem);
}

.team-invite {
  position: relative;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.35rem) clamp(1rem, 3vw, 1.65rem);
  border: 1px solid rgba(245, 165, 36, 0.26);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.team-invite h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.team-invite p {
  max-width: 54ch;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.team-invite .button {
  min-height: 46px;
  padding-inline: 1.2rem;
  white-space: nowrap;
}

.final-cta {
  padding-top: 0;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-panel {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 165, 36, 0.3), transparent 18rem),
    linear-gradient(135deg, var(--ink), #2f241b);
  color: var(--white);
  text-align: center;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 48ch;
  margin: 1rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(245, 165, 36, 0.2), transparent 23rem),
    linear-gradient(180deg, var(--white), var(--soft));
}

.page-hero.image-page-hero {
  padding: clamp(1.4rem, 3.5vw, 2rem) 0 clamp(2.6rem, 5vw, 4rem);
  background: var(--white);
}

.page-hero > .container {
  width: min(100% - 2rem, 1240px);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 2rem;
  align-items: end;
}

.image-page-hero .container {
  position: relative;
  min-height: clamp(430px, 54vw, 590px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: clamp(20px, 3vw, 30px);
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(31, 95, 122, 0.14);
}

.page-hero-copy .button {
  margin-top: 1.45rem;
}

.image-page-hero .page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.image-page-hero h1,
.image-page-hero p {
  color: var(--white);
}

.image-page-hero h1 {
  max-width: 14ch;
}

.image-page-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.image-page-hero .button-primary {
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.26);
}

.page-hero-media,
.supporting-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--fresh);
  box-shadow: 0 22px 54px rgba(31, 95, 122, 0.12);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.82) 0 34%, rgba(17, 24, 39, 0.52) 54%, rgba(17, 24, 39, 0.12)),
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.28));
}

.supporting-media {
  min-height: 320px;
  align-self: stretch;
}

.page-hero-media img,
.supporting-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-media img {
  transform: scale(1.02);
}

.media-two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(260px, 0.8fr) minmax(260px, 0.74fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-card {
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.media-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.media-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 240ms ease, transform 560ms ease;
}

.media-page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease, filter 240ms ease;
}

.media-page-card:hover,
.media-page-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 26px 56px rgba(146, 64, 14, 0.14);
}

.media-page-card:hover::after,
.media-page-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.media-page-card:hover img,
.media-page-card:focus-within img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.media-page-card h2 {
  padding: 1rem clamp(1.2rem, 3vw, 1.75rem) 0;
}

.media-page-card p {
  padding-inline: clamp(1.2rem, 3vw, 1.75rem);
}

.media-page-card .text-link {
  padding: 1rem clamp(1.2rem, 3vw, 1.75rem) clamp(1.2rem, 3vw, 1.75rem);
}

.standard-page-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 165, 36, 0.2), transparent 8rem),
    linear-gradient(180deg, var(--white), var(--soft));
}

.standard-card-mark {
  position: relative;
  min-height: 138px;
  display: grid;
  place-items: center;
  margin: calc(clamp(1.2rem, 3vw, 1.75rem) * -1) calc(clamp(1.2rem, 3vw, 1.75rem) * -1) 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(245, 165, 36, 0.84)),
    var(--orange);
}

.standard-card-mark::before,
.standard-card-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.standard-card-mark::before {
  width: 150px;
  height: 150px;
  right: -34px;
  top: -48px;
}

.standard-card-mark::after {
  width: 92px;
  height: 92px;
  left: 22px;
  bottom: -36px;
}

.standard-card-mark span {
  position: relative;
  z-index: 1;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.standard-page-card p {
  margin-top: 0;
}

.standard-page-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standard-page-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(31, 41, 55, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.standard-page-card li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.page-card h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

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

.content-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  position: relative;
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  top: -1.8rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  pointer-events: none;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--warm);
  color: var(--orange-dark);
}

.contact-card-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.contact-card-icon[data-contact-icon="phone"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.66 2.78a2 2 0 0 1-.45 2.11L8.09 9.84a16 16 0 0 0 6.07 6.07l1.23-1.23a2 2 0 0 1 2.11-.45c.89.31 1.82.53 2.78.66A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.66 2.78a2 2 0 0 1-.45 2.11L8.09 9.84a16 16 0 0 0 6.07 6.07l1.23-1.23a2 2 0 0 1 2.11-.45c.89.31 1.82.53 2.78.66A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-card-icon[data-contact-icon="mail"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.contact-card-icon[data-contact-icon="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.contact-card-icon[data-contact-icon="map"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.52 10.15-7.35 11.72a1 1 0 0 1-1.3 0C9.52 20.15 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.52 10.15-7.35 11.72a1 1 0 0 1-1.3 0C9.52 20.15 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-card-icon[data-contact-icon="user-plus"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M19 8v6'/%3E%3Cpath d='M22 11h-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M19 8v6'/%3E%3Cpath d='M22 11h-6'/%3E%3C/svg%3E");
}

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

.faq-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  color: var(--orange-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

.faq-trigger[aria-expanded="true"] + .faq-panel {
  display: block;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.consent {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(254, 215, 170, 0.92);
  border-radius: 14px;
  padding: 0.78rem 0.9rem;
  background: var(--soft);
  color: var(--ink);
}

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

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.consent input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  color: var(--orange-dark);
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #15803d;
}

.form-status[data-state="error"] {
  color: #b91c1c;
}

.form-status[data-state="pending"] {
  color: var(--orange-dark);
}

.form-card button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #171717;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 30;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 0.35rem;
  width: min(calc(100% - 2rem), 330px);
  padding: 0.35rem;
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 1.2rem));
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-sticky-cta[aria-hidden="true"] {
  display: none !important;
}

.mobile-sticky-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky-cta a:first-child {
  background: var(--orange);
  color: var(--white);
}

.mobile-sticky-cta a:last-child {
  background: var(--warm);
  color: var(--orange-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.7fr;
  gap: 2rem;
}

.site-footer img {
  width: 220px;
  height: 132px;
  padding: 0.45rem;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin-top: 0.55rem;
}

.site-footer a {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
.site-footer a[href*="instagram.com"] {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.site-footer a[href^="tel:"]::before,
.site-footer a[href^="mailto:"]::before,
.site-footer a[href*="instagram.com"]::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  background: currentColor;
  opacity: 0.95;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.site-footer a[href^="tel:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.66 2.78a2 2 0 0 1-.45 2.11L8.09 9.84a16 16 0 0 0 6.07 6.07l1.23-1.23a2 2 0 0 1 2.11-.45c.89.31 1.82.53 2.78.66A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.66 2.78a2 2 0 0 1-.45 2.11L8.09 9.84a16 16 0 0 0 6.07 6.07l1.23-1.23a2 2 0 0 1 2.11-.45c.89.31 1.82.53 2.78.66A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.site-footer a[href^="mailto:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.site-footer a[href*="instagram.com"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.footer-bottom {
  width: min(100% - 2rem, 1160px);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.1;
  text-align: center;
}

.footer-bottom a {
  display: inline;
  margin-top: 0;
  color: var(--gold);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.1;
}

.footer-credit a {
  position: relative;
  top: -0.02em;
  color: var(--gold);
  font-weight: 900;
  line-height: 1.1;
}

.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-credit a:hover::after,
.footer-credit a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes clean-sweep {
  0%,
  42% {
    opacity: 0;
    transform: translateX(0) skewX(-16deg);
  }
  55% {
    opacity: 0.9;
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-16deg);
  }
}

@keyframes marker-settle {
  0% {
    opacity: 0;
    transform: translateX(calc(var(--chip-start, 0) * -1px)) translateY(4px) scale(0.98);
  }
  62% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes motion-clean-wipe {
  0%,
  22% {
    opacity: 0;
    transform: translateX(0) skewX(-13deg);
  }
  35% {
    opacity: 1;
  }
  64% {
    opacity: 0.92;
  }
  82%,
  100% {
    opacity: 0;
    transform: translateX(440%) skewX(-13deg);
  }
}

@keyframes before-fade {
  0%,
  24% {
    opacity: 1;
  }
  62%,
  100% {
    opacity: 0;
  }
}

@keyframes dust-clear {
  0%,
  24% {
    opacity: 1;
    transform: scale(1);
  }
  62%,
  100% {
    opacity: 0;
    transform: scale(0.72);
  }
}

@keyframes sparkle-reveal {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.7) rotate(0deg);
  }
  58% {
    opacity: 0.95;
    transform: scale(1.08) rotate(12deg);
  }
  76%,
  100% {
    opacity: 0.32;
    transform: scale(0.9) rotate(0deg);
  }
}

@keyframes booking-breathe {
  0%,
  62%,
  100% {
    box-shadow: var(--shadow-strong);
  }
  72% {
    box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.14), var(--shadow-strong);
  }
  82% {
    box-shadow: 0 0 0 12px rgba(249, 115, 22, 0), var(--shadow-strong);
  }
}

@keyframes booking-sheen {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  24% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(420%) skewX(-18deg);
  }
}

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

  .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

  .quick-book-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 90px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a,
  .nav-dropdown-trigger {
    padding: 0.85rem;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    background: var(--soft);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease, margin 220ms ease;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    max-height: 440px;
    margin: 0 0 0.4rem;
    padding: 0.35rem;
  }

  .nav-dropdown-panel a {
    padding: 0.68rem 0.75rem;
  }

  .team-invite {
    align-items: start;
  }

  .team-invite .button {
    justify-self: start;
  }

  .hero {
    height: 590px;
    min-height: 0;
    padding: 2.35rem 0;
  }

  .hero-grid,
  .split,
  .two-column,
  .proof-grid,
  .trust-story,
  .media-two-column,
  .team-invite,
  .booking-layout,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 400px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0 42%, rgba(255, 255, 255, 0.38) 64%, rgba(17, 24, 39, 0.24)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02) 72%);
  }

  .video-hero-copy h1,
  .video-hero-copy .hero-lede {
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.72);
  }

  .hero-video-bg video {
    object-position: center 52%;
  }

  .story-image {
    min-height: 420px;
  }

  .page-hero-media {
    max-height: 420px;
  }

  .image-page-hero .container {
    min-height: 500px;
  }

  .supporting-media {
    min-height: 340px;
  }

  h1 {
    max-width: 12ch;
  }

  .content-grid,
  .content-grid.two,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .step-grid {
    margin-top: 1.5rem;
  }

  .section-heading.narrow + .faq-list {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 1160px);
  }

  .nav-wrap {
    width: min(100% - 1.2rem, 1200px);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .quick-actions {
    width: 100%;
    flex-direction: column;
  }

  .team-invite-section {
    margin-top: -1.25rem;
    padding-bottom: 1.6rem;
  }

  .team-invite {
    padding: 1rem;
    border-left-width: 4px;
    border-radius: 14px;
  }

  .trust-grid,
  .standard-grid,
  .service-grid,
  .proof-board,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-grid,
  .step-grid,
  .content-grid,
  .faq-list {
    gap: 0.8rem;
  }

  .service-card:last-child,
  .proof-tile:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .results-video-card {
    min-height: 360px;
  }

  .hero-card {
    min-height: auto;
  }

  .clean-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-video-frame {
    min-height: 360px;
  }

  .clean-motion-frame {
    min-height: 320px;
  }

  .motion-caption {
    text-align: center;
  }

  .faq-trigger {
    min-height: 56px;
    padding: 0.9rem 1rem;
  }

  .faq-panel {
    padding: 0 1rem 1rem;
  }

  .trust-strip {
    padding: 0.55rem 0;
    overflow: hidden;
  }

  .trust-grid {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-grid span {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0.44rem 0.72rem;
    border: 1px solid rgba(254, 215, 170, 0.78);
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.9);
    color: rgba(31, 41, 55, 0.74);
    font-size: 0.74rem;
    scroll-snap-align: start;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .has-mobile-sticky-cta .site-footer {
    padding-bottom: calc(1.5rem + 76px);
  }

  .footer-bottom {
    gap: 0.35rem 0.55rem;
    font-size: 0.78rem;
  }

  .footer-bottom > span {
    white-space: nowrap;
  }

  .footer-credit {
    gap: 0.55rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.75rem 0;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand {
    flex-basis: 150px;
    width: 150px;
    height: 64px;
  }

  .site-menu {
    top: 78px;
  }

  .hero {
    height: 540px;
    min-height: 0;
    padding: 1.8rem 0;
  }

  .hero-video-bg video {
    object-position: center 54%;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .hero-lede {
    margin-top: 0.7rem;
    font-size: 1rem;
  }

  .button-row {
    margin-top: 1rem;
  }

  .trust-line {
    margin-top: 1rem;
    font-size: 0.72rem;
    line-height: 1.7;
  }

  .hero-service-markers {
    margin-top: 0.85rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: 310px;
  }

  .hero-service-markers span {
    justify-content: center;
    min-height: 32px;
    padding: 0.36rem 0.62rem;
    text-align: center;
    font-size: 0.76rem;
  }

  .hero-service-markers span:nth-child(n) {
    --chip-start: 42;
  }

  .hero-service-markers span:nth-child(1) {
    --chip-start: 0;
  }

  .hero-card {
    padding: 1rem;
    border-radius: 26px;
  }

  .story-image {
    min-height: 360px;
    border-radius: 18px;
  }

  .page-hero-media,
  .supporting-media {
    border-radius: 16px;
  }

  .image-page-hero {
    padding-top: 1rem;
  }

  .image-page-hero .container {
    width: min(100% - 1rem, 1240px);
    min-height: 430px;
    padding: 1.35rem;
    border-radius: 18px;
  }

  .page-hero-media::after {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.76) 0 48%, rgba(17, 24, 39, 0.46)),
      linear-gradient(90deg, rgba(17, 24, 39, 0.42), transparent);
  }

  .supporting-media {
    min-height: 280px;
  }

  .clean-motion-frame {
    min-height: 260px;
    border-radius: 22px;
  }

  .motion-room {
    inset: 0.65rem;
  }

  .window {
    width: 82px;
    height: 68px;
  }

  .counter {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 1.4rem;
    height: 68px;
  }

  .sink {
    right: 1.5rem;
    bottom: 2.2rem;
    width: 78px;
    height: 34px;
  }

  .tile-a,
  .tile-b {
    display: none;
  }

  .motion-caption,
  .standard-note {
    text-align: center;
  }

  .quick-book-inner {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero p,
  .section-heading p {
    font-size: 1rem;
  }

  .section-heading p {
    margin-top: 0.75rem;
  }

  .service-grid,
  .step-grid {
    margin-top: 1.1rem;
  }

  .section-heading.narrow + .faq-list {
    margin-top: 0.75rem;
  }

  .form-card {
    border-radius: 22px;
  }

  .results-video-card {
    min-height: 320px;
    border-radius: 24px;
  }

  .results-video-caption {
    padding: 0.85rem;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-service-markers span {
    opacity: 1;
    transform: none;
  }
}
