/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f2ec;
  --bg-dark: #0b1216;
  --bg-dark-2: #101a20;

  --ink: #14181d;
  --ink-soft: rgba(20, 24, 29, .72);
  --ink-mute: rgba(20, 24, 29, .52);

  --cream: #f7f3ec;
  --cream-mute: rgba(247, 243, 236, .68);
  --cream-faint: rgba(247, 243, 236, .4);

  --navy: #1a2d52;
  --navy-deep: #101d38;
  --navy-ink: #0c1628;
  --gold: #b9925c;
  --gold-soft: rgba(185, 146, 92, .16);

  --line: rgba(20, 24, 29, .1);
  --line-strong: rgba(20, 24, 29, .16);
  --line-dark: rgba(247, 243, 236, .14);

  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --heading: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--heading); text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--navy); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--navy); color: var(--cream);
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }
@media (min-width: 1440px) { .container { max-width: 1440px; } }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .9rem;
}
.eyebrow-on-dark { color: var(--gold); }

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .06s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .12s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .18s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: .3s; }
[data-reveal][data-reveal-delay="6"] { transition-delay: .36s; }
[data-reveal][data-reveal-delay="7"] { transition-delay: .42s; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26, 45, 82, .1), 0 1px 3px rgba(26, 45, 82, .06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 22px 44px rgba(26, 45, 82, .28), 0 10px 20px rgba(26, 45, 82, .18); }

/* For use when the button sits on a navy/blue background */
.btn-on-navy { background: var(--cream); color: var(--navy); }
.btn-on-navy:hover { background: #fff; box-shadow: 0 22px 44px rgba(0, 0, 0, .2), 0 10px 20px rgba(0, 0, 0, .12); }

.btn-ghost { background: rgba(255, 255, 255, .12); color: var(--ink); box-shadow: none; border: 1.5px solid var(--line-strong); }
.hero .btn-ghost { color: var(--cream); border-color: rgba(247, 243, 236, .4); background: rgba(247, 243, 236, .08); }
.btn-ghost:hover { background: rgba(20, 24, 29, .06); }
.hero .btn-ghost:hover { background: rgba(247, 243, 236, .18); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  padding-block: 1.1rem;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(20, 24, 29, .06);
  transition: background-color .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 rgba(20, 24, 29, .08);
  padding-block: .7rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo-img { height: 58px; width: auto; flex-shrink: 0; }
.nav-logo-img--white { filter: brightness(0) invert(1); }

.nav-links { display: none; align-items: center; gap: 1.9rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
@media (min-width: 1140px) { .nav-links { display: flex; } }
.nav-links a { position: relative; padding-block: .25rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 1140px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; gap: 5px; width: 42px; height: 42px; place-items: center;
  border-radius: 50%;
}
@media (min-width: 1140px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: #fff; color: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; font-size: 1.5rem; font-weight: 700; }
@media (min-width: 1140px) { .nav-mobile { display: none; } }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  height: 100svh;
  display: flex; align-items: center;
  color: var(--cream);
  padding-top: 4.5rem;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 45, 82, .06) 0%, transparent 30%, transparent 60%, rgba(26, 45, 82, .35) 100%);
}

.hero-inner { position: relative; width: 100%; padding-block: 1.5rem; max-height: 100%; overflow: auto; }
.hero-content {
  max-width: 720px;
  padding: clamp(1.2rem, 3vh, 2.2rem) clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(26, 45, 82, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
@supports not (backdrop-filter: blur(1px)) {
  .hero-content { background: rgba(26, 45, 82, .88); }
}

.badge-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .95rem .5rem .7rem;
  border-radius: 100px;
  background: rgba(247, 243, 236, .12);
  border: 1px solid rgba(247, 243, 236, .22);
  backdrop-filter: blur(6px);
  font-size: .82rem; font-weight: 600;
  margin-bottom: clamp(.8rem, 2vh, 1.6rem);
}
.badge-stars { color: var(--gold); letter-spacing: 1px; font-size: .78rem; }

.hero-title { font-size: clamp(1.9rem, min(5.6vw, 6.2vh), 4rem); font-weight: 800; letter-spacing: -.03em; line-height: .98; margin-bottom: clamp(.7rem, 2vh, 1.4rem); }
.hero-title em { font-style: normal; color: var(--gold); }

.hero-sub { font-size: clamp(.94rem, 1.6vw, 1.2rem); color: rgba(233, 233, 233, .94); max-width: 46ch; margin-bottom: clamp(1rem, 2.5vh, 2.1rem); font-weight: 500; text-shadow: 0 1px 12px rgba(7, 15, 19, .5); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; margin-bottom: clamp(1rem, 2.5vh, 1.8rem); }
.hero-highlights li { display: flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 600; color: var(--cream-mute); }

.hero-float-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(74, 222, 128, .18); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(247, 243, 236, .5); border-radius: 100px;
  display: none;
}
@media (min-width: 720px) { .hero-scroll { display: block; } }
.hero-scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--cream); animation: scrollDot 1.8s var(--ease-soft) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: .3; } 100% { transform: translateY(16px); opacity: 0; } }

