/* Fitfine Massage — teal, editorial, ruhig */

:root {
  --bg:        #f5f8f7;
  --bg-alt:    #e7f1ef;
  --bg-deep:   #d3e6e3;
  --ink:       #22403f;
  --ink-soft:  #4d6b6a;
  --ink-mute:  #86a3a2;
  --line:      #cfe1de;
  --line-soft: #e2eeeb;
  --terra:     #2f9296;
  --terra-deep:#1f6d70;
  --sage:      #4fb0a5;
  --gold:      #57b7ba;

  --serif: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", "Inter", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Type ---------- */

.serif    { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.eyebrow  {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

.h-display {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.h-section {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h-card {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding-top: clamp(80px, 11vw, 160px); padding-bottom: clamp(80px, 11vw, 160px); }
.section-tight { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }

hr.rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand .mark {
  width: 26px; height: 26px;
  position: relative;
  align-self: center;
}
.brand .mark::before,
.brand .mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.brand .mark::after { transform: translateX(8px); border-color: var(--terra); }

.brand-logo { height: 48px; width: auto; display: block; }
.foot-brand { margin-bottom: 2px; }
.foot-brand .brand-logo { height: 58px; }
@media (max-width: 520px) { .brand-logo { height: 40px; } }

.menu {
  display: flex;
  gap: clamp(18px, 2.6vw, 36px);
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.menu a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.menu a:hover { color: var(--ink); }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--terra);
  transition: right .35s ease;
}
.menu a:hover::after { right: 0; }
.menu a.active { color: var(--ink); }
.menu a.active::after { right: 0; }

.menu .cta {
  margin-left: 8px;
}

/* ---------- Mobile nav toggle ---------- */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin-right: -10px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, background .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; position: absolute; left: 0; top: -7px; }
.nav-toggle span::after  { content: ""; position: absolute; left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px -16px rgba(34, 64, 63, .28);
    padding: 6px var(--gutter) 22px;
    font-size: 17px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .25s ease;
  }
  .menu.open {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }
  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .menu a::after { display: none; }
  .menu .cta {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
    border-bottom: 0;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn .arr {
  width: 16px; height: 1px; background: currentColor;
  position: relative;
  transition: width .3s ease;
}
.btn .arr::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arr { width: 22px; }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: var(--terra-deep); }

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0;
  height: auto;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
}
.hero-copy {
  max-width: 980px;
}
.hero-copy .h-display em {
  font-style: italic;
  color: var(--terra);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-aside {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 320px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 720px);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-deep);
  margin-top: clamp(40px, 5vw, 64px);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* placeholder pattern */
.ph {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(34,64,63,.06) 0 1px,
      transparent 1px 14px
    );
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(47,146,150,.20), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(79,176,165,.20), transparent 55%);
}
.ph-label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  padding: 6px 10px;
  border-radius: 2px;
  border: 1px solid var(--line);
  z-index: 2;
}

/* ---------- Marquee strip under hero ---------- */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  white-space: nowrap;
  animation: drift 48s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
}
.strip-track .dot { color: var(--terra); }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.section-head .title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .section-head .title-row {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}
.section-head .desc {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ---------- Behandlungen ---------- */

.bg-cream { background: var(--bg-alt); }

.svc-list {
  border-top: 1px solid var(--ink);
}
.svc {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .3s ease;
}
.svc::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--bg);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.svc:hover { padding-left: 12px; }
.svc:hover::before { opacity: 1; }

.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  padding-top: 6px;
}
.svc-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 800px) {
  .svc-body {
    grid-template-columns: 1.6fr 2fr 1fr;
    gap: 32px;
    align-items: baseline;
  }
}
.svc-name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.svc-desc {
  color: var(--ink-soft);
  max-width: 48ch;
}
.svc-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: flex-start;
}
@media (min-width: 800px) {
  .svc-meta { justify-content: flex-end; }
}
.svc-meta b { font-weight: 500; }

.svc-foot {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
}

