/* =========================================================
   SENSE — Boutique Massage & Wellness
   Design tokens
   ========================================================= */
:root {
  /* Palette */
  --ink:       #14100e;   /* deepest warm black */
  --ink-2:     #1a1614;   /* soft black */
  --surface:   #1f1a17;   /* page background — warm dark stone */
  --surface-2: #2a231f;   /* raised surfaces (cards) */
  --surface-3: #332a24;   /* highest-elevation surfaces */
  --stone:     #3d342c;   /* warm stone */
  --stone-2:   #5a4d42;
  --bronze:    #a67c52;   /* muted bronze */
  --champagne: #d4b896;   /* champagne */
  --skin:      #e8c4a0;   /* skin-toned accent */
  --ivory:     #f5f0e8;   /* warm ivory text */
  --ivory-2:   #ece4d6;
  --linen:     #ebe1cf;
  --line:      rgba(245, 240, 232, 0.10);
  --line-dark: rgba(245, 240, 232, 0.14);

  /* Typography */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Rhythm */
  --r:        clamp(1rem, 2.6vw, 1.25rem);   /* base spacing unit */
  --gutter:   clamp(20px, 4vw, 56px);
  --section-y: clamp(52px, 7vw, 104px);   /* compact per client — was clamp(80px,12vw,160px) */

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .7; }

::selection { background: var(--champagne); color: var(--ink); }

/* =========================================================
   Typography
   ========================================================= */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin: 0 0 .3em;
}
.display em { font-style: italic; color: var(--champagne); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--champagne);
  margin: 0 0 1.2rem;
  opacity: 0.85;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: rgba(245,240,232,0.78);
  max-width: 56ch;
  margin-inline: auto;   /* center the lede block within centered section heads */
}
/* When the lede sits inside a row-style head (left-aligned), keep it left. */
.section__head--row .lede,
.experience__copy .lede,
.visit__copy .lede,
.wip__inner .lede {
  margin-inline: 0;
}
.wip__inner .lede { margin-inline: auto; }   /* wip is centered */

/* =========================================================
   Layout primitives
   ========================================================= */
.section {
  padding: var(--section-y) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4.5vw, 60px);   /* compact per client */
  text-align: center;
}
.section__head--row {
  max-width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }

.btn--solid {
  background: var(--ivory);
  color: var(--ink);
}
.btn--solid:hover { background: var(--champagne); }

.btn--line {
  border: 1px solid rgba(245,240,232,0.55);
  color: var(--ivory);
}
.btn--line:hover { border-color: var(--ivory); background: rgba(245,240,232,0.06); }

.btn--line.dark {
  border: 1px solid rgba(245,240,232,0.35);
  color: var(--ivory);
}
.btn--line.dark:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

.btn--ghost {
  padding: 10px 18px;
  font-size: 12px;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.5);
}
.btn--ghost:hover { background: var(--ivory); color: var(--ink); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  color: var(--ivory);
  transition: background .4s var(--ease), padding .4s var(--ease), color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(26, 22, 20, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 14px var(--gutter);
}

.nav__logo {
  display: inline-flex; align-items: center;
  height: 48px;
  flex: 0 0 auto;          /* don't let Flexbox shrink the logo */
}
.nav__logo img {
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 1;     /* logo PNG is square — lock the proportions */
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: height .4s var(--ease), filter .4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 40px; }

.nav__links {
  display: flex; gap: 32px;
  font-size: 15px;                 /* bigger per client — was 13px */
  letter-spacing: 0.04em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: currentColor;
  transition: width .4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 16px; }

/* Location switcher */
.loc-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(245,240,232,0.18);
  background: rgba(26,22,20,0.35);
  border-radius: 999px;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.is-scrolled .loc-switch {
  background: rgba(26,22,20,0.55);
  border-color: rgba(245,240,232,0.22);
}
.loc-switch__pill {
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.62);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.loc-switch__pill:hover { color: var(--ivory); opacity: 1; }
.loc-switch__pill.is-active {
  background: var(--champagne);
  color: var(--ink);
}
.loc-switch__pill.is-active:hover { color: var(--ink); }

.lang {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  opacity: .85;
  display: inline-flex; gap: 6px;
  padding: 6px 0;
}
.lang span { opacity: .55; transition: opacity .3s var(--ease); }
.lang .is-active { opacity: 1; }
.lang__sep { opacity: .4 !important; }

.nav__menu {
  display: none;
  width: 28px; height: 28px;
  position: relative;
}
.nav__menu span {
  position: absolute; left: 4px; right: 4px;
  height: 1px; background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.nav__menu span:nth-child(1) { top: 10px; }
.nav__menu span:nth-child(2) { top: 17px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px var(--gutter) clamp(60px, 9vw, 110px);
  color: var(--ivory);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.92) contrast(1.04) brightness(0.78);
  transform: scale(1.08);
  animation: heroKenBurns 32s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-2.5%, -1.5%, 0); }
}

