/* Feni & Fern — Anjuna beach kitchen
   Coastal, breezy beach-shack design language
   Fonts: Sora (display) + Work Sans (text) */

:root {
  --teal: #1E7E8C;
  --teal-deep: #14606B;
  --teal-ink: #0E3D45;
  --sand: #E6D2A8;
  --sand-soft: #F3E8CE;
  --coral: #E8825E;
  --coral-deep: #D96A45;
  --off: #F3F6F4;
  --paper: #FBFAF5;
  --ink: #23312F;
  --muted: #566662;
  --line: rgba(30, 126, 140, 0.16);
  --shadow-sm: 0 4px 14px rgba(14, 61, 69, 0.08);
  --shadow-md: 0 18px 46px rgba(14, 61, 69, 0.14);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--off);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, .wordmark {
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--teal-ink);
  font-weight: 700;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--coral);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--coral);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  color: var(--fg);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.82rem 1.5rem;
  border-radius: 100px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease);
  box-shadow: 0 8px 20px rgba(217, 106, 69, 0.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(217, 106, 69, 0.34); background: var(--coral-deep); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--teal-ink);
  border-color: var(--teal);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--teal); --fg: #fff; box-shadow: var(--shadow-sm); }

.btn--teal { --bg: var(--teal); box-shadow: 0 8px 20px rgba(30, 126, 140, 0.28); }
.btn--teal:hover { background: var(--teal-deep); box-shadow: 0 12px 26px rgba(30, 126, 140, 0.34); }

.btn--light {
  --bg: var(--off); --fg: var(--teal-ink);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { background: #fff; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover { transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 246, 244, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--teal-ink);
}
.brand__mark { flex: none; }
.wordmark {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1;
}
.wordmark em {
  font-style: normal;
  color: var(--coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--teal-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { transform: scaleX(1); }

.nav__cta { display: inline-flex; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--teal-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 0.4rem;
    padding: 1.2rem clamp(1.1rem, 4vw, 2.4rem) 1.6rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.35s var(--ease);
  }
  .nav__menu.is-open { clip-path: inset(0 0 0 0); }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
  }
  .nav__links a { display: block; padding: 0.6rem 0; font-size: 1.1rem; width: 100%; }
  .nav__cta { margin-top: 0.6rem; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  @media (prefers-reduced-motion: reduce) {
    .nav__menu { transition: none; }
  }
}
@media (min-width: 861px) {
  .nav__menu { display: flex !important; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: clamp(2rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 61, 69, 0.28) 0%, rgba(14, 61, 69, 0.08) 34%, rgba(14, 61, 69, 0.62) 88%),
    linear-gradient(90deg, rgba(20, 96, 107, 0.42) 0%, rgba(20, 96, 107, 0) 60%);
}
.hero__inner { max-width: 40rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(14, 61, 69, 0.4);
}
.hero h1 em { font-style: normal; color: var(--sand); }
.hero__lede {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta strong { color: var(--sand); font-weight: 600; }

/* ---------- Wave dividers ---------- */
.wave {
  display: block;
  width: 100%;
  height: clamp(38px, 6vw, 74px);
  margin: 0;
}
.wave svg { display: block; width: 100%; height: 100%; }
.wave--flip svg { transform: scaleX(-1); }
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(40px, 6vw, 78px);
  z-index: 0;
  pointer-events: none;
}
.hero__wave svg { display: block; width: 100%; height: 100%; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(3.4rem, 8vw, 6rem) 0; position: relative; }
.section--sand { background: var(--sand-soft); }
.section--paper { background: var(--paper); }
.section-head { max-width: 42rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 0.7rem;
}
.section h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.section-head p { color: var(--muted); font-size: clamp(1rem, 2vw, 1.12rem); }

/* ---------- Story ---------- */
.story__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .story__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story__media img { width: 100%; aspect-ratio: 1200 / 760; object-fit: cover; }
.story__media figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(14, 61, 69, 0.78);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
}
.story__body p { color: var(--muted); font-size: 1.06rem; }
.story__body p.lead { color: var(--ink); font-size: clamp(1.14rem, 2.4vw, 1.34rem); font-family: "Sora", sans-serif; font-weight: 500; line-height: 1.4; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.pill {
  background: var(--off);
  border: 1px solid var(--line);
  color: var(--teal-ink);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
}

/* ---------- Menu ---------- */
.menu__columns {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .menu__columns { grid-template-columns: 1fr 1fr; } }

.menu__group h3 {
  font-size: 1.16rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px dotted var(--line);
}
.menu__group h3 .tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
  background: rgba(232, 130, 94, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}
.dish { margin-bottom: 1.15rem; }
.dish__head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Sora", sans-serif;
}
.dish__name { font-weight: 600; color: var(--teal-ink); font-size: 1.04rem; }
.dish__dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-4px);
  min-width: 12px;
}
.dish__price { font-weight: 600; color: var(--coral-deep); white-space: nowrap; font-size: 1.02rem; }
.dish__desc { color: var(--muted); font-size: 0.94rem; margin: 0.2rem 0 0; }
.dish__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.05rem 0.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.menu__note {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ---------- Coolers & Feni (teal signature block) ---------- */
.coolers {
  background: var(--teal);
  color: #eaf6f6;
  position: relative;
}
.coolers h2 { color: #fff; }
.coolers .kicker { color: var(--sand); }
.coolers .section-head p { color: rgba(234, 246, 246, 0.86); }
.coolers__grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .coolers__grid { grid-template-columns: 1fr 1fr 0.9fr; }
}
.drink-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.7rem);
  backdrop-filter: blur(2px);
}
.drink-card h3 {
  color: var(--sand);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.drink {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.drink:last-child { border-bottom: 0; }
.drink__name { font-family: "Sora", sans-serif; font-weight: 500; color: #fff; }
.drink__desc { display: block; font-size: 0.85rem; color: rgba(234, 246, 246, 0.72); margin-top: 0.15rem; }
.drink__dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.3); transform: translateY(-3px); min-width: 10px; }
.drink__price { font-weight: 600; color: var(--coral); white-space: nowrap; }
.coolers__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.coolers__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.sunset-band {
  margin-top: 1.2rem;
  background: var(--coral);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}
.sunset-band strong { font-family: "Sora", sans-serif; display: block; letter-spacing: 0.02em; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery img {
  width: 100%; height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure.span-2 { grid-column: span 2; }
.gallery img.wide { aspect-ratio: 2 / 1; }
@media (prefers-reduced-motion: reduce) {
  .gallery figure:hover img { transform: none; }
}

/* ---------- Founder ---------- */
.founder__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .founder__grid { grid-template-columns: 0.85fr 1.15fr; } }
.founder__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.founder__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.founder blockquote {
  margin: 0 0 1.3rem;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.35;
  color: var(--teal-ink);
}
.founder blockquote::before { content: "“"; color: var(--coral); }
.founder__name { font-family: "Sora", sans-serif; font-weight: 600; color: var(--teal); }
.founder__role { color: var(--muted); font-size: 0.95rem; }
.founder__cred { color: var(--muted); margin-top: 0.9rem; }

/* ---------- Testimonials ---------- */
.tcards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .tcards { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tcard__stars { color: var(--coral); letter-spacing: 2px; margin-bottom: 0.7rem; font-size: 0.95rem; }
.tcard p { color: var(--ink); font-size: 1rem; }
.tcard footer { margin-top: auto; padding-top: 0.9rem; }
.tcard__who { font-family: "Sora", sans-serif; font-weight: 600; color: var(--teal-ink); }
.tcard__where { color: var(--muted); font-size: 0.88rem; }

/* ---------- Visit + Form ---------- */
.visit__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) { .visit__grid { grid-template-columns: 0.95fr 1.05fr; } }

.visit__info dt {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.3rem;
}
.visit__info dt:first-child { margin-top: 0; }
.visit__info dd { margin: 0.3rem 0 0; color: var(--ink); font-size: 1.04rem; }
.visit__info dd a { color: var(--teal-ink); }
.visit__contactbtns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.98rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--muted); }
.hours-list .hrs { font-weight: 500; color: var(--teal-ink); }
.hours-list .closed { color: var(--coral-deep); font-style: italic; }