/* compact treatment index (homepage overview) */
.svc-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
@media (min-width: 760px) {
  .svc-index { grid-template-columns: 1fr 1fr; column-gap: clamp(24px, 4vw, 64px); }
}
.svc-index li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: clamp(15px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -0.01em;
}
.svc-index li .n {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.svc-cta {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
}

/* ---------- Über uns ---------- */

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px) {
  .team { grid-template-columns: 1fr 1fr; }
  .team-solo { align-items: center; }
}
.team-solo .therapist .portrait { margin-bottom: 0; }
.therapist .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--bg-deep);
}
.therapist .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.therapist .name {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.therapist .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 10px;
  display: block;
}
.therapist .bio {
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 42ch;
}
.therapist .specs {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--bg);
}

/* ---------- Einblicke / Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Quote ---------- */

.quote {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.quote blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.quote .source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 28px;
}

/* ---------- Hours ---------- */

.hours-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 880px) {
  .hours-wrap { grid-template-columns: 1fr 1fr; }
}
.hours-table {
  width: 100%;
  border-top: 1px solid var(--ink);
}
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  align-items: baseline;
}
.hours-row .day { font-family: var(--serif); font-size: 22px; }
.hours-row .time { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); }
.hours-row.closed .time { color: var(--ink-mute); }

.hours-side .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
}
.hours-side .pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sage) 25%, transparent);
}

.hours-side h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin: 18px 0 14px;
  letter-spacing: -0.01em;
}
.hours-side p {
  color: var(--ink-soft);
  max-width: 38ch;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-band .h-section { color: var(--bg); }
.cta-band .lede { color: color-mix(in oklab, var(--bg) 75%, transparent); }
.cta-band .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.cta-band .btn-line { color: var(--bg); border-color: color-mix(in oklab, var(--bg) 50%, transparent); }
.cta-band .btn-line:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.cta-band .contacts {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 25%, transparent);
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (min-width: 720px) {
  .cta-band .contacts { grid-template-columns: repeat(3, 1fr); }
}
.cta-band .contacts .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
  margin-bottom: 6px;
}
.cta-band .contacts a:hover { color: color-mix(in oklab, var(--bg) 70%, var(--terra)); }

/* ---------- Footer ---------- */

footer.foot {
  background: var(--bg-alt);
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.foot h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.foot ul a:hover { color: var(--ink); }
.foot .legal {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

/* ---------- Contact page ---------- */

.contact-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 80px);
}
.contact-hero .h-display { font-size: clamp(56px, 8vw, 112px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-list {
  display: grid;
  gap: 36px;
  border-top: 1px solid var(--ink);
  padding-top: 36px;
}
.contact-item .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.contact-item .value {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact-item .sub {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  border-radius: 4px;
  overflow: hidden;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.02);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color .25s ease, color .25s ease;
}
.map-link:hover { border-color: var(--ink); color: var(--terra-deep); }
.map-link .arr {
  width: 16px; height: 1px; background: currentColor;
  position: relative; transition: width .3s ease;
}
.map-link .arr::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.map-link:hover .arr { width: 22px; }
.map-frame .pin {
  position: absolute;
  left: 48%; top: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.map-frame .pin .ring {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--terra) 25%, transparent);
}
.map-frame .pin .lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 2px;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(34,64,63,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34,64,63,.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-roads {
  position: absolute; inset: 0;
}
.map-roads svg { width: 100%; height: 100%; }

/* ---------- Reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
}

/* ---------- Form (contact) ---------- */

.form {
  display: grid;
  gap: 18px;
}
.form .field {
  display: grid;
  gap: 6px;
}
.form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form input, .form textarea, .form select {
  font: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .25s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { border-bottom-color: var(--ink); }
.form textarea { min-height: 120px; resize: vertical; }
.form .row-2 {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form .row-2 { grid-template-columns: 1fr 1fr; }
}
.form .submit-row {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.form .note {
  font-size: 13px;
  color: var(--ink-mute);
}
.form .ok {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sage);
  display: none;
}
.form.sent .ok { display: inline; }
.form.sent button[type=submit] { display: none; }