.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(166,124,82,0.18), transparent 60%),
    linear-gradient(180deg, rgba(26,22,20,0.55) 0%, rgba(26,22,20,0.25) 35%, rgba(26,22,20,0.75) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__stamp {
  width: 78px; height: 78px;
  border-radius: 999px;
  display: block;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: heroStamp 1.2s var(--ease) 0.2s forwards;
  box-shadow: 0 14px 40px -14px rgba(0,0,0,0.55);
}
@keyframes heroStamp {
  to { opacity: 1; transform: none; }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 1.3rem;
}
.hero__title-line { display: block; }
.hero__title-line.italic { font-style: italic; color: var(--champagne); }

.hero__sub {
  max-width: 56ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(245,240,232,0.85);
  margin: 0 0 2.2rem;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero__meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.75);
}
.rating { display: inline-flex; align-items: center; gap: 10px; }
.stars { color: var(--champagne); letter-spacing: 2px; font-size: 14px; }
.rating__text strong { color: var(--ivory); font-weight: 500; }
.rating__link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245,240,232,0.45);
  transition: color .3s var(--ease);
}
.rating__link:hover { color: var(--champagne); opacity: 1; }
.meta-sep {
  display: none;                   /* open-hours moved to its own line per client */
}
/* Auto open-hours — bigger, bold, on its own line per client */
.hero__open {
  flex-basis: 100%;
  margin-top: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(245,240,232,0.5);
  border-radius: 999px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 1px; height: 8px;
  background: var(--ivory);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--champagne);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid rgba(245,240,232,0.06);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.marquee__mark {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Services
   ========================================================= */
.services {}
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.card {
  grid-column: span 2;   /* 3-across on desktop (6-col base) */
  background: var(--surface-2);
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  background: var(--surface-3);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.card--feature { grid-column: span 2; background: var(--ink); }
.card--feature:hover { background: var(--ink-2); }

.card--wide { grid-column: span 6; }
.card--wide .card__img { aspect-ratio: 21 / 9; }

/* ── "and more" toggle + expandable services ──────────────────── */
.services__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}
.services__more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;                 /* ~2× bigger per client */
  letter-spacing: 0.01em;
  padding: 24px 64px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.services__more-toggle:hover {
  background: var(--surface-2);
  border-color: var(--champagne);
  color: var(--champagne);
}
.services__more-icon {
  position: relative;
  width: 16px; height: 16px;
  flex: 0 0 auto;
}
.services__more-icon::before,
.services__more-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.services__more-icon::before { top: 7px; left: 0; width: 16px; height: 1.5px; }      /* horizontal */
.services__more-icon::after  { left: 7px; top: 0; width: 1.5px; height: 16px; }       /* vertical   */
.services__more-toggle[aria-expanded="true"] .services__more-icon::after { transform: scaleY(0); opacity: 0; }  /* + → − */

.services__more {
  margin-top: clamp(28px, 4vw, 44px);
}
/* The .services__grid rule sets display:grid, which would otherwise override
   the browser's default [hidden]{display:none}. This keeps the group collapsed
   until the "and more" button reveals it. */
.services__more[hidden] { display: none; }
/* Cards inside the "and more" group sit one notch quieter than the mains */
.services__more .card { background: var(--surface); }
.services__more .card .card__img { aspect-ratio: 5 / 4; }

.card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--linen);
}
.card__img > img,
.card__img > video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: saturate(0.9);
}
.card:hover .card__img > img,
.card:hover .card__img > video { transform: scale(1.04); }


