/* ============================================================
   Saidia Holiday Rentals — core stylesheet
   Design language: Mediterranean light. Sea blues, whitewash,
   a single saffron sun accent. Sharp grotesque type,
   photography-led, generous air. Hand-written, no framework.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
  /* palette — cool Mediterranean, no purple, no terracotta */
  --ink:      #0b1f2a;   /* deep sea near-black (text) */
  --sea:      #0e6c8f;   /* signature Saïdia blue */
  --sea-deep: #093f56;   /* pressed / hover blue */
  --azure:    #57b7d4;   /* bright shallow water */
  --foam:     #eaf4f7;   /* palest sea wash */
  --sand:     #efe6d6;   /* whitewash sand accent block */
  --paper:    #f7f9fa;   /* page base, faint cool tint */
  --white:    #ffffff;
  --sun:      #e6a52d;   /* saffron sun — used sparingly */
  --line:     #d8e0e4;   /* hairlines */
  --muted:    #567180;   /* secondary text */

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;         /* sharp, near-square corners */
  --shadow: 0 24px 60px -28px rgba(9, 63, 86, .38);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---- Type scale ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--ink); }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: var(--muted); line-height: 1.55; }

/* eyebrow / kicker */
.kicker {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sea);
  display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 1.9rem; height: 2px; background: var(--sun); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-narrow { max-width: 46ch; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bg: var(--sea); --fg: #fff;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .95rem 1.7rem; border: 1px solid transparent; border-radius: var(--radius);
  transition: transform .35s var(--ease), background .3s, box-shadow .35s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--sea-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -18px rgba(9,63,86,.6); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--sea-deep); }
.btn--light:hover { background: var(--foam); color: var(--sea-deep); }
.btn--wide { width: 100%; justify-content: center; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* focus visibility — accessible everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link */
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  transition: top .25s var(--ease);
}
.skip:focus { top: 1rem; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand .brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; }
.nav-links a {
  position: relative; font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--ink); padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--sea); transform: scaleX(0); transform-origin: left; transition: transform .32s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--sea); }
.nav-cta { display: inline-flex; align-items: center; gap: 1.2rem; }

/* mobile toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-120%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta-mobile { padding-top: 1rem; }
}

/* ============================================================
   Hero — one full-bleed composition
   ============================================================ */
.hero { position: relative; min-height: min(92vh, 860px); display: grid; align-items: end; overflow: hidden; color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out infinite alternate; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,32,45,.28) 0%, rgba(9,32,45,.12) 38%, rgba(9,32,45,.72) 100%);
}
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.12) translateY(-2%); } }

