/* ============================================
   Rhodes with Kids — v2 "Aegean Summer"
   Vibrant, warm, easy to scan. Mobile-first.
   ============================================ */

:root {
  --sea: #1E7E74;         /* retro teal — headings */
  --sea-deep: #0F4F49;    /* footer, dark panels */
  --aqua: #3AA99A;        /* faded lagoon */
  --aqua-soft: #E6F1EC;
  --sky: #FAE9C8;         /* hero: warm 60s poster sky */
  --sand: #FAF0DC;        /* aged paper cream */
  --card: #FFFDF6;
  --sun: #F2A03D;         /* mustard-orange CTAs */
  --sun-deep: #D97F1F;
  --coral: #E15A3C;       /* burnt orange warnings */
  --coral-soft: #FAE7DC;
  --mint: #A4B86A;        /* olive accent */
  --ink: #3B2F23;         /* warm brown ink */
  --ink-soft: #7A6A55;
  --line: #EBDCBB;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(59, 47, 35, 0.10);
  --maxw: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--sea);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a { color: var(--sea); text-decoration-color: var(--aqua); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1020px; margin: 0 auto; padding: 0 20px; }

/* ---------- header / nav ---------- */
header.site {
  background: rgba(250, 240, 220, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1020px; margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800; font-size: 1.18rem; color: var(--sea);
  text-decoration: none; display: flex; align-items: center; gap: 9px;
}
.logo .sun-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F7C36B, var(--sun) 60%, var(--sun-deep));
  box-shadow: 0 0 0 3px rgba(242, 160, 61, 0.3);
  display: inline-block; flex: none;
}
.nav-links { display: flex; gap: 18px; font-size: 0.95rem; }
.nav-links a { text-decoration: none; font-weight: 800; color: var(--sea); }
.nav-links a:hover { color: var(--coral); }
@media (max-width: 560px) { .nav-links { gap: 12px; font-size: 0.88rem; } }