.card__body { padding: 22px 30px 30px; display: flex; flex-direction: column; flex: 1; }
/* Hidden per client request — kept in markup so accessible-name order stays clean. */
.card__num { display: none; }
.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.card__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--bronze);
  margin: 0 0 16px;
}
.card__desc {
  font-size: .96rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.78);
  margin: 0 0 22px;
  max-width: 50ch;
}
.card__benefits {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-wrap: wrap; gap: 6px 0;
  border-top: 1px solid var(--line);
}
.card__benefits li {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.62);
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--line);
  flex: 1 0 33%;
}
/* "Book here" — real button per client, it's the main thing that sells */
.card__book {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: var(--champagne);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.card__book:hover {
  background: var(--ivory);
  color: var(--ink);
  opacity: 1;
}



/* =========================================================
   Experience
   ========================================================= */
.experience {
  background: var(--ink);
  color: var(--ivory);
  max-width: none;
  padding-inline: 0;
}
.experience__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.experience__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.experience__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}
.experience__badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(26,22,20,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,232,0.14);
  padding: 12px;
  border-radius: 999px;
  display: grid; place-items: center;
}
.experience__badge img {
  width: 64px; height: 64px;
  border-radius: 999px;
  display: block;
}

.experience__copy .display { color: var(--ivory); }
.experience__copy .display em { color: var(--champagne); }
.experience__copy .lede { color: rgba(245,240,232,0.78); }

.pillars { list-style: none; padding: 0; margin: 36px 0 36px; display: grid; gap: 22px; }
.pillars li {
  position: relative;
  padding-left: 28px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
}
.pillars__dot {
  position: absolute; left: 0; top: 27px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--champagne);
}
.pillars h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 4px;
}
.pillars p {
  margin: 0;
  font-size: .95rem;
  color: rgba(245,240,232,0.68);
  max-width: 52ch;
}

.experience__copy .btn--line.dark {
  border-color: rgba(245,240,232,0.35);
  color: var(--ivory);
}
.experience__copy .btn--line.dark:hover {
  background: var(--ivory); color: var(--ink); border-color: var(--ivory);
}

/* =========================================================
   Faxafen — Therapists (team row + wide reception photo below)
   ========================================================= */
.fax-therapists__photo {
  margin-top: clamp(40px, 6vw, 72px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.fax-therapists__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
}

/* =========================================================
   Pull quote
   ========================================================= */
.quote {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
  background: var(--ink-2);
  overflow: hidden;
  isolation: isolate;
}
.quote__mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(360px, 60vw, 640px);
  height: auto;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.quote__text { position: relative; z-index: 1; }
.quote__text {
  margin: 0 auto;
  max-width: 18ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.quote__text em { font-style: italic; color: var(--champagne); }

/* =========================================================
   Interior band — full-bleed photo with copy
   ========================================================= */
.interior {
  position: relative;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
  isolation: isolate;
  margin-block: clamp(40px, 6vw, 80px);
}
.interior__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78) contrast(1.02);
  transform: scale(1.04);
}
.interior__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.25) 45%, rgba(20,16,14,0.75) 100%),
    radial-gradient(ellipse at 25% 80%, rgba(166,124,82,0.16), transparent 60%);
}
.interior__copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}
.interior__copy .display {
  color: var(--ivory);
  max-width: 14ch;
  margin: 0;
}
.interior__copy .display em { color: var(--champagne); }
.interior__copy .eyebrow { color: var(--champagne); opacity: 0.85; }

/* =========================================================
   Therapists
   ========================================================= */
.therapists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.therapist {
  display: flex; flex-direction: column; gap: 14px;
}
.therapist__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(245,240,232,0.06), transparent 65%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--ink-2) 100%);
  position: relative;
}
.therapist__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) brightness(0.98);
  transition: transform 1.1s var(--ease);
}
.therapist:hover .therapist__img img { transform: scale(1.03); }
.therapist h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 4px 0 0;
  color: var(--ivory);
}
.therapist__role {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.58);
}

/* =========================================================
   Reviews
   ========================================================= */