.hero-inner { padding-block: clamp(3rem, 8vw, 6rem); max-width: 62rem; }
.hero h1 { color: #fff; margin-top: 1.1rem; text-wrap: balance; }
.hero .lead { color: rgba(255,255,255,.9); margin-top: 1.3rem; max-width: 44ch; }
.hero .kicker { color: #fff; }
.hero .kicker::before { background: var(--sun); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3rem); margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.22);
}
.hero-meta div { min-width: 0; }
.hero-meta .n { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; display: block; }
.hero-meta .l { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* generic page header (non-home) */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(9,32,45,.82), rgba(14,108,143,.55)); }
.page-hero .wrap { padding-block: clamp(4rem, 11vw, 8rem); }
.page-hero h1 { color: #fff; text-wrap: balance; max-width: 20ch; }
.page-hero .lead { color: rgba(255,255,255,.9); margin-top: 1.1rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 1.2rem; letter-spacing: .04em; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Destination snapshot / feature rows
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--flip .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--flip .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.split-media--tall img { aspect-ratio: 4/5; }

.section-head { max-width: 52ch; }
.section-head h2 { margin-top: .8rem; text-wrap: balance; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stats div { background: var(--white); padding: 1.8rem 1.4rem; }
.stats .n { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--sea); }
.stats .l { font-size: .86rem; color: var(--muted); margin-top: .3rem; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Stay-type / feature cards
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.type-card {
  position: relative; overflow: hidden; border-radius: var(--radius); min-height: 420px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.type-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.type-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(9,32,45,0) 30%, rgba(9,32,45,.82)); }
.type-card:hover img { transform: scale(1.06); }
.type-card .type-body { padding: 1.6rem; }
.type-card h3 { color: #fff; }
.type-card p { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: .4rem; }
.type-card .type-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: #fff; }
.type-card .type-link .arrow { transition: transform .35s var(--ease); }
.type-card:hover .type-link .arrow { transform: translateX(4px); }

/* ============================================================
   Property listing cards (stays page)
   ============================================================ */
.stay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (max-width: 820px) { .stay-grid { grid-template-columns: 1fr; } }

.stay {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.stay:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.stay-figure { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.stay-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.stay:hover .stay-figure img { transform: scale(1.05); }
.stay-tag {
  position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.94); color: var(--sea-deep);
  font-family: var(--font-display); font-weight: 600; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: var(--radius);
}
.stay-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.stay-body .loc { font-size: .82rem; color: var(--muted); letter-spacing: .04em; display: flex; align-items: center; gap: .4rem; }
.stay-body h3 { font-size: 1.35rem; }
.stay-body p { color: var(--muted); font-size: .95rem; }
.amenities { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin-top: .2rem; }
.amenities li { font-size: .82rem; color: var(--ink); background: var(--foam); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .75rem; }
.stay-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.stay-foot .sleeps { font-size: .9rem; color: var(--muted); }
.stay-foot .price b { font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }

/* ============================================================
   Sand feature band + trust strip
   ============================================================ */
.band-sand { background: var(--sand); }
.band-sea { background: var(--sea-deep); color: #fff; }
.band-sea h2, .band-sea h3 { color: #fff; }
.band-sea .lead { color: rgba(255,255,255,.85); }
.band-foam { background: var(--foam); }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
@media (max-width: 820px) { .trust { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: 1rem; }
.trust-item .ico { flex: none; width: 46px; height: 46px; border-radius: var(--radius); background: var(--foam); color: var(--sea); display: grid; place-items: center; border: 1px solid var(--line); }
.band-sea .trust-item .ico { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }
.trust-item svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 1.12rem; }
.trust-item p { font-size: .92rem; color: var(--muted); margin-top: .3rem; }
.band-sea .trust-item p { color: rgba(255,255,255,.8); }

/* ============================================================
   CTA / newsletter teaser
   ============================================================ */
.cta-teaser { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; }
.cta-teaser img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-teaser::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(9,63,86,.92), rgba(14,108,143,.7)); }
.cta-teaser .cta-inner { padding: clamp(2.5rem, 6vw, 5rem); max-width: 40rem; }
.cta-teaser h2 { color: #fff; }
.cta-teaser p { color: rgba(255,255,255,.88); margin-top: .8rem; }

/* ============================================================
   Forms
   ============================================================ */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--sea); }
.field .hint { font-size: .82rem; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem .9rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sea); background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sea) 14%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }

.consent { display: flex; gap: .8rem; align-items: flex-start; background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; }
.consent input[type="checkbox"] { flex: none; width: 22px; height: 22px; margin-top: 2px; accent-color: var(--sea); cursor: pointer; }
.consent label { font-size: .92rem; color: var(--ink); line-height: 1.5; cursor: pointer; }
.consent a { color: var(--sea); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: .85rem; color: var(--muted); }
.form-status { display: none; padding: 1rem 1.1rem; border-radius: var(--radius); font-size: .95rem; margin-top: .4rem; }
.form-status.is-visible { display: block; }
.form-status.ok { background: #e6f4ea; border: 1px solid #b7dcc2; color: #1c6b39; }
.form-status.err { background: #fdecec; border: 1px solid #f2c4c4; color: #9c2b2b; }

/* compact embedded newsletter (home/footer) */
.mini-sub { display: flex; gap: .7rem; flex-wrap: wrap; }
.mini-sub input[type="email"] { flex: 1 1 260px; font: inherit; padding: .9rem 1rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; color: var(--ink); }
.mini-sub input:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 4px color-mix(in srgb, var(--sea) 14%, transparent); }
.mini-consent { display: flex; gap: .6rem; align-items: flex-start; margin-top: .9rem; font-size: .85rem; color: var(--muted); }
.mini-consent input { width: 20px; height: 20px; accent-color: var(--sea); margin-top: 1px; }
.mini-consent a { color: var(--sea); text-decoration: underline; }

/* ============================================================
   Prose (legal / long text pages)
   ============================================================ */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 2.6rem; }
.prose h3 { margin-top: 1.8rem; font-size: 1.25rem; }
.prose p, .prose li { color: var(--ink); }
.prose p + p { margin-top: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.2rem; }
.prose li { margin-top: .5rem; }
.prose a { color: var(--sea); text-decoration: underline; text-underline-offset: 2px; }
.prose .updated { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--sun); padding-left: 1rem; }
.toc { background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.toc h2 { margin-top: 0; font-size: 1.1rem; }
.toc ul { list-style: none; margin: .8rem 0 0; padding: 0; columns: 2; column-gap: 2rem; }
.toc li { margin-top: .5rem; break-inside: avoid; }
.toc a { color: var(--sea); text-decoration: none; }
.toc a:hover { text-decoration: underline; }
@media (max-width: 620px) { .toc ul { columns: 1; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--sea); transition: transform .3s var(--ease); }
.faq-q .plus::before { top: 11px; left: 2px; width: 20px; height: 2px; }
.faq-q .plus::after { left: 11px; top: 2px; width: 2px; height: 20px; }
.faq-item[open] .plus::after { transform: scaleY(0); }
.faq-a { padding: 0 0 1.4rem; color: var(--muted); max-width: 68ch; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand svg { width: 40px; height: 40px; }
.footer-brand .brand { color: #fff; margin-top: .8rem; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: .92rem; margin-top: .9rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.footer-col li { margin-top: .7rem; }
.footer-col a { color: rgba(255,255,255,.82); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--azure); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom .foot-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: #fff; }

/* utility */
.text-sun { color: var(--sun); }
.hr { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem, 5vw, 3.5rem); }
.pill-note { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--sea-deep); background: var(--foam); border: 1px solid var(--line); padding: .5rem .9rem; border-radius: 999px; }
[hidden] { display: none !important; }
