:root {
  color-scheme: light dark;
  --page: #f2f7fb;
  --surface: #fbfdff;
  --surface-soft: #e3f4fc;
  --ink: #0b2a49;
  --muted: #526a80;
  --line: rgba(12, 53, 91, 0.17);
  --brand: #0aa9e3;
  --brand-strong: #185483;
  --brand-deep: #0c355b;
  --on-brand: #f7fcff;
  --header-bg: rgba(242, 247, 251, 0.92);
  --shadow: 0 28px 70px rgba(26, 77, 119, 0.16);
  --container: 1240px;
  --panel-radius: 28px;
  --control-radius: 999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(10, 169, 227, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(24, 84, 131, 0.08), transparent 24rem),
    var(--page);
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: var(--control-radius);
  background: var(--brand-deep);
  color: var(--on-brand);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  background: color-mix(in srgb, var(--page) 88%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.site-header-inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  position: relative;
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a:not(.nav-highlight)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-highlight {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--surface);
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-instagram i {
  color: var(--brand-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100dvh - 73px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vh, 56px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8.5ch;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.7vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--brand-deep);
  color: var(--on-brand);
  box-shadow: 0 14px 34px rgba(12, 53, 91, 0.2);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button i {
  margin-right: 9px;
  font-size: 1.2em;
  line-height: 1;
}

.button-service {
  min-width: 176px;
  background: var(--brand-deep);
  color: var(--on-brand);
  box-shadow: 0 14px 34px rgba(12, 53, 91, 0.18);
}

.button-service:hover {
  background: var(--brand-strong);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 4% -2% 3% 2%;
  border-radius: var(--panel-radius);
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(10, 169, 227, 0.12), transparent 68%);
}

.hero-art::after {
  content: "";
  position: absolute;
  top: -6%;
  right: 10%;
  width: 84px;
  height: 12px;
  border-radius: var(--control-radius);
  background: var(--brand);
  transform: rotate(-11deg);
}

.hero-seal {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: auto;
  transform: rotate(1.5deg);
  filter: drop-shadow(0 28px 34px rgba(24, 84, 131, 0.2));
}

.hero-service-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.hero-personalized-card {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(10, 169, 227, 0.38), transparent 10rem),
    var(--brand-deep);
  color: var(--on-brand);
  box-shadow: var(--shadow);
}

.hero-personalized-icon {
  margin-bottom: auto;
  color: var(--brand);
  font-size: 2.7rem;
  line-height: 1;
}

.hero-personalized-card span {
  margin-bottom: 12px;
  color: rgba(247, 252, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-personalized-card strong {
  color: var(--on-brand);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-personalized-card p {
  margin: 18px 0 0;
  color: rgba(247, 252, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-strip {
  background: var(--brand-deep);
  color: var(--on-brand);
}

.service-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-fact {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: 24px clamp(20px, 4vw, 50px);
  border-left: 1px solid rgba(247, 252, 255, 0.18);
}

.service-fact:last-child {
  border-right: 1px solid rgba(247, 252, 255, 0.18);
}

.service-fact-label,
.service-fact-time {
  display: block;
  color: var(--on-brand);
  font-weight: 800;
}

.service-fact-label {
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.service-fact-time {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-icon {
  color: var(--brand);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1;
}

.service-fact-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.service-fact span {
  margin-top: 7px;
  color: rgba(247, 252, 255, 0.75);
  font-size: 0.83rem;
  font-weight: 500;
}

.section {
  padding: clamp(82px, 10vw, 138px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-measure .section-heading {
  max-width: none;
}

.section-measure .section-heading h2 {
  white-space: nowrap;
}

.section-heading h2,
.rules-intro h2,
.drying-copy h2,
.registration-panel h2,
.faq-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.25vw, 4rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

.section-heading p,
.rules-intro p,
.drying-copy > p,
.faq-heading p {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.services-heading {
  max-width: 900px;
}

.services-heading h2 {
  max-width: none;
}

.services-heading h2 span,
.drying-copy h2 span {
  display: block;
  white-space: nowrap;
}

.service-modes {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-mode {
  min-width: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(10, 169, 227, 0.18), transparent 13rem),
    var(--surface);
}

.service-mode:nth-child(2) {
  background:
    radial-gradient(circle at 8% 92%, rgba(10, 169, 227, 0.2), transparent 15rem),
    var(--surface);
}

.service-mode:last-child {
  border-right: 0;
}

.service-mode-visit {
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 169, 227, 0.32), transparent 15rem),
    var(--brand-deep);
  color: var(--on-brand);
}

.service-mode-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.service-mode-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-mode-icon {
  flex: 0 0 auto;
  color: var(--brand-strong);
  font-size: 2.3rem;
  line-height: 1;
}

.service-mode > p {
  max-width: 31rem;
  margin-bottom: 34px;
  font-size: 1rem;
}

.service-mode-facts {
  margin: 0 0 34px;
}

.service-mode-facts div {
  display: grid;
  gap: 7px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.service-mode-facts dt,
.service-mode-facts dd {
  margin: 0;
}

.service-mode-facts dt {
  color: var(--brand-strong);
  font-size: 0.83rem;
  font-weight: 800;
}

.service-mode-facts dd {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.service-mode .text-link {
  width: fit-content;
  margin-top: auto;
}

.service-mode-visit .service-mode-icon,
.service-mode-visit .service-mode-facts dt,
.service-mode-visit .text-link {
  color: var(--brand);
}

.service-mode-visit h3,
.service-mode-visit .service-mode-facts dd {
  color: var(--on-brand);
}

.service-mode-visit > p {
  color: rgba(247, 252, 255, 0.74);
}

.service-mode-visit .service-mode-facts div {
  border-color: rgba(247, 252, 255, 0.18);
}

.measure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.measure-cue {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(circle at 88% 14%, rgba(10, 169, 227, 0.36), transparent 16rem),
    var(--surface-soft);
}

.measure-cue::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -22%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.measure-cue-title {
  margin-bottom: 44px;
  color: var(--brand-strong);
  font-size: 1rem;
  font-weight: 800;
}

.measure-cue-statement {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.measure-cue-statement strong {
  display: block;
  color: var(--brand-strong);
}

.measure-cue-line {
  display: block;
  font-size: 0.9em;
  white-space: nowrap;
}

.measure-cue-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.measure-rules {
  margin: 0;
  padding: 0;
  list-style: none;
}

.measure-rules li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.measure-rules li:first-child {
  border-top: 1px solid var(--line);
}

.measure-rules strong {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.measure-rule-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(10, 169, 227, 0.26);
  border-radius: 50%;
  background: rgba(10, 169, 227, 0.08);
  color: var(--brand-strong);
  font-size: 1.45rem;
  line-height: 1;
}

.measure-rule-copy {
  display: grid;
  gap: 7px;
}

.measure-rules span {
  color: var(--muted);
  line-height: 1.55;
}

.section-conditions {
  padding-top: 18px;
}

.rules-stage {
  overflow: hidden;
  border-radius: var(--panel-radius);
  background:
    radial-gradient(circle at 5% 4%, rgba(10, 169, 227, 0.38), transparent 21rem),
    var(--brand-deep);
  color: var(--on-brand);
  box-shadow: var(--shadow);
}

.rules-intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  padding: clamp(40px, 6vw, 76px);
}

.rules-intro h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--on-brand);
  font-size: clamp(2.15rem, 3.55vw, 3rem);
}

.rules-intro-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.rules-intro-icon {
  display: block;
  color: var(--brand);
  font-size: 1.75rem;
  line-height: 1;
}

.rules-intro-note p {
  max-width: 44rem;
  color: rgba(247, 252, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 400;
}

.rules-groups {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr 1fr;
  border-top: 1px solid rgba(247, 252, 255, 0.18);
}

.rule-group {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid rgba(247, 252, 255, 0.18);
}

.rule-group:last-child {
  border-right: 0;
}

.rule-group-warning {
  background: var(--brand-strong);
}

.rule-group-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.rule-group-icon {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1.75rem;
  line-height: 1;
}

.rule-group-warning .rule-group-icon {
  color: #f5a3a3;
}

.rule-group h3 {
  margin-bottom: 0;
  color: var(--on-brand);
  font-size: 1.3rem;
}

.rule-group p {
  margin-bottom: 18px;
  color: rgba(247, 252, 255, 0.78);
}

.rule-group p:last-child {
  margin-bottom: 0;
}

.drying-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(44px, 8vw, 108px);
}

.drying-copy {
  position: sticky;
  top: 116px;
}

.drying-copy h2 {
  max-width: none;
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
}

.temperature-list {
  border-top: 1px solid var(--line);
}

.temperature-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 116px;
  padding: 24px 26px 24px 34px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.temperature-row::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 5px;
  border-radius: var(--control-radius);
  background: var(--brand);
}

.temperature-row:hover {
  background: var(--surface-soft);
  transform: translateX(5px);
}

.temperature-medium::before {
  opacity: 0.78;
}

.temperature-low::before {
  opacity: 0.55;
}

.temperature-none::before {
  opacity: 0.3;
}

.temperature-icon {
  color: var(--brand-strong);
  font-size: 2.15rem;
  line-height: 1;
}

.temperature-medium .temperature-icon {
  opacity: 0.78;
}

.temperature-low .temperature-icon {
  opacity: 0.6;
}

.temperature-none .temperature-icon {
  opacity: 0.45;
}

.temperature-content {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  align-items: center;
  gap: 28px;
}

.temperature-row h3,
.temperature-row p {
  margin-bottom: 0;
}

.temperature-row h3 {
  font-size: 1.28rem;
}

.label-note {
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--brand);
  color: var(--ink);
  font-weight: 800;
}

.section-registration {
  padding-top: 20px;
}

.registration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(135deg, rgba(10, 169, 227, 0.14), transparent 50%),
    var(--surface);
}

.registration-panel .eyebrow {
  margin-bottom: 18px;
}

.registration-panel h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.registration-icon {
  display: block;
  margin-bottom: 22px;
  color: var(--brand-strong);
  font-size: 2.5rem;
  line-height: 1;
}

.registration-copy p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--brand);
  color: var(--ink);
  font-weight: 800;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--brand-strong);
}

.section-location {
  padding-top: 24px;
  padding-bottom: 0;
}

.location-intro {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.map-embed {
  width: 100%;
  min-height: clamp(440px, 48vw, 660px);
  background: var(--surface-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 48vw, 660px);
  display: block;
  border: 0;
}

.location-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--panel-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 169, 227, 0.3), transparent 22rem),
    var(--brand-deep);
  color: var(--on-brand);
  box-shadow: var(--shadow);
}

.location-icon {
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 2.6rem;
  line-height: 1;
}

.location-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--on-brand);
  font-size: clamp(2.3rem, 3.7vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

.location-copy address {
  margin-bottom: 0;
  color: rgba(247, 252, 255, 0.8);
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.7;
}

.location-hours {
  margin-bottom: 30px;
  border-top: 1px solid rgba(247, 252, 255, 0.2);
}

.location-meta {
  min-width: 0;
}

.location-hours div {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 252, 255, 0.2);
}