/* =============================================================
   7. Stats band
   ============================================================= */
.stats { background: var(--navy); color: var(--cream); padding-block: 3rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem;
  text-align: center;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat-value { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.stat-label { font-size: .78rem; color: var(--cream-mute); letter-spacing: .02em; }

/* =============================================================
   8. About
   ============================================================= */
.about { padding-block: 6rem; background: var(--bg); }
.about-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.3fr .9fr; gap: 4rem; } }

.about-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.4rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 58ch; }

.about-features { margin-top: 1.6rem; display: grid; gap: .8rem; }
.about-features li { display: flex; align-items: center; gap: .7rem; font-weight: 600; }
.about-features .icon { color: var(--navy); width: 18px; height: 18px; }

.about-membership { margin-top: 1.6rem; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }

.about-figure {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-figure::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(185, 146, 92, .35), transparent 70%);
  filter: blur(10px);
}
.about-figure-inner { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.about-figure-number { font-size: clamp(4.5rem, 9vw, 6.5rem); font-weight: 800; line-height: .85; letter-spacing: -.04em; color: var(--gold); }
.about-figure-label { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
.about-figure-sub { color: rgba(226, 229, 233, .92); font-size: .92rem; margin-top: .6rem; }

/* =============================================================
   9. Founder
   ============================================================= */
.quote-band { background: var(--navy); color: var(--cream); padding-block: 3.5rem 6.5rem; text-align: center; }
.quote-band .container { max-width: 1160px; }
.quote-band-icon { width: 30px; height: 30px; fill: rgba(247, 243, 236, .3); margin: 0 auto 1.4rem; display: block; }
.quote-band-rule { display: block; width: 52px; height: 3px; background: var(--gold); margin: 0 auto 1.8rem; border-radius: 2px; }
.quote-band-text { font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
.quote-band-cite { margin-top: 2rem; font-weight: 700; color: var(--gold); font-size: .95rem; }

.founder { padding-block: 6rem; background: var(--bg-soft); }
.founder-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .founder-grid { grid-template-columns: .8fr 1.4fr; gap: 4.5rem; } }

.founder-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: 0 30px 60px -30px rgba(20, 24, 29, .18);
  height: max-content;
  position: sticky; top: 6.5rem;
}
.founder-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--cream); font-weight: 800; font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.founder-card h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.founder-role { color: var(--navy); font-weight: 700; font-size: .88rem; margin-bottom: 1.1rem; }
.founder-formacion { font-size: .88rem; color: var(--ink-mute); line-height: 1.6; }

.founder-quote {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin-block: 1.6rem 2rem;
}
.founder-text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 62ch; }
.founder-signoff { font-weight: 700; color: var(--navy); margin-top: 1rem; }

/* =============================================================
   10. Pillars (AICP) — dark section
   ============================================================= */
.pillars { padding-block: 6rem; background: var(--navy); color: var(--cream); }
.pillars-title { font-size: clamp(2rem, 3.6vw, 2.7rem); max-width: 18ch; margin-bottom: 1.2rem; }
.pillars-intro { color: rgba(226, 229, 233, .92); max-width: 62ch; font-size: 1.05rem; margin-bottom: 3rem; }
.pillars-intro strong { color: var(--cream); font-weight: 700; }

.pillars-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card--wide { grid-column: span 2; }
  .pillar-card--wide p { max-width: 70ch; }
}

.pillar-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  background: linear-gradient(160deg, rgba(247, 243, 236, .04), transparent);
  transition: transform .55s var(--ease-soft), border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.pillar-n { display: block; font-size: .85rem; font-weight: 800; color: var(--gold); letter-spacing: .1em; margin-bottom: 1rem; }
.pillar-card h3 { font-size: 1.2rem; margin-bottom: .8rem; }
.pillar-card p { color: rgba(226, 229, 233, .92); font-size: .94rem; }
.pillar-card:hover { border-color: var(--gold); background: linear-gradient(160deg, rgba(185, 146, 92, .1), transparent); }

/* =============================================================
   11. Care / asistencia grid
   ============================================================= */
.care { padding-block: 6rem; background: var(--bg); }
.care h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 20ch; }

.care-layout { display: grid; gap: 2.5rem; }
@media (min-width: 960px) {
  .care-layout { grid-template-columns: .85fr 1.4fr; gap: 3.5rem; align-items: start; }
  /* Sticky only in the 2-column desktop layout, where the header is a sidebar.
     On mobile the layout is one column, so a sticky header stayed pinned and
     the cards scrolled underneath it (overlapping text). Keep it in normal flow. */
  .care-header { position: sticky; top: 6.5rem; }
}

.care-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }

.care-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  background: var(--bg);
  transition: transform .55s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}
.care-card:hover { box-shadow: 0 30px 55px -25px rgba(26, 45, 82, .28); border-color: transparent; }
.care-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-soft); color: var(--navy);
  margin-bottom: 1.2rem;
}
.care-card h3 { font-size: 1.08rem; margin-bottom: .7rem; }
.care-card p { color: var(--ink-soft); font-size: .92rem; }

/* =============================================================
   12. Facilities
   ============================================================= */
.facilities { padding-block: 6rem; background: var(--bg-soft); }
.facilities h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 22ch; margin-bottom: 1.2rem; }
.facilities-intro { color: var(--ink-soft); max-width: 68ch; font-size: 1.05rem; margin-bottom: 3rem; }

.facility-stack { display: flex; flex-direction: column; }

.facility-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 30px 60px -20px rgba(11, 18, 22, .45);
  height: 560px;
}
@media (min-width: 720px) { .facility-card { grid-template-columns: 1.1fr 1fr; height: 490px; } }

/* Stacking scroll effect: each card sticks near the top and the next
   one rises over it, offset slightly so the stack peeks underneath. */
.facility-card {
  position: sticky;
  top: calc(6rem + var(--stack-i, 0) * 1.4rem);
  z-index: var(--stack-i, 0);
  margin-bottom: 1.4rem;
}
.facility-card:last-child { margin-bottom: 0; }

.facility-card-media { height: 100%; min-height: 0; min-width: 0; overflow: hidden; }
.facility-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.facility-card-text { height: 100%; min-height: 0; padding: 2.4rem 2.2rem; color: var(--cream); display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.facility-card-text .eyebrow { color: var(--gold); }
.facility-card-text h3 { font-size: 1.4rem; margin-bottom: .9rem; }
.facility-card-text p { color: rgba(226, 229, 233, .92); font-size: .96rem; }
.facility-card-text .facility-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: .8rem; line-height: 1; }

@media (prefers-reduced-motion: reduce) {
  .facility-card { position: relative; top: auto; }
}

/* =============================================================
   13. Rooms
   ============================================================= */
.rooms { padding-block: 6rem; background: var(--bg); }
.rooms h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 3rem; }

.rooms-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }

.room-card { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .55s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.room-card:hover { box-shadow: 0 30px 55px -28px rgba(20, 24, 29, .28); }
.room-card--photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; transition: transform 1s var(--ease-soft); }
.room-card--photo:hover img { transform: scale(1.06); }
.room-card-text { padding: 1.6rem 1.5rem 1.7rem; }
.room-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.room-card p { color: var(--ink-soft); font-size: .92rem; margin-bottom: .9rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips li { font-size: .76rem; font-weight: 700; padding: .35rem .7rem; border-radius: 100px; background: var(--bg-soft); color: var(--ink-soft); }

/* =============================================================
   14. Daily life / activities
   ============================================================= */
.daily { padding-block: 6rem; background: var(--bg-soft); }
.daily h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 22ch; margin-bottom: 1.2rem; }
.daily-intro { color: var(--ink-soft); max-width: 66ch; font-size: 1.05rem; margin-bottom: 3rem; }

.daily-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .daily-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .daily-grid { grid-template-columns: repeat(3, 1fr); } }

.daily-card, .daily-card--photo {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 1.9rem 1.6rem;
  transition: transform .55s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.daily-card:hover, .daily-card--photo:hover { box-shadow: 0 30px 55px -28px rgba(20, 24, 29, .28); }
.daily-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-soft); color: var(--navy); margin-bottom: 1.1rem;
}
.daily-card h3, .daily-card--photo h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.daily-card p, .daily-card--photo p { color: var(--ink-soft); font-size: .9rem; }

.daily-card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.daily-card--photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; transition: transform 1s var(--ease-soft); }
.daily-card--photo:hover img { transform: scale(1.08); }
.daily-card-text { padding: 1.5rem 1.5rem 1.7rem; }
.daily-card--big { grid-row: span 1; }
@media (min-width: 720px) {
  .daily-card--big { grid-column: span 2; }
  .daily-card--big img { aspect-ratio: 16/8; }
}

/* =============================================================
   15. Contact
   ============================================================= */
.contact { padding-block: 6rem; background: var(--navy); color: var(--cream); }
.contact h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.2rem; }
.contact-lead { color: rgba(226, 229, 233, .92); max-width: 52ch; margin-bottom: 2.4rem; }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

.contact-list { display: grid; gap: 1.3rem; margin-bottom: 2rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .icon { color: var(--gold); margin-top: .15rem; }
.contact-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cream-mute); margin-bottom: .25rem; }
.contact-list span, .contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

.contact-map { border-radius: var(--radius-md); overflow: hidden; height: 220px; border: 1px solid var(--line-dark); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

.contact-form {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

.field { position: relative; margin-bottom: 1.2rem; }
.field input, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: transparent; color: inherit; font: inherit; resize: vertical;
  transition: border-color .3s var(--ease-out);
}
.field input:focus, .field textarea:focus { border-color: var(--navy); }
.field label {
  position: absolute; left: 1rem; top: 1rem;
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--ink-mute); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .45rem; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
}

.cta-submit { width: 100%; position: relative; margin-top: .4rem; }
.cta-form-spinner { position: absolute; inset: 0; display: none; place-items: center; }
.contact-form.is-sending .cta-form-label { opacity: 0; }
.contact-form.is-sending .cta-form-spinner { display: grid; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 2px solid rgba(247, 243, 236, .3); border-top-color: var(--cream);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .9rem; text-align: center; }

.contact-form.is-sent .field, .contact-form.is-sent .cta-submit, .contact-form.is-sent .contact-form-note, .contact-form.is-sent h3 {
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.cta-success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease-out) .15s;
}
.cta-success.is-visible { opacity: 1; pointer-events: auto; }
.cta-success-icon { width: 52px; height: 52px; fill: none; stroke: var(--navy); stroke-width: 2; margin-bottom: 1.1rem; }
.cta-success h4 { font-size: 1.3rem; margin-bottom: .6rem; }
.cta-success p { color: var(--ink-soft); max-width: 34ch; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--bg-dark-2); color: var(--cream); padding-top: 4.5rem; }
.footer-grid { display: grid; gap: 2.6rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand p { color: var(--cream-mute); font-size: .9rem; margin-block: 1.2rem .9rem; max-width: 34ch; }
.footer-badge { font-size: .85rem; font-weight: 700; color: var(--gold) !important; }

.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .4rem; }
.footer-col a, .footer-col span { color: var(--cream-mute); font-size: .9rem; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-block: 1.6rem; font-size: .8rem; color: var(--cream-faint); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-legal a { color: var(--cream-faint); }
.footer-legal a:hover { color: var(--cream); }

/* =============================================================
   17. Cookie bar
   ============================================================= */
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 300;
  max-width: 640px; margin-inline: auto;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
  transform: translateY(140%);
  transition: transform .6s var(--ease-soft);
}
.cookie-bar[data-visible="true"] { transform: translateY(0); }
.cookie-bar p { font-size: .82rem; color: var(--cream-mute); flex: 1 1 260px; }
.cookie-bar a { text-decoration: underline; color: var(--cream); }

/* =============================================================
   18. Tilt (shared)
   ============================================================= */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.has-tilt:hover { transition-duration: .15s; }

@media (hover: none), (pointer: coarse) {
  .has-tilt { transform: none; transform-style: flat; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll span { animation: none; }
  .hero-float-dot { box-shadow: none; }
}