/* Variant with the interior photo behind the whole section.
   Compact padding so the section reads denser per Peter's brief. */
.reviews--bg {
  position: relative;
  isolation: isolate;
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.reviews__bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.reviews__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.55) blur(1px);
  transform: scale(1.04);
}
.reviews__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 50% 50%, rgba(31,26,23,0.55) 0%, rgba(31,26,23,0.88) 70%, rgba(31,26,23,0.95) 100%),
    linear-gradient(180deg, rgba(31,26,23,0.55) 0%, rgba(31,26,23,0.78) 100%);
}
.reviews--bg .review {
  background: rgba(26,22,20,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(245,240,232,0.10);
  min-height: 220px;
  padding: 26px 24px;
}
.reviews--bg .section__head { margin-bottom: clamp(36px, 5vw, 60px); }

.reviews__score {
  display: grid; gap: 4px;
  font-family: var(--serif);
  text-align: right;
}
.reviews__num { font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--ivory); }
.reviews__stars { color: var(--champagne); font-size: 1.2rem; letter-spacing: 2px; }
.reviews__count { font-size: .9rem; color: rgba(245,240,232,0.6); font-family: var(--sans); margin-top: 4px; }
.link-arrow {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: end;
  justify-self: end;
  color: var(--champagne);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.review {
  margin: 0;
  padding: 32px 28px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 260px;
}
.review__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(245,240,232,0.88);
  margin: 0 0 24px;
}
.review figcaption {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.review__src { color: var(--champagne); }

/* =========================================================
   Visit
   ========================================================= */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.visit__info {
  margin: 36px 0 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.visit__info > div { display: flex; flex-direction: column; gap: 6px; }
.visit__info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne);
  opacity: 0.8;
}
.visit__info dd {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.45;
}
.visit__info a { border-bottom: 1px solid var(--line); }
.visit__info a:hover { border-color: var(--ivory); opacity: 1; }

.visit__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.visit__cta .btn--solid { background: var(--champagne); color: var(--ink); }
.visit__cta .btn--solid:hover { background: var(--ivory); }

.visit__map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  border-radius: 2px;
}
.visit__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.55) sepia(0.32) saturate(0.85) contrast(0.92) brightness(0.78);
}
.visit__map-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(26,22,20,0.18);
}
.visit__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 14px));
  width: 64px; height: 64px;
  z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(26,22,20,0.45));
  transition: transform .4s var(--ease);
}
.visit__pin img {
  width: 100%; height: 100%;
  border-radius: 999px;
  display: block;
}
.visit__pin::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -10px;
  width: 12px; height: 12px;
  background: var(--ink);
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
  transform: translateX(-50%) rotate(45deg) translateY(-4px);
  border-radius: 2px;
}
.visit__pin:hover { transform: translate(-50%, calc(-50% - 20px)); opacity: 1; }

/* =========================================================
   Price menu — service variation rows (Faxafen cards)
   ========================================================= */
.price-menu {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.price-menu li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.price-menu__dur {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.62);
}
.price-menu__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--champagne);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.price-menu--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 32px;
}
.price-menu--row li { flex: 1 1 200px; }

/* =========================================================
   WIP page — Faxafen / second location
   ========================================================= */
.wip {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--gutter) clamp(60px, 9vw, 110px);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}
.wip__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.wip__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.35) brightness(0.42) contrast(1.06) blur(3px);
  transform: scale(1.06);
}
.wip__veil {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(166,124,82,0.05) 0 6px, transparent 6px 18px),
    linear-gradient(180deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.85) 100%);
}
.wip__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.wip__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}
.wip__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border: 1px solid rgba(212,184,150,0.55);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 auto 30px;
}
.wip__badge::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--champagne);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(212,184,150,0.55);
  animation: wipPulse 2.2s ease-in-out infinite;
}
@keyframes wipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,184,150,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(212,184,150,0); }
}
.wip__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 1.1rem;
  color: var(--ivory);
}
.wip__title em { font-style: italic; color: var(--champagne); }
.wip__sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: rgba(245,240,232,0.78);
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}
.wip__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 620px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: left;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 28px 0;
}
.wip__info > div { display: flex; flex-direction: column; gap: 6px; }
.wip__info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne);
  opacity: 0.85;
  margin: 0;
}
.wip__info dd {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ivory);
  line-height: 1.45;
}
.wip__info a { border-bottom: 1px solid var(--line); }
.wip__info a:hover { border-color: var(--ivory); opacity: 1; }