.location-hours span {
  color: rgba(247, 252, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
}

.location-hours strong {
  color: var(--on-brand);
  font-size: 0.9rem;
}

.location-contacts {
  margin-bottom: 24px;
  border-top: 1px solid rgba(247, 252, 255, 0.2);
  border-bottom: 1px solid rgba(247, 252, 255, 0.2);
}

.location-contacts-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
  gap: 18px;
  padding: 18px 0 14px;
}

.location-contacts-title {
  margin: 0;
  color: var(--on-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-contacts-heading > p:last-child {
  margin: 0;
  color: rgba(247, 252, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.45;
}

.location-contact-card {
  display: grid;
  grid-template-columns: 28px minmax(190px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(247, 252, 255, 0.2);
}

.location-contact-index {
  align-self: start;
  padding-top: 2px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.location-contact-copy {
  min-width: 0;
}

.location-contact-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(247, 252, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.location-contact-phone {
  width: fit-content;
  display: inline-block;
  margin-bottom: 5px;
  color: var(--on-brand);
  font-size: 1.08rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.location-contact-phone:hover {
  color: var(--brand);
}

.location-contact-copy p {
  max-width: 31rem;
  margin: 0;
  color: rgba(247, 252, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.location-contact-actions {
  display: grid;
  justify-items: stretch;
  gap: 7px;
}

.location-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(247, 252, 255, 0.18);
  border-radius: 10px;
  color: var(--on-brand);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.location-contact-link:hover {
  background: rgba(247, 252, 255, 0.12);
  border-color: rgba(247, 252, 255, 0.3);
  transform: translateY(-1px);
}

.location-contact-link-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #06233b;
}

.location-contact-link-primary:hover {
  border-color: #43b9e5;
  background: #43b9e5;
}

.route-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.route-button {
  min-width: 0;
  min-height: 54px;
  padding-inline: 16px;
}

.route-google {
  background: var(--brand);
  color: #06233b;
}

.route-google:hover {
  background: #43b9e5;
}

.route-waze {
  border-color: rgba(247, 252, 255, 0.28);
  background: var(--on-brand);
  color: var(--brand-deep);
}

.route-waze:hover {
  background: #dff5ff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(50px, 9vw, 132px);
}

.faq-heading {
  position: sticky;
  top: 116px;
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 18px;
  height: 2px;
  background: var(--brand-strong);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -4px 0 28px;
  padding-right: 48px;
}

.site-footer {
  border-top: 1px solid rgba(247, 252, 255, 0.12);
  background:
    radial-gradient(circle at 8% 16%, rgba(10, 169, 227, 0.2), transparent 24rem),
    var(--brand-deep);
  color: var(--on-brand);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(150px, 0.7fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
  padding: 64px 0 52px;
}

.footer-brand {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f7fcff;
}

.footer-brand img {
  width: 138px;
  height: auto;
}

.footer-brand-block > p {
  max-width: 27rem;
  margin: 0;
  color: rgba(247, 252, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  margin: 0 0 6px;
  color: rgba(247, 252, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: var(--on-brand);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--brand);
}

.footer-phone {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 252, 255, 0.14);
}

.footer-phone span {
  color: rgba(247, 252, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-phone strong {
  color: var(--on-brand);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  transition: color 180ms ease;
}

.footer-phone:hover strong {
  color: var(--brand);
}

.footer-note {
  margin: 0;
  color: rgba(247, 252, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-location address {
  color: rgba(247, 252, 255, 0.8);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-social-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-brand);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-social-link i {
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
}

.footer-social-link:hover {
  color: var(--brand);
  transform: translateY(-1px);
}

.footer-bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 82px 18px 0;
  border-top: 1px solid rgba(247, 252, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 252, 255, 0.54);
  font-size: 0.76rem;
}

.footer-agency {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-self: start;
  white-space: nowrap;
}

.footer-agency-heart {
  display: inline-block;
  color: var(--on-brand);
  font-size: 0.78rem;
  line-height: 1;
  transform-origin: center;
}

.footer-agency-link {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.footer-agency-link img {
  width: 108px;
  height: auto;
}

.footer-agency-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-copyright {
  justify-self: center;
  text-align: center;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: rgba(247, 252, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-top-link:hover {
  color: var(--brand);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.4vw, 32px);
  bottom: calc(clamp(18px, 2.4vw, 32px) + env(safe-area-inset-bottom));
  z-index: 9;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 252, 255, 0.24);
  border-radius: 50%;
  background: #25d366;
  color: #f7fcff;
  box-shadow:
    0 16px 36px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(247, 252, 255, 0.18);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float i {
  font-size: 2rem;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow:
    0 20px 42px rgba(37, 211, 102, 0.38),
    inset 0 1px 0 rgba(247, 252, 255, 0.2);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #071929;
    --surface: #0d2438;
    --surface-soft: #12334f;
    --ink: #e8f6ff;
    --muted: #abc2d4;
    --line: rgba(197, 225, 242, 0.18);
    --brand: #28b5e9;
    --brand-strong: #2b87bb;
    --brand-deep: #061321;
    --on-brand: #eefaff;
    --header-bg: rgba(7, 25, 41, 0.92);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  }

  body {
    background:
      radial-gradient(circle at 8% 6%, rgba(40, 181, 233, 0.13), transparent 26rem),
      radial-gradient(circle at 92% 28%, rgba(43, 135, 187, 0.1), transparent 24rem),
      var(--page);
  }

  .button-primary {
    background: var(--brand);
    color: #061321;
  }

  .brand-link,
  .footer-brand {
    width: fit-content;
    padding: 6px 9px;
    border-radius: calc(var(--panel-radius) / 2);
    background: #f7fcff;
  }

  .hero-art::before {
    opacity: 0.25;
  }

  .rules-stage {
    background:
      radial-gradient(circle at 5% 4%, rgba(40, 181, 233, 0.32), transparent 21rem),
      #0b2943;
  }

  .rule-group-warning {
    background: #144b70;
  }
}

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

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-art {
    width: min(100%, 680px);
    justify-self: center;
  }

  .location-copy {
    grid-template-columns: 1fr;
  }

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

  .service-mode {
    min-height: auto;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 430px;
  }

  .drying-copy {
    position: static;
  }

  .rules-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rules-intro h2 {
    max-width: none;
  }

  .rules-groups {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .rule-group:last-child {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid rgba(247, 252, 255, 0.18);
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: none;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .site-header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: clamp(12px, 1.8vw, 20px);
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .nav-instagram {
    width: 40px;
    height: 40px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: var(--surface);
  }

  .nav-instagram span,
  .nav-instagram::after {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .service-fact {
    gap: 12px;
    padding-inline: 18px;
  }

  .service-fact-label {
    font-size: 0.78rem;
  }

  .service-fact span {
    font-size: 0.75rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .container,
  .site-header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header-inner {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-logo {
    width: 132px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: var(--surface);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: var(--control-radius);
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-highlight {
    margin-top: 10px;
    padding: 13px 18px;
    border: 0;
    background: var(--brand-deep);
    color: var(--on-brand);
    text-align: center;
  }

  .hero {
    min-height: calc(100dvh - 69px);
    padding: 28px 0 32px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(2.65rem, 11.5vw, 3.2rem);
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    margin-top: 20px;
  }

  .hero-actions .button-service {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-actions .button-service i {
    margin-right: 6px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-art {
    width: 100%;
    justify-self: center;
  }

  .hero-art::after {
    top: -8%;
    right: 5%;
    width: 58px;
    height: 9px;
  }

  .hero-service-showcase {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
  }

  .hero-seal {
    width: 100%;
  }

  .hero-personalized-card {
    min-height: 250px;
    padding: 20px;
  }

  .hero-personalized-icon {
    font-size: 2rem;
  }

  .hero-personalized-card span {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .hero-personalized-card strong {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .hero-personalized-card p {
    margin-top: 12px;
    font-size: 0.82rem;
  }

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

  .service-fact {
    min-height: 104px;
    border-right: 1px solid rgba(247, 252, 255, 0.18);
    border-bottom: 1px solid rgba(247, 252, 255, 0.18);
  }

  .service-fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 84px 0;
  }

  .services-heading h2 {
    max-width: none;
    font-size: clamp(2.05rem, 9.5vw, 3rem);
  }

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

  .service-mode {
    padding: 34px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-mode:last-child {
    border-bottom: 0;
  }

  .service-mode-heading {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .service-mode-heading h3 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .service-mode-facts div {
    gap: 14px;
  }

  .section-heading h2,
  .rules-intro h2,
  .registration-panel h2,
  .faq-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .section-measure .section-heading h2 {
    white-space: normal;
  }

  .drying-copy h2 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
  }

  .rules-intro h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .measure-layout {
    gap: 42px;
  }

  .measure-cue {
    min-height: 390px;
    padding: 30px 26px;
  }

  .measure-cue-statement {
    margin-bottom: 38px;
  }

  .section-conditions {
    padding-top: 0;
  }

  .rules-intro {
    gap: 24px;
    padding: 34px 26px 38px;
  }

  .rules-groups {
    grid-template-columns: 1fr;
  }

  .rule-group,
  .rule-group:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 32px 26px;
    border-right: 0;
    border-top: 1px solid rgba(247, 252, 255, 0.18);
  }

  .temperature-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 25px 20px 25px 28px;
  }

  .temperature-icon {
    font-size: 1.85rem;
  }

  .temperature-content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .temperature-row::before {
    top: 25px;
    bottom: 25px;
  }

  .registration-panel {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 26px;
  }

  .registration-panel h2 {
    max-width: none;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }

  .location-copy {
    gap: 38px;
    padding: 36px 26px;
  }

  .location-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9.5vw, 2.9rem);
  }

  .location-contacts-heading {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .location-contact-card {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
  }

  .location-contact-actions {
    grid-column: 2;
    grid-template-columns: auto minmax(0, 1fr);
    justify-self: start;
  }

  .route-actions {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 38px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 38px;
  }

  .footer-brand-block > p {
    max-width: 34rem;
  }

  .footer-bottom {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 22px 0 104px;
  }

  .footer-copyright,
  .footer-top-link {
    justify-self: start;
    text-align: left;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: intro-up 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-art {
    animation: intro-art 900ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .whatsapp-float i {
    animation: whatsapp-wave 3.8s ease-in-out infinite;
  }

  .footer-agency-heart {
    animation: agency-heart-pulse 1.5s ease-in-out infinite;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

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

@media (min-width: 641px) and (max-width: 760px) {
  .service-modes {
    grid-template-columns: 0.92fr 1.08fr 1fr;
  }

  .service-mode {
    padding: 28px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .service-mode:last-child {
    border-right: 0;
  }

  .service-mode-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
  }

  .service-mode-heading h3 {
    font-size: clamp(1.4rem, 3.35vw, 1.65rem);
  }

  .service-mode-icon {
    font-size: 1.8rem;
  }

  .service-mode > p {
    margin-bottom: 22px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .service-mode-facts {
    margin-bottom: 24px;
  }

  .service-mode-facts div {
    gap: 5px;
    padding: 13px 0;
  }

  .service-mode-facts dt {
    font-size: 0.7rem;
  }

  .service-mode-facts dd {
    font-size: 0.82rem;
  }

  .service-mode .text-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .services-heading h2 {
    font-size: clamp(1.95rem, 8.4vw, 2.2rem);
  }
}

@media (max-width: 420px) {
  .location-contact-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button-service {
    font-size: 0.88rem;
  }
}

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@keyframes intro-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-art {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(1.5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes whatsapp-wave {
  0%,
  72%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  77% {
    transform: rotate(-7deg) scale(1.06);
  }

  82% {
    transform: rotate(7deg) scale(1.06);
  }

  87% {
    transform: rotate(-4deg) scale(1.03);
  }

  92% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes agency-heart-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }
}