/* Form card */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.form-card > p.form-sub { color: var(--muted); margin-bottom: 1.4rem; font-size: 0.98rem; }
.field { margin-bottom: 1.05rem; }
.field-row { display: grid; gap: 1.05rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--teal-ink);
  margin-bottom: 0.4rem;
}
.field label .req { color: var(--coral-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 126, 140, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa8a4; }
.form-actions { margin-top: 0.4rem; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-reassure {
  margin: 0.9rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.4rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.form-divider::before, .form-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.quick-contact { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.quick-contact .btn { flex: 1 1 160px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-deep);
  color: rgba(234, 246, 246, 0.86);
  padding: clamp(2.6rem, 6vw, 4rem) 0 2rem;
}
.footer__top {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .wordmark { color: #fff; font-size: 1.4rem; }
.footer__brand p { color: rgba(234, 246, 246, 0.78); max-width: 26rem; margin-top: 0.6rem; }
.footer h4 {
  color: var(--sand);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__links a { color: rgba(234, 246, 246, 0.86); text-decoration: none; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.social { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  color: #fff;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.social a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer__bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}
.footer__bottom a { color: var(--sand); }
.footer__credit { color: rgba(234, 246, 246, 0.72); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Thank you page ---------- */
.thanks {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.thanks__inner { max-width: 34rem; }
.thanks .badge {
  width: 76px; height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(30, 126, 140, 0.12);
  display: grid; place-items: center;
  color: var(--teal);
}
.thanks h1 { font-size: clamp(2rem, 6vw, 3rem); }
.thanks p { color: var(--muted); font-size: 1.08rem; }
.thanks__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }

/* ---------- Page hero (contact) ---------- */
.page-hero {
  background: var(--teal);
  color: #fff;
  padding: clamp(2.6rem, 7vw, 4.6rem) 0 clamp(2rem, 5vw, 3rem);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 38rem; font-size: 1.08rem; }
.page-hero .kicker { color: var(--sand); }