.wip__cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.wip__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: rgba(245,240,232,0.55);
  margin: 0;
}
.wip__note a {
  color: var(--champagne);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 30px;
}
.footer__top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand {
  display: flex; align-items: center; gap: 18px;
}
.footer__logo {
  width: 84px; height: 84px;        /* bigger per client — was 64px */
  border-radius: 999px;
  display: block;
}
.footer__name { font-family: var(--serif); font-style: italic; font-size: 1.9rem; margin: 0; }
.footer__alt  { font-size: 13.5px; color: rgba(245,240,232,0.55); margin: 4px 0 0; letter-spacing: 0.08em; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(245,240,232,0.78);
}
.footer__cols a:hover { color: var(--champagne); opacity: 1; }
.footer__h {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 14px;
  color: var(--champagne);
}

.footer__bottom {
  max-width: 1440px;
  margin: 30px auto 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Sticky book button (mobile-first, persistent)
   ========================================================= */
.sticky-book {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--champagne);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.75);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.sticky-book.is-visible { transform: translateY(0); opacity: 1; }
.sticky-book:hover { background: var(--ivory); color: var(--ink); opacity: 1; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  /* services stay 3-across on tablet (6-col base, card span 2) */
  .therapists__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .experience__grid, .visit__grid { grid-template-columns: 1fr; }
  /* Faxafen hot-tub section: flip so photo sits ABOVE text on mobile */
  #hottub .experience__media { order: -1; }
  .experience__media { aspect-ratio: 16 / 11; }
  .fax-therapists__photo { aspect-ratio: 16 / 11; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  /* keep location switcher visible — just tighten it so it shares the
     bar with the lang toggle and hamburger */
  .loc-switch__pill {
    padding: 6px 11px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .nav__actions { gap: 12px; }
}

@media (max-width: 720px) {
  /* tighter gaps between sections per client */
  :root { --section-y: clamp(36px, 6vw, 52px); }
  /* Nýbýlavegur hero photo was replaced with the client's cable-free
     edit, so no crop override is needed anymore. */
  /* Faxafen hot-tub photo: shrink the logo badge so it covers less */
  .experience__badge { padding: 7px; bottom: 12px; left: 12px; }
  .experience__badge img { width: 40px; height: 40px; }
  .nav__links { display: none; }
  .nav__menu  { display: inline-block; }
  .nav__book  { display: none; }
  /* compact pills + shorter labels at phone widths */
  .loc-switch { padding: 2px; }
  .loc-switch__pill {
    padding: 5px 10px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }
  .nav__actions { gap: 10px; }
  .nav { padding: 16px var(--gutter); }
  .nav.is-scrolled { padding: 12px var(--gutter); }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .reviews__score { text-align: left; }
  .link-arrow { align-self: start; justify-self: start; }
  /* services 2-across on mobile per client */
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services__more-toggle { font-size: 1.35rem; padding: 18px 44px; }
  .card, .card--feature { grid-column: span 1; }
  .card--wide { grid-column: span 2; }
  /* compact card text so 2-across cards stay readable + shorter on phones */
  .card__body { padding: 16px 16px 20px; }
  .card__title { font-size: 1.15rem; line-height: 1.15; }
  .card__sub { font-size: 0.78rem; margin: 0 0 11px; }
  .card__desc { font-size: 0.82rem; line-height: 1.5; margin: 0 0 16px; }
  .price-menu li { padding: 9px 0; gap: 8px; }
  .price-menu__dur { font-size: 10px; white-space: nowrap; }
  .price-menu__price { font-size: 0.92rem; white-space: nowrap; }
  .card__book { font-size: 10px; letter-spacing: 0.1em; padding: 11px 18px; }
  /* the wide card sits full-width, so it can keep a roomier body */
  .card--wide .card__body { padding: 22px 22px 26px; }
  .card--wide .card__title { font-size: 1.5rem; }
  .therapists__grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  /* smaller therapist cards 4-across on mobile per client */
  .therapist { gap: 7px; }
  .therapist h3 { font-size: 0.92rem; margin: 2px 0 0; }
  .therapist__role { font-size: 8px; letter-spacing: 0.05em; line-height: 1.4; }
  .reviews__grid { grid-template-columns: 1fr; }
  .visit__info { grid-template-columns: 1fr; gap: 24px; }
  /* ── Mobile footer ──────────────────────────────────────────
     Per client request — Studio | Follow on top, Locations centred underneath.
     Plus tightened padding/gaps so the footer doesn't feel airy on phone widths.
     Bottom padding includes room for the floating sticky-book button. */
  .footer {
    padding: 48px var(--gutter) 72px;
  }
  .footer__top {
    gap: 32px;            /* between brand row and the cols block */
    padding-bottom: 32px;
  }
  /* brand centred with a bigger logo per client */
  .footer__brand { gap: 14px; flex-direction: column; align-items: center; text-align: center; }
  .footer__logo  { width: 84px; height: 84px; }
  .footer__name  { font-size: 1.4rem; }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "studio follow"
      "locations locations";
    gap: 28px 24px;
    /* All cols centred on mobile so Studio | Follow visually match
       the centred Locations row underneath. */
    text-align: center;
  }
  .footer__cols > div:nth-child(1) { grid-area: studio; }
  .footer__cols > div:nth-child(2) { grid-area: locations; }
  .footer__cols > div:nth-child(3) { grid-area: follow; }
  .footer__cols .footer__h { margin-bottom: 10px; }
  /* Slightly tighter line spacing on the centred Locations list */
  .footer__cols > div:nth-child(2) a { padding: 3px 0; }

  .footer__bottom {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .hero { padding-top: 120px; }
  .card__body { padding: 18px 22px 24px; }
}

@media (max-width: 420px) {
  /* tightest phones — keep both pills + lang + hamburger on one line */
  .nav { padding: 14px 18px; }
  .nav__logo { height: 38px; }
  .nav.is-scrolled .nav__logo { height: 32px; }
  .loc-switch__pill {
    padding: 5px 9px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .nav__actions { gap: 8px; }
  .lang { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .marquee__track { animation: none; }
}

/* =========================================================
   Contact page
   ========================================================= */
/* Solid page background + clear the fixed nav (no hero here). */
.page-contact { background: var(--surface); }
.contact-section {
  padding-top: clamp(120px, 16vw, 168px);
}
.contact-section .section__head { margin-left: 0; margin-right: auto; text-align: left; }
.contact-section .lede { margin-inline: 0; }

/* ── Contact photos ───────────────────────────────── */
.contact__photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.contact__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
}
.contact__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.88);
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.contact__photo:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.92);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* ── Form ─────────────────────────────────────────────── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.62);
}
.field label .req { color: var(--champagne); }
.field label .opt { text-transform: none; letter-spacing: 0.02em; opacity: 0.7; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ivory);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4b896' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(245,240,232,0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  background: var(--surface-3, #322a25);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #b5645a; }

/* honeypot — visually hidden but present for bots */
.contact-form__hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form__actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form__status {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.contact-form__status.is-success { color: var(--champagne); }
.contact-form__status.is-error   { color: #d8897f; }
.contact-form.is-sending button { opacity: 0.6; pointer-events: none; }

/* ── Details column ───────────────────────────────────── */
.contact__aside {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.contact__block p { margin: 0 0 4px; font-size: 15px; color: rgba(245,240,232,0.82); }
.contact__block .footer__h { margin-bottom: 12px; }
.contact__block a { color: var(--ivory); }
.contact__block a:hover { color: var(--champagne); }
.contact__muted { color: rgba(245,240,232,0.6) !important; font-size: 14px !important; line-height: 1.7; }

@media (max-width: 860px) {
  .contact__photos { grid-template-columns: 1fr 1fr; }
  .contact__photo:last-child { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .contact-form { grid-template-columns: 1fr; gap: 16px; }
}

/* International-visitors note in the Visit section */
.visit__intl {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,240,232,0.6);
}
.visit__intl .link-arrow {
  display: inline;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--champagne);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
}
