/* ==========================================================================
   Ibiza Tantric Touch — v1 stylesheet
   Light editorial · Fraunces display / Alegreya Sans body / Alegreya Sans SC labels
   Tokens and rules: ../../DESIGN.md
   ========================================================================== */

:root {
  --cal: #FBF8F2;
  --sand: #EDE3D2;
  --sand-2: #E3D6C0;
  --clay: #B4644A;
  --clay-deep: #8E4B36;
  --sea: #1F3648;
  --sea-deep: #14263A;
  --ink: #262320;
  --ink-2: #57524B;
  --line: #1F3648;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Alegreya Sans', 'Gill Sans', 'Trebuchet MS', sans-serif;
  --font-sc: 'Alegreya Sans SC', 'Alegreya Sans', 'Gill Sans', sans-serif;
  --container: 1180px;
  --gutter: 24px;
  --section-y: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--sea); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-deep); }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.05em; max-width: 68ch; }
strong, b { font-weight: 700; color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); font-weight: 300; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.2rem; font-weight: 500; }
.lead { font-size: clamp(1.2rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.small { font-size: .95rem; color: var(--ink-2); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--sea); color: #fff; padding: 8px 14px; z-index: 999; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.ic { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; display: inline-block; vertical-align: -0.18em; }
.mark { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* Labels: real small caps, bold, modest tracking ------------------------- */
.kicker { font-family: var(--font-sc); font-weight: 700; font-size: 1rem; letter-spacing: .05em; color: var(--clay-deep); display: block; margin-bottom: 18px; }
.kicker--light { color: var(--sand); }

/* Layout ------------------------------------------------------------------ */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(760px, 100% - 2 * var(--gutter)); }
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--sand { background: var(--sand); }
.section--clay { background: var(--clay); color: #fff; }
.section--clay h1, .section--clay h2, .section--clay h3, .section--clay strong { color: #fff; }
.section--clay p { color: rgba(255, 255, 255, .92); }
.section--clay a { color: #fff; }
.section--clay a:hover { color: var(--sand); }
.section--sea { background: var(--sea); color: rgba(255, 255, 255, .86); }
.section--sea h1, .section--sea h2, .section--sea h3, .section--sea h4, .section--sea strong, .section--sea b { color: #fff; }
.section--sea a:not(.btn) { color: var(--sand); }
.section--sea a:not(.btn):hover { color: #fff; }
.section--sea .kicker { color: var(--sand-2); }
.rule { border: 0; border-top: 2px solid var(--line); margin: 0; }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head h2 { margin-bottom: .35em; }
.prose { max-width: 66ch; }
.prose h3 { margin-top: 1.6em; }
.prose > :first-child { margin-top: 0; }

/* Buttons -------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sc); font-weight: 700; font-size: 1.02rem; letter-spacing: .04em;
  padding: 14px 26px; border: 1.5px solid var(--sea); text-decoration: none; line-height: 1.1;
  color: var(--sea); background: transparent; cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s;
}
.btn--solid { background: var(--sea); color: #fff; }
.btn--solid:hover { background: var(--sea-deep); border-color: var(--sea-deep); color: #fff; }
.btn:not(.btn--solid):hover { background: var(--sea); color: #fff; }
.btn--light { border-color: rgba(255, 255, 255, .8); color: #fff; }
.btn--light:hover { background: #fff; color: var(--sea); border-color: #fff; }
.btn--light.btn--solid { background: #fff; color: var(--sea); border-color: #fff; }
.btn--light.btn--solid:hover { background: var(--sand); border-color: var(--sand); color: var(--sea); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sc); font-weight: 700; font-size: 1.02rem; letter-spacing: .04em; text-decoration: none; }
.link-arrow .ic { transition: transform .25s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* Top bar + header ----------------------------------------------------------- */
.topbar { background: var(--sea); color: rgba(255, 255, 255, .85); font-size: .95rem; font-weight: 500; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 20px; }
.topbar .ic { margin-right: 7px; }
.topbar__right { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; }
@media (max-width: 680px) { .topbar { display: none; } }

.header { position: sticky; top: 0; z-index: 90; background: rgba(251, 248, 242, .96); border-bottom: 2px solid var(--line); }
.header__in { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--sea); }
.brand__mark { width: 26px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.brand__word { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.brand__word span { font-style: italic; font-weight: 300; }
.brand--light { color: #fff; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) { font-family: var(--font-sc); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; color: var(--ink); text-decoration: none; padding: 10px 12px; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav__sub, .nav__cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__book { padding: 12px 20px; }
.burger { display: none; width: 46px; height: 46px; border: 1.5px solid var(--sea); background: transparent; color: var(--sea); align-items: center; justify-content: center; cursor: pointer; }
.burger .ic { width: 24px; height: 24px; }
.burger .ic--close { display: none; }
body.nav-open .burger .ic--open { display: none; }
body.nav-open .burger .ic--close { display: block; }
@media (max-width: 1120px) {
  .header__book { display: none; }
  .burger { display: inline-flex; }
  .nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 80; flex-direction: column; align-items: stretch; gap: 0; background: var(--cal); padding: 12px var(--gutter) 40px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; }
  body.nav-open .nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .nav a:not(.btn) { font-size: 1.3rem; padding: 16px 4px; border-bottom: 1px solid rgba(31, 54, 72, .2); }
  .nav a:not(.btn)::after { display: none; }
  .nav__sub { display: flex; flex-direction: column; padding: 8px 0 0 18px; }
  .nav__sub a:not(.btn) { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; letter-spacing: 0; padding: 10px 4px; border-bottom: 0; color: var(--ink-2); }
  .nav__cta { display: inline-flex; margin-top: 26px; }
}
@media (max-width: 680px) { :root { --header-h: 72px; } .brand__word { font-size: 1.25rem; } .brand__mark { width: 22px; height: 30px; } }

/* Breathing disc: the signature ------------------------------------------- */
.disc { position: relative; width: var(--disc, min(44vw, 520px)); aspect-ratio: 1; flex: none; }
.disc::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--clay); animation: breathe 10s ease-in-out infinite; }
.disc__ring { position: absolute; inset: -9%; border-radius: 50%; border: 1.5px solid rgba(180, 100, 74, .45); animation: breathe 10s ease-in-out infinite .5s; }
.disc__ring--2 { inset: -20%; border-color: rgba(180, 100, 74, .28); animation-delay: 1s; }
.disc--sea::before { background: var(--sea); }
.disc--sea .disc__ring { border-color: rgba(31, 54, 72, .35); }
.disc--sand::before { background: var(--sand-2); }
.disc--sand .disc__ring { border-color: rgba(227, 214, 192, .6); }
@keyframes breathe { 0%, 100% { transform: scale(1); } 40%, 55% { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .disc::before, .disc__ring { animation: none; } }

/* Home hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px); min-height: min(760px, calc(100svh - var(--header-h) - 40px)); display: flex; align-items: center; }
.hero__in { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(24px, 4vw, 64px); }
.hero__content { position: relative; z-index: 2; }
.hero__content h1 { margin-bottom: .4em; font-size: clamp(3.2rem, 7.4vw, 6.6rem); }
.hero__content .lead { font-size: clamp(1.25rem, 1.7vw, 1.5rem); }
.hero__disc { position: relative; justify-self: end; z-index: 1; }
.hero__disc .disc { --disc: min(34vw, 480px); margin: 10% -6% 6% 0; }
@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 36px; }
  .hero__in { grid-template-columns: 1fr; }
  .hero__disc { order: -1; justify-self: start; }
  .hero__disc .disc { --disc: min(38vw, 190px); margin: 4px 0 8px 10%; }
}

/* Page head (subpages) ------------------------------------------------------ */
.page-head { padding: clamp(48px, 7vw, 104px) 0 clamp(40px, 5vw, 72px); border-bottom: 2px solid var(--line); overflow: hidden; }
.page-head__in { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: clamp(24px, 4vw, 64px); }
.page-head h1 { margin-bottom: .4em; max-width: 16ch; }
.page-head .lead { margin-bottom: 0; }
.page-head .disc { --disc: clamp(120px, 16vw, 220px); margin-bottom: 8px; }
.page-head--sea { border-bottom: 0; }
.page-head--sea h1 { color: #fff; }
.page-head--sea .lead { color: rgba(255, 255, 255, .86); }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-family: var(--font-sc); font-weight: 700; font-size: .95rem; letter-spacing: .04em; color: var(--ink-2); margin-bottom: 22px; }
.crumbs a { color: var(--sea); text-decoration: none; }
.crumbs a:hover { color: var(--clay-deep); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: var(--clay); }
.section--sea .crumbs, .section--sea .crumbs a { color: rgba(255, 255, 255, .75); }
@media (max-width: 720px) { .page-head__in { grid-template-columns: 1fr; } .page-head .disc { display: none; } }

/* Photo slots ----------------------------------------------------------------- */
.photo { position: relative; margin: 0; background: var(--sand); color: var(--clay-deep); overflow: hidden; display: grid; place-items: center; aspect-ratio: var(--ar, 4 / 3); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo .mark { width: clamp(72px, 22%, 160px); opacity: .55; }
.photo figcaption { position: absolute; left: 14px; bottom: 12px; font-family: var(--font-sc); font-weight: 700; font-size: .85rem; letter-spacing: .04em; color: var(--clay-deep); opacity: .75; }
.photo--portrait { --ar: 3 / 4; }
.photo--wide { --ar: 21 / 9; }
.photo--square { --ar: 1; }
.photo--sea { background: var(--sea-deep); color: var(--sand-2); }
.photo--sea figcaption { color: var(--sand-2); }
.photo--clay { background: var(--clay-deep); color: var(--sand); }
.photo--clay figcaption { color: var(--sand); }
.band-photo { padding: 0; }
.band-photo .photo { --ar: 3 / 1; width: 100%; }
@media (max-width: 720px) { .band-photo .photo { --ar: 16 / 9; } }

/* Doors: the three pillars, as an editorial index ------------------------------ */
.doors { border-top: 2px solid var(--line); }
.door { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto; gap: clamp(20px, 4vw, 64px); align-items: center; padding: clamp(28px, 4vw, 48px) 0; border-bottom: 2px solid var(--line); text-decoration: none; color: inherit; }
.door h3 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 300; margin: 0; transition: color .25s; }
.door p { margin: 0; color: var(--ink-2); }
.door .mark { width: 72px; height: 72px; color: var(--clay); flex: none; }
.door .door__go { grid-column: 1 / -1; margin-top: -8px; }
.door:hover h3 { color: var(--clay-deep); }
.door__price { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--ink); display: block; margin-top: 10px; }
@media (max-width: 800px) { .door { grid-template-columns: 1fr auto; } .door p { grid-column: 1 / -1; } .door .mark { width: 54px; height: 54px; } }

/* Intro grid: statement left, prose right ------------------------------------- */
.intro-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.intro-grid h2 { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-grid h2 { position: static; } }

/* Split: figure + text ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split--even { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev > :first-child { order: 0; } }

/* Ledger rows (facts, modalities, benefits) --------------------------------------- */
.ledger { border-top: 2px solid currentColor; }
.ledger__row { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(16px, 3vw, 48px); padding: clamp(20px, 3vw, 34px) 0; border-bottom: 2px solid currentColor; }
.ledger__row h3 { margin: 0; font-weight: 400; }
.ledger__row p { margin: 0; }
.ledger--light { color: var(--sand-2); }
.ledger--light h3, .ledger--light p { color: #fff; }
@media (max-width: 720px) { .ledger__row { grid-template-columns: 1fr; gap: 8px; } }

/* Benefit list: two columns, plain -------------------------------------------- */
.list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.list li { padding: 0 0 12px 30px; position: relative; border-bottom: 1px solid rgba(31, 54, 72, .18); }
.list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 14px; height: 2px; background: var(--clay); }
.section--sea .list li { border-color: rgba(255, 255, 255, .18); }
.section--sea .list li::before { background: var(--sand-2); }
.list--1 { grid-template-columns: 1fr; }
@media (max-width: 680px) { .list { grid-template-columns: 1fr; } }

/* Quote band ----------------------------------------------------------------------- */
.quote { margin: 0; max-width: 24ch; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); font-variation-settings: "opsz" 144; }
.quote--wide { max-width: 30ch; }
.quote cite { display: block; font-style: normal; font-family: var(--font-sc); font-weight: 700; font-size: 1rem; letter-spacing: .05em; margin-top: 22px; color: var(--clay-deep); }
.section--sea .quote { color: #fff; }
.section--sea .quote cite { color: var(--sand-2); }
.section--clay .quote { color: #fff; }
.section--clay .quote cite { color: var(--sand); }
.slogans { display: flex; flex-wrap: wrap; gap: 12px 36px; margin: 0; padding: 0; }
.slogans li { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--clay-deep); }

/* Boundary block (men's page) ---------------------------------------------------- */
.boundary { border: 2px solid var(--sand-2); padding: clamp(24px, 3.5vw, 44px); }
.boundary h2 { margin-bottom: .6em; }
.boundary p:last-child { margin-bottom: 0; }
.boundary--inline { border-color: var(--sea); background: var(--cal); margin-top: 26px; padding: 18px 22px; font-weight: 500; max-width: 60ch; }
.boundary--inline p { margin: 0; }

/* Journeys: progressive tiers ------------------------------------------------------- */
.journeys { border-top: 2px solid var(--line); counter-reset: tier; }
.tier { display: grid; grid-template-columns: 64px minmax(0, 4fr) minmax(0, 6fr) minmax(0, 3fr); gap: clamp(14px, 2.5vw, 40px); padding: clamp(24px, 3.4vw, 40px) 0; border-bottom: 2px solid var(--line); align-items: start; }
.tier__num { font-family: var(--font-display); font-weight: 300; font-size: 1.6rem; color: var(--clay); line-height: 1.1; padding-top: .2em; }
.tier__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.05; margin: 0 0 6px; }
.tier__dur { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; font-size: 1rem; color: var(--ink-2); }
.tier__text p { margin: 0 0 .5em; }
.tier__text p:last-child { margin-bottom: 0; }
.tier__note { font-size: 1rem; color: var(--ink-2); }
.tier__price { text-align: right; }
.tier__price .p { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1; font-variant-numeric: tabular-nums; }
.tier__price .j { display: block; margin-top: 8px; font-size: 1rem; color: var(--ink-2); }
.tier__price .j b { font-family: var(--font-display); font-size: 1.2rem; color: var(--clay-deep); font-weight: 500; }
@media (max-width: 800px) {
  .tier { grid-template-columns: 48px minmax(0, 1fr); }
  .tier__text { grid-column: 2; }
  .tier__price { grid-column: 2; text-align: left; display: flex; gap: 20px; align-items: baseline; }
  .tier__price .j { margin-top: 0; }
}
.saving { display: flex; align-items: flex-start; gap: 12px; max-width: 60ch; font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; font-size: 1rem; color: var(--clay-deep); }
.saving::before { content: ""; flex: none; width: 26px; height: 2px; margin-top: .75em; background: var(--clay); }

/* Price table (therapeutic, yoga) --------------------------------------------------- */
.prices { width: 100%; border-collapse: collapse; font-size: 1.1rem; }
.prices th, .prices td { padding: 16px 12px; text-align: left; border-bottom: 2px solid var(--line); vertical-align: top; }
.prices thead th { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; font-size: 1rem; color: var(--ink-2); border-bottom-width: 2px; }
.prices th:first-child, .prices td:first-child { padding-left: 0; }
.prices td.num { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; font-variant-numeric: tabular-nums; white-space: nowrap; text-align: right; padding-right: 0; }
.prices th.num { text-align: right; padding-right: 0; }
.prices td .dur { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; color: var(--ink-2); font-size: 1rem; }

/* Contact ------------------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form { background: var(--sand); padding: clamp(24px, 3.5vw, 44px); }
.form h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; font-size: 1rem; color: var(--ink); }
.field label span { color: var(--clay-deep); }
.field input, .field textarea, .field select { font: inherit; color: var(--ink); background: var(--cal); border: 1.5px solid rgba(31, 54, 72, .35); padding: 13px 14px; width: 100%; border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(31, 54, 72, .18); }
.field textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: .95rem; color: var(--ink-2); margin: 14px 0 0; }
.form-status { margin: 16px 0 0; font-weight: 500; min-height: 1.4em; }
.form-status.is-ok { color: #2F5A25; }
.form-status.is-err { color: var(--clay-deep); }
.details { display: grid; gap: 26px; }
.detail h4 { margin-bottom: 6px; }
.detail p { margin: 0; color: var(--ink-2); }
.detail p a[data-todo] { color: var(--clay-deep); }

/* Footer ---------------------------------------------------------------------------- */
.footer { background: var(--sea); color: rgba(255, 255, 255, .8); }
.footer a { color: rgba(255, 255, 255, .86); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(56px, 7vw, 88px) 0 48px; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .brand { margin-bottom: 22px; }
.footer__brand p { font-size: 1rem; max-width: 40ch; }
.footer__adult { font-size: .95rem; color: rgba(255, 255, 255, .7); border-top: 1px solid rgba(255, 255, 255, .2); padding-top: 14px; }
.footer__adult a { text-decoration: underline; }
.footer h4 { font-family: var(--font-sc); font-weight: 700; letter-spacing: .05em; font-size: 1rem; color: #fff; margin-bottom: 16px; }
.footer ul li { padding: 6px 0; font-size: 1rem; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .ic { color: var(--sand-2); margin-top: .3em; }
.footer__bottom { background: var(--sea-deep); padding: 20px 0; font-size: .95rem; color: rgba(255, 255, 255, .6); }
.footer__bottom-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__legal { display: inline-flex; gap: 22px; }
.footer__legal span { font-family: var(--font-sc); font-weight: 700; letter-spacing: .04em; }

.totop { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--sea); color: #fff; display: grid; place-items: center; z-index: 60; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s; }
.totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--clay-deep); color: #fff; }

/* Reveal (utility motion, restrained) ---------------------------------------------------- */
html.js .reveal { opacity: 0; transform: translateY(8px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }
