/* ==========================================================================
   Ola Living Valladolid — design system
   Mediterranean: teal primary, warm orange + soft gold accents, bright neutrals.
   Dependency-free. Tokens first, then base, then components.
   ========================================================================== */

:root {
  /* Brand — sea, sunlight, comfort */
  --teal:        #0e7c86;
  --teal-deep:   #0a5c65;
  --teal-dark:   #07444b;
  --teal-soft:   #4aa5ad;
  --teal-tint:   #e6f4f5;
  --teal-wash:   #f2fafa;

  --orange:      #ef7a35;
  --orange-deep: #d55f1b;
  --orange-tint: #fef0e7;

  --gold:        #f5b942;
  --gold-soft:   #f9d183;
  --gold-tint:   #fdf6e6;

  /* Neutrals — bright, airy */
  --ink:        #12313a;
  --ink-soft:   #3c5b64;
  --muted:      #64818a;
  --line:       #dfe8ea;
  --line-soft:  #edf3f4;
  --grey:       #f4f8f9;
  --grey-deep:  #e9f1f2;
  --surface:    #ffffff;
  --bg:         #ffffff;

  --ok:         #15756a;

  /* Type */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
                  "Times New Roman", serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.5vw, 2.75rem);
  --step-4:  clamp(2.2rem, 1.6rem + 3vw, 4.25rem);

  /* Space & shape */
  --gutter: clamp(1.15rem, 0.8rem + 1.8vw, 2.5rem);
  --section: clamp(3.5rem, 2.5rem + 4.5vw, 7rem);
  --max: 1200px;
  --max-prose: 68ch;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18, 49, 58, .05), 0 2px 10px rgba(18, 49, 58, .05);
  --shadow-md: 0 4px 14px rgba(18, 49, 58, .07), 0 16px 38px rgba(18, 49, 58, .07);
  --shadow-lg: 0 10px 28px rgba(18, 49, 58, .08), 0 32px 74px rgba(18, 49, 58, .10);
  --shadow-teal: 0 10px 30px rgba(14, 124, 134, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- base --- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-deep); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal-dark); color: #fff; padding: .75rem 1.15rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------ layout --- */

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - (var(--gutter) * 2), 800px); }

.section { padding-block: var(--section); }
.section--tint { background: var(--grey); }
.section--teal-wash { background: var(--teal-wash); }
.section--ink { background: var(--teal-dark); color: #d7ebed; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: var(--max-prose); margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { color: var(--muted); font-size: var(--step-1); }
.section--ink .section-head p { color: #a9cdd1; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.section--ink .eyebrow { color: var(--gold-soft); }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--rooms { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }

/* ------------------------------------------------------------- media --- */

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--grey-deep);
  box-shadow: var(--shadow-md);
}
.media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.media--zoom:hover img, a:hover > .media--zoom img { transform: scale(1.06); }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 16 / 10; }
.media--square { aspect-ratio: 1; }
.media--hero { aspect-ratio: 3 / 4; border-radius: var(--r-xl); }

/* Caption chip floating over an image */
.media__chip {
  position: absolute; left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .82rem; font-weight: 650; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.media__chip svg { width: .95rem; height: .95rem; color: var(--teal); }

/* ------------------------------------------------------------ header --- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px rgba(18, 49, 58, .06);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; line-height: 1.15;
  color: var(--ink); text-decoration: none; letter-spacing: -.01em;
  margin-right: auto;
}
.brand:hover { color: var(--teal); }
.brand__mark {
  flex: none;
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(14, 124, 134, .28);
}
.brand__mark svg { width: 1.25rem; height: 1.25rem; }
.brand__text small {
  display: block; font-family: var(--font-sans); font-size: .64rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  padding: .5rem .72rem; border-radius: var(--r-sm);
  color: var(--ink-soft); text-decoration: none;
  font-size: .93rem; font-weight: 550;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: var(--teal-tint); color: var(--teal-deep); }
.nav a[aria-current="page"] { color: var(--teal); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: .55rem; }

.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--surface); overflow: hidden; font-size: .78rem; font-weight: 700;
}
.lang-switch a {
  padding: .34rem .62rem; color: var(--muted); text-decoration: none;
  letter-spacing: .04em;
}
.lang-switch a[aria-current="true"] { background: var(--teal); color: #fff; }
.lang-switch a:not([aria-current]):hover { background: var(--teal-tint); color: var(--teal-deep); }

.nav-toggle {
  display: none;
  width: 2.6rem; height: 2.6rem;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 1.2rem; height: 1.2rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 4.5rem 0 auto;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .32s var(--ease);
    max-height: calc(100dvh - 4.5rem); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .8rem .5rem; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav .btn { margin-top: .75rem; justify-content: center; }
}

/* ----------------------------------------------------------- buttons --- */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.45rem;
  border: 2px solid transparent; border-radius: var(--r-pill);
  background: var(--teal); color: #fff;
  font: inherit; font-size: .95rem; font-weight: 650;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: var(--shadow-teal);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease);
}
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn:hover {
  background: var(--orange); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 122, 53, .32);
}
.btn:active { transform: translateY(0); }

/* Secondary: white fill, teal border, orange on hover */
.btn--ghost {
  background: var(--surface); color: var(--teal-deep);
  border-color: var(--teal); box-shadow: none;
}
.btn--ghost:hover {
  background: var(--surface); color: var(--orange-deep);
  border-color: var(--orange);
  box-shadow: 0 8px 22px rgba(239, 122, 53, .18);
}

/* On dark/photo backgrounds */
.btn--light {
  background: #fff; color: var(--teal-deep); box-shadow: var(--shadow-md);
}
.btn--light:hover { background: var(--gold); color: var(--teal-dark); }

.btn--outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12); color: #fff; border-color: #fff;
}

.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* -------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 2.5rem + 6vw, 6.5rem) var(--section);
  background:
    radial-gradient(900px 480px at 82% -10%, var(--teal-tint), transparent 64%),
    radial-gradient(700px 400px at 2% 12%, var(--gold-tint), transparent 62%),
    var(--surface);
  overflow: hidden;
}
.hero__inner {
  display: grid; gap: clamp(2.25rem, 4vw, 3.75rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
}
@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal) 10%, var(--teal-soft) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  font-size: var(--step-1); color: var(--ink-soft);
  max-width: 46ch; margin-bottom: 2rem;
}

/* "Now open" status badge */
.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .42rem 1rem .42rem .5rem;
  border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.badge b {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--teal); color: #fff;
  padding: .2rem .6rem; border-radius: var(--r-pill);
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
}
.badge b::before {
  content: ""; width: .45rem; height: .45rem; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 0 rgba(245, 185, 66, .8);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 185, 66, .75); }
  70%  { box-shadow: 0 0 0 .5rem rgba(245, 185, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0); }
}

.hero__facts {
  display: grid; gap: 1px; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
}
.hero__facts div { background: var(--surface); padding: 1rem 1.1rem; }
.hero__facts dt {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.hero__facts dd {
  margin: 0; font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--teal-deep);
}

.hero__art { position: relative; }
.hero__art .media { box-shadow: var(--shadow-lg); }
.hero__art::after {
  content: ""; position: absolute; z-index: -1;
  inset: auto -6% -8% 18%; height: 62%;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--gold-tint), var(--teal-tint));
}

/* Floating price card over the hero image */
.hero__price {
  position: absolute; right: -.5rem; bottom: 1.5rem;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: .95rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero__price small {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.hero__price strong {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--teal-deep);
  font-weight: 600; line-height: 1.1;
}
@media (max-width: 480px) { .hero__price { right: .5rem; bottom: .75rem; padding: .7rem 1rem; } }

/* ------------------------------------------------------------- cards --- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease),
              border-color .24s var(--ease);
}
.card--lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* Pillar card with image */
.pillar { display: flex; flex-direction: column; gap: 1.1rem; }
.pillar .media { aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.pillar__num {
  display: inline-grid; place-items: center;
  width: 2.2rem; height: 2.2rem; border-radius: var(--r-pill);
  background: var(--teal-tint); color: var(--teal-deep);
  font-family: var(--font-sans); font-size: .82rem; font-weight: 700;
  margin-bottom: .2rem;
}

.icon-card__icon {
  width: 2.8rem; height: 2.8rem; margin-bottom: 1rem;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--teal-tint); color: var(--teal);
  transition: background .24s var(--ease), color .24s var(--ease);
}
.icon-card__icon svg { width: 1.4rem; height: 1.4rem; }
.card--lift:hover .icon-card__icon { background: var(--orange-tint); color: var(--orange-deep); }

/* ------------------------------------------------------------- rooms --- */

.room {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease),
              border-color .24s var(--ease);
}
.room:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.room__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--grey-deep); }
.room__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.room:hover .room__media img { transform: scale(1.07); }

.room__badge {
  position: absolute; top: .85rem; left: .85rem;
  padding: .34rem .8rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .68rem; font-weight: 750; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal-deep);
  box-shadow: var(--shadow-sm);
}
.room__badge--new { background: var(--gold); color: var(--teal-dark); }

.room__price {
  position: absolute; right: .85rem; bottom: .85rem;
  padding: .5rem .9rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  text-align: right; line-height: 1.15;
}
.room__price small {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted);
}
.room__price strong {
  font-family: var(--font-display); font-size: 1.32rem;
  font-weight: 600; color: var(--teal-deep);
}
.room__price span { font-family: var(--font-sans); font-size: .72rem; color: var(--muted); font-weight: 600; }

.room__body { padding: 1.35rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.room__body h3 { font-size: 1.14rem; margin-bottom: .55rem; }
.room__body > p { font-size: .94rem; }
.room__body .btn { margin-top: auto; width: 100%; }

/* Feature icon row inside a room card */
.room__feats {
  list-style: none; margin: 1.1rem 0 1.4rem; padding: 0;
  display: grid; gap: .6rem;
}
.room__feats li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .89rem; color: var(--ink-soft);
}
.room__feats svg { width: 1.05rem; height: 1.05rem; color: var(--teal); flex: none; }

.ticks { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: .55rem; }
.ticks li {
  position: relative; padding-left: 1.7rem;
  font-size: .93rem; color: var(--ink-soft);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .4em;
  width: 1rem; height: .52rem;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

/* Amenity pills */
.amenities { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.amenities li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.05rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 550; color: var(--ink-soft);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.amenities li:hover { border-color: var(--teal-soft); transform: translateY(-2px); }
.amenities svg { width: 1.05rem; height: 1.05rem; color: var(--teal); flex: none; }

/* ------------------------------------------------------------ gallery --- */

.gallery {
  display: grid; gap: clamp(.75rem, 1.5vw, 1.1rem);
  grid-template-columns: repeat(4, 1fr);
}
.gallery .media { aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery .media:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .media:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
}

/* Split feature: image one side, copy the other */
.split {
  display: grid; gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 800px) { .split--reverse > *:first-child { order: 0; } }

/* ---------------------------------------------------------- location --- */

.poi { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.poi li {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
}
.poi li:first-child { border-top: 1px solid var(--line); }
.poi__name { font-weight: 600; color: var(--ink); }
.poi__meta {
  margin-left: auto; color: var(--teal-deep); font-size: .86rem;
  white-space: nowrap; font-weight: 650;
  background: var(--teal-tint); padding: .18rem .6rem; border-radius: var(--r-pill);
}

.map-embed {
  border: 0; width: 100%; aspect-ratio: 16 / 10;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------- faq --- */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: var(--teal-soft); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  position: relative;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 1.5rem;
  width: .58rem; height: .58rem;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .25s var(--ease), border-color .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--orange); }
.faq summary:hover { background: var(--teal-wash); }
.faq__answer { padding: 0 1.35rem 1.35rem; color: var(--ink-soft); max-width: var(--max-prose); }

/* -------------------------------------------------------------- form --- */

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
}

.field-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }

.field label { font-size: .88rem; font-weight: 650; color: var(--ink); }
.field label .req { color: var(--orange-deep); }
.field .hint { font-size: .8rem; color: var(--muted); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--grey);
  font: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2364818a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  background-size: .7rem; padding-right: 2.2rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--surface);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-tint);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--orange-deep); }

.consent {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .88rem; color: var(--ink-soft); line-height: 1.5;
}
.consent input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; flex: none; accent-color: var(--teal); }

/* Honeypot — must stay visually hidden but present in the DOM */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status {
  margin-top: 1.15rem; padding: 1rem 1.15rem;
  border-radius: var(--r-sm); font-size: .93rem; font-weight: 550;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status[data-state="ok"]  { background: var(--teal-tint); color: var(--ok); border: 1px solid #b6ddd8; }
.form-status[data-state="err"] { background: var(--orange-tint); color: var(--orange-deep); border: 1px solid #f6cdb2; }
.form-status[data-state="busy"]{ background: var(--grey); color: var(--muted); border: 1px solid var(--line); }

/* Contact channel tiles */
.channels { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
.channels a {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.15rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.channels a:hover {
  transform: translateY(-2px); border-color: var(--teal-soft);
  box-shadow: var(--shadow-md); color: var(--ink);
}
.channels__icon {
  width: 2.4rem; height: 2.4rem; flex: none;
  display: grid; place-items: center; border-radius: var(--r-sm);
  background: var(--teal-tint); color: var(--teal);
}
.channels__icon svg { width: 1.2rem; height: 1.2rem; }
.channels b { display: block; font-size: .95rem; }
.channels span { font-size: .84rem; color: var(--muted); }

/* --------------------------------------------------------------- cta --- */

.cta {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 62%, var(--teal-dark) 100%);
  color: #fff;
  padding: clamp(2.25rem, 5vw, 4.25rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute;
  width: 38rem; aspect-ratio: 1; left: -12rem; bottom: -20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 185, 66, .38), transparent 66%);
}
.cta::after {
  content: ""; position: absolute;
  width: 26rem; aspect-ratio: 1; right: -9rem; top: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 122, 53, .34), transparent 68%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #cfe8ea; max-width: 54ch; margin-inline: auto; font-size: var(--step-1); }
.cta .btn-row { justify-content: center; margin-top: 2rem; }

/* ------------------------------------------------------------ footer --- */

.site-footer {
  background: var(--teal-dark); color: #a9c9cd;
  padding-block: clamp(2.75rem, 5vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.site-footer a { color: #cfe4e6; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer h4 {
  color: #fff; font-family: var(--font-sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-grid {
  display: grid; gap: 2.25rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(9rem, 1fr));
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand__mark { background: rgba(255,255,255,.14); box-shadow: none; }
.site-footer .brand__text small { color: #7fa8ad; }
.footer-bottom {
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .65rem 1.35rem;
  align-items: center; font-size: .85rem; color: #7fa8ad;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .65rem 1.15rem; margin-left: auto; }

/* --------------------------------------------------------- utilities --- */

.prose { max-width: var(--max-prose); }
.prose h2 { font-size: var(--step-2); margin-top: 2.25em; }
.prose h3 { margin-top: 1.9em; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .45rem; margin-bottom: 1.2em; }
.prose li { color: var(--ink-soft); }

.page-head {
  padding-block: clamp(2.75rem, 2rem + 4vw, 5rem) clamp(1.75rem, 3vw, 3rem);
  background:
    radial-gradient(720px 320px at 88% -30%, var(--teal-tint), transparent 64%),
    radial-gradient(520px 280px at 5% 0%, var(--gold-tint), transparent 60%),
    var(--surface);
}
.page-head p { color: var(--ink-soft); font-size: var(--step-1); max-width: 58ch; }

.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); text-decoration: underline; }

.note {
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  padding: 1rem 1.25rem; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .93rem; color: var(--ink-soft);
}

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.whatsapp-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
  transition: transform .2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }
.whatsapp-fab svg { width: 1.75rem; height: 1.75rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .media img { transition: none; }
}

@media print {
  .site-header, .site-footer, .whatsapp-fab, .cta, .nav-toggle { display: none !important; }
  body { background: #fff; }
}