/* ---------- hero: sky → sea, with wave ---------- */
.hero {
  background:
    radial-gradient(circle at 82% 16%, #F7C36B 0%, #F2A03D 5.5%, rgba(242,160,61,0.4) 7%, transparent 11%),
    repeating-conic-gradient(from 0deg at 82% 16%, rgba(226,138,58,0.12) 0deg 7deg, rgba(250,233,200,0) 7deg 14deg),
    linear-gradient(180deg, var(--sky) 0%, #F3D9A8 55%, #8FC4B4 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.1rem, 6.5vw, 3.4rem);
  font-weight: 900;
  max-width: 640px;
  color: #4A3A28;
}
.hero h1 em { font-style: italic; color: var(--coral); }
.hero p.lead {
  margin-top: 16px; font-size: 1.18rem; color: #5E4A32; max-width: 560px; font-weight: 500;
}
.hero .wave { display: block; width: 100%; height: 64px; margin-top: 26px; position: relative; z-index: 1; }

/* signature: on-the-ground verification stamp */
.stamp {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  border: 2px dashed var(--sea);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.86rem; font-weight: 800; color: var(--sea);
  transform: rotate(-1.5deg);
  background: rgba(255,255,255,0.85);
}
.stamp .tick { color: var(--sun-deep); }

/* quick-answer chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chips a {
  background: #FFFFFF;
  border-radius: 999px; padding: 11px 18px;
  font-size: 0.94rem; font-weight: 800; text-decoration: none; color: var(--sea);
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.chips a:hover { transform: translateY(-2px); color: var(--coral); }

/* ---------- sections ---------- */
section.block { padding: 48px 0; }
section.block h2 { font-size: 1.7rem; margin-bottom: 8px; }
.section-kicker {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.75rem; font-weight: 800; color: var(--coral); margin-bottom: 10px;
}

/* article cards — color-coded, playful */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 680px) { .card-grid { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none; display: block;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--aqua);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:nth-child(2) { border-top-color: var(--sun); }
.card:nth-child(3) { border-top-color: var(--coral); }
.card:nth-child(4) { border-top-color: var(--mint); }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(14, 92, 138, 0.16); }
.card .icon { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }
.card .soon {
  display: inline-block; margin-top: 12px; font-size: 0.74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
  background: var(--aqua); border-radius: 999px; padding: 4px 12px;
}

/* ---------- article pages ---------- */
article.post { padding: 44px 0 20px; }
article.post h1 { font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 800; }
.post-meta {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  color: var(--ink-soft); font-size: 0.9rem;
}
article.post h2 { font-size: 1.45rem; margin: 42px 0 12px; }
article.post h3 { font-size: 1.15rem; margin: 26px 0 8px; }
article.post p { margin: 14px 0; }
article.post ul, article.post ol { margin: 14px 0 14px 22px; }
article.post li { margin: 6px 0; }

/* verdict panel */
.verdict {
  background: var(--aqua-soft); border-left: 6px solid var(--aqua);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px; margin: 24px 0;
  box-shadow: var(--shadow);
}
.verdict strong { color: var(--sea); }

/* signature: honest warning */
.warning {
  background: var(--coral-soft); border-left: 6px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
}
.warning .w-label {
  display: block; font-weight: 800; color: var(--coral);
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 4px;
}

/* comparison table */
.table-scroll { overflow-x: auto; margin: 22px 0; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
table.compare {
  border-collapse: collapse; width: 100%; min-width: 640px;
  background: var(--card);
  font-size: 0.93rem;
}
table.compare th {
  background: linear-gradient(90deg, var(--sea-deep), var(--sea));
  color: #fff; text-align: left;
  padding: 13px 14px; font-family: 'Fraunces', Georgia, serif; font-weight: 700;
}
table.compare td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare tr:nth-child(even) td { background: #F7EEDA; }
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 800; color: var(--sea); white-space: nowrap; }

/* FAQ */
.faq details {
  background: var(--card); border-radius: var(--radius);
  padding: 15px 18px; margin: 12px 0;
  box-shadow: var(--shadow);
}
.faq summary {
  font-weight: 800; color: var(--sea); cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
}
.faq details[open] summary { color: var(--coral); }
.faq details p { margin-top: 10px; }

/* ---------- CTAs ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea) 60%, #4FA08F 130%);
  color: #EFF8FA; border-radius: var(--radius);
  padding: 30px 24px; margin: 40px 0; text-align: center;
  box-shadow: var(--shadow);
}
.cta-box h2, .cta-box h3 { color: #fff; margin: 0 0 8px; font-size: 1.4rem; }
.cta-box p { color: #D6EAE2; margin: 0 0 18px; }
.btn {
  display: inline-block; background: var(--sun); color: #3B2F23;
  border: 2px solid #3B2F23;
  font-weight: 800; text-decoration: none;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  font-size: 1.02rem; font-family: 'Karla', sans-serif;
  box-shadow: 3px 3px 0 #3B2F23;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #F7B45C; transform: translate(-1px,-1px); color: #3B2F23; box-shadow: 4px 4px 0 #3B2F23; }

/* email form */
.email-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.email-form input[type="email"] {
  flex: 1 1 220px; max-width: 320px;
  padding: 13px 18px; border-radius: 999px; border: none;
  font-size: 1rem; font-family: 'Karla', sans-serif;
}

/* ---------- footer ---------- */
footer.site {
  background: var(--sea-deep); color: #A9CDC2;
  padding: 40px 0; margin-top: 48px; font-size: 0.9rem;
  border-top: 6px solid var(--sun);
}
footer.site a { color: #E4F2E9; }
footer.site .wrap { display: flex; flex-direction: column; gap: 8px; }

/* affiliate disclosure line */
.disclosure { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin: 24px 0; }

/* ---------- map links ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--aqua-soft); color: var(--sea);
  font-size: 0.82rem; font-weight: 800; text-decoration: none;
  padding: 6px 14px; border-radius: 999px; margin: 2px 0 10px;
  transition: background .15s ease, transform .15s ease;
}
.map-link:hover { background: #CDEFF1; transform: translateY(-1px); color: var(--sea); }

/* ---------- photos ---------- */
figure.photo { margin: 22px 0; }
figure.photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
figure.photo figcaption {
  font-size: 0.82rem; color: var(--ink-soft); font-style: italic;
  margin-top: 8px; text-align: center;
}

/* ---------- embedded maps ---------- */
.map-embed {
  width: 100%; height: 340px; border: 0;
  border-radius: var(--radius); box-shadow: var(--shadow);
  margin: 22px 0; display: block;
}

/* ---------- quick links strip ---------- */
.quick-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.quick {
  flex: 1 1 150px; min-width: 140px;
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); border-bottom: 4px solid var(--sun);
  padding: 16px 14px; text-align: center; text-decoration: none;
  transition: transform .15s ease;
}
.quick:hover { transform: translateY(-3px); }
.quick .q-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.quick .q-label { font-family: 'Fraunces', Georgia, serif; font-weight: 700; color: var(--sea); font-size: 0.98rem; line-height: 1.25; display: block; }
.quick .q-sub { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-top: 3px; }

/* ---------- language switcher ---------- */
details.lang { position: relative; }
details.lang summary {
  list-style: none; cursor: pointer; font-size: 1.25rem;
  line-height: 1; padding: 4px 6px; border-radius: 8px;
}
details.lang summary::-webkit-details-marker { display: none; }
details.lang summary:hover { background: rgba(30,126,116,0.1); }
details.lang[open] summary { background: rgba(30,126,116,0.12); }
.lang-menu {
  position: absolute; right: 0; top: 120%;
  background: var(--card); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; min-width: 130px; z-index: 100;
}
.lang-menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  text-decoration: none; font-weight: 800; color: var(--sea); font-size: 0.95rem;
}
.lang-menu a:hover { background: var(--aqua-soft); color: var(--sea); }

/* ---------- featured / sponsored listings ---------- */
.card.featured {
  border-top-color: var(--sun) !important;
  position: relative;
  box-shadow: 0 8px 28px rgba(242,160,61,0.22);
}
.featured-badge {
  position: absolute; top: -1px; right: 16px;
  background: var(--sun); color: var(--sea-deep);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}
.rest-card.featured {
  border-top-color: var(--sun) !important;
  box-shadow: 0 8px 28px rgba(242,160,61,0.22);
  position: relative;
}

/* advertise link */
.advertise-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 800; color: var(--ink-soft);
  text-decoration: none; padding: 6px 0; margin-top: 6px;
  border-top: 1px solid var(--line); width: 100%;
}
.advertise-link:hover { color: var(--sea); }

/* partner page */
.partner-grid { display:grid; grid-template-columns:1fr; gap:16px; margin:24px 0; }
@media(min-width:600px){ .partner-grid { grid-template-columns:1fr 1fr; } }
.partner-option {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; border-top: 5px solid var(--aqua);
}
.partner-option:nth-child(2){ border-top-color: var(--sun); }
.partner-option:nth-child(3){ border-top-color: var(--mint); }
.partner-option:nth-child(4){ border-top-color: var(--coral); }
.partner-option h3 { font-size:1.1rem; margin-bottom:6px; }
.price-tag {
  display:inline-block; background: var(--aqua-soft); color: var(--sea);
  font-weight:800; font-size:1.1rem; padding:6px 14px;
  border-radius:999px; margin:10px 0;
}
