/* =========================================================
   Natura Garden Villas — Parga
   "A garden hideaway a short walk from the Ionian sea."
   Materials of Parga: limestone plaster, sea, olive, citrus.
   Display: Marcellus (Greek/Roman carved caps). Body: Mulish.
   Signature: arched "window" image frames.
   Hand-built, no frameworks, no build step.
   ========================================================= */

:root {
  /* Palette — Parga's own materials */
  --plaster:   #f2ece0;   /* limestone plaster — page background */
  --plaster-2: #e9dfcd;   /* deeper plaster — alternating sections */
  --surface:   #fffdf8;   /* card / light surface */
  --ink:       #26332f;   /* deep cypress — text */
  --ink-soft:  #5d655b;   /* muted text */
  --sea:       #16697c;   /* Ionian sea — primary accent */
  --sea-dk:    #0f5162;
  --sea-deep:  #0b3a45;   /* darkest sea — footer / overlays */
  --olive:     #6e7a49;   /* olive grove — secondary accent */
  --olive-dk:  #565f37;
  --citrus:    #d5883a;   /* citrus sun — warm accent */
  --clay:      #b4603a;   /* terracotta — tertiary */
  --line:      rgba(38, 51, 47, .15);
  --line-soft: rgba(38, 51, 47, .08);
  --shadow:    0 30px 70px -32px rgba(31, 40, 30, .48);
  --shadow-sm: 0 14px 34px -18px rgba(31, 40, 30, .40);

  /* per-home accent (overridden by .stay-card.* / body.home-*) */
  --accent: var(--sea);
  --accent-house: var(--clay);
  --accent-olive: #2f7d78;
  --accent-citrus: #cf6f4f;

  /* Type */
  --display: 'Marcellus', 'Hoefler Text', 'Times New Roman', Georgia, serif;
  --body:    'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --wrap: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --pill: 100px;
  --arch: 46% 46% 12px 12px / 34% 34% 8px 8px;  /* the signature */
  --header-h: 78px;
  --head-gap: clamp(2rem, 4.5vw, 3.4rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding-top: var(--header-h);
  font-family: var(--body);
  font-size: 17px; line-height: 1.72; font-weight: 400;
  color: var(--ink); background: var(--plaster);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sea-dk); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: .005em; }
p { margin: 0 0 1.1em; }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }
.section { padding: clamp(64px, 9vw, 122px) 0; }
.section--tint { background: var(--plaster-2); }
.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 1.55vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; line-height: 1.7; }
.center .lede { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--body); font-size: .73rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--olive-dk); margin: 0 0 1.05rem; display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--citrus); }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--citrus); }

h1.display { font-size: clamp(2.7rem, 6vw, 4.7rem); line-height: 1.04; }
h2.display { font-size: clamp(2.15rem, 4.4vw, 3.4rem); }

/* ---------- Arch (the signature frame) ---------- */
.arch { border-radius: var(--arch); overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; padding: 1.02em 2em; border-radius: var(--pill);
  border: 1.5px solid transparent; transition: all .22s ease; line-height: 1;
}
.btn--primary { background: var(--sea); color: #fff; }
.btn--primary:hover { background: var(--sea-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 28px -14px rgba(11,58,69,.7); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.62); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--sea-dk); border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav (always solid, light) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(242,236,224,.86); backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(242,236,224,.95); border-bottom-color: var(--line-soft); box-shadow: 0 12px 34px -24px rgba(0,0,0,.34); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: .7rem; line-height: 1; }
.brand__mark { width: 38px; height: 38px; flex: none; border-radius: 9px; }
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--display); font-size: 1.3rem; color: var(--ink); letter-spacing: .01em; }
.brand__sub { font-family: var(--body); font-size: .56rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--olive-dk); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a.nav__link { font-family: var(--body); font-size: .84rem; font-weight: 600; letter-spacing: .02em; color: var(--ink); position: relative; padding: 4px 0; }
.nav a.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--citrus); transition: width .25s ease; }
.nav a.nav__link:hover::after, .nav a.nav__link[aria-current="page"]::after { width: 100%; }

/* dropdown */
.has-dd { position: relative; }
.dd__toggle { display: inline-flex; align-items: center; gap: .4em; background: none; border: 0; color: var(--ink); font-family: var(--body); font-size: .84rem; font-weight: 600; padding: 4px 0; }
.dd__toggle .chev { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .25s ease; }
.dd__menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 9px; min-width: 236px; opacity: 0; visibility: hidden; transition: all .22s ease; border: 1px solid var(--line-soft); }
.has-dd:hover .dd__menu, .has-dd:focus-within .dd__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd__menu a { display: block; padding: .62em .9em; border-radius: 8px; color: var(--ink); font-family: var(--body); font-size: .92rem; font-weight: 600; }
.dd__menu a small { display: block; color: var(--ink-soft); font-size: .74rem; font-weight: 400; letter-spacing: 0; }
.dd__menu a:hover { background: var(--plaster-2); color: var(--sea-dk); }

/* hamburger */
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; position: relative; }
.nav-toggle span { position: absolute; left: 9px; width: 24px; height: 2px; background: var(--ink); transition: all .3s ease; }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- HERO — arched window onto the view ---------- */
.hero { position: relative; padding: clamp(28px, 5vw, 62px) 0 clamp(48px, 7vw, 90px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__text { max-width: 33ch; }
.hero__text .eyebrow { color: var(--clay); }
.hero__text .eyebrow::before { background: var(--clay); }
.hero h1 { margin-bottom: .3em; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--ink-soft); margin-bottom: 1.9rem; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero__facts { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--olive-dk); border-top: 1px solid var(--line-soft); padding-top: 1.2rem; }
.hero__facts span { display: inline-flex; align-items: center; gap: .5em; }
.hero__facts .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--citrus); }
.hero__media { position: relative; }
.hero__media .arch { box-shadow: var(--shadow); aspect-ratio: 4/5; }
.hero__media .arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .pin {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--surface); color: var(--ink); border-radius: var(--pill);
  padding: .55rem 1.1rem; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: .5em; white-space: nowrap;
}
.hero__media .pin svg { width: 15px; height: 15px; color: var(--sea); }

/* hero load motion */
.hero__text > * { opacity: 0; transform: translateY(16px); animation: heroUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__text > *:nth-child(1) { animation-delay: .05s; }
.hero__text > *:nth-child(2) { animation-delay: .15s; }
.hero__text > *:nth-child(3) { animation-delay: .25s; }
.hero__text > *:nth-child(4) { animation-delay: .35s; }
.hero__text > *:nth-child(5) { animation-delay: .45s; }
.hero__media { opacity: 0; animation: heroFade 1s ease .2s forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
@keyframes heroFade { to { opacity: 1; } }

/* ---------- PAGE HERO (interior banner) ---------- */
.page-hero { position: relative; min-height: 54vh; display: flex; align-items: flex-end; color: #fff; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,40,45,.22), rgba(9,34,40,.72)); }
.page-hero__inner { position: relative; z-index: 2; padding-bottom: clamp(36px, 5vw, 66px); }
.page-hero .eyebrow { color: #ffd9a6; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: #ffd9a6; }
.page-hero h1 { color:#fff; font-size: clamp(2.3rem, 5vw, 3.9rem); text-shadow: 0 2px 30px rgba(0,0,0,.36); }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.84); margin-top: .6rem; letter-spacing: .03em; }
.breadcrumb a { color: rgba(255,255,255,.84); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Welcome ---------- */
.welcome__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.welcome__media { position: relative; }
.welcome__media .arch { box-shadow: var(--shadow); aspect-ratio: 4/5; }
.welcome__media .arch img { width: 100%; height: 100%; object-fit: cover; }
.welcome__media .tag { position: absolute; bottom: 18px; right: -14px; background: var(--olive); color: #fff; padding: 1.1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; max-width: 190px; }
.welcome__media .tag b { font-family: var(--display); font-size: 2.1rem; display: block; line-height: 1; }
.welcome__media .tag span { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .95; }
.signature { font-family: var(--display); font-size: 1.5rem; color: var(--sea); margin-top: .5rem; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.4rem); }
.feature { text-align: center; }
.feature__icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--sea); }
.feature h4 { font-family: var(--body); font-size: .98rem; font-weight: 700; letter-spacing: .01em; margin-bottom: .35rem; }
.feature p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Accommodation cards ---------- */
.stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.1rem); }
.stay-card { --accent: var(--sea); background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; border: 1px solid var(--line-soft); }
.stay-card.house,  body.home-house  { --accent: var(--accent-house); }
.stay-card.olive,  body.home-olive  { --accent: var(--accent-olive); }
.stay-card.citrus, body.home-citrus { --accent: var(--accent-citrus); }
.stay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stay-card__media { position: relative; aspect-ratio: 3/2.15; overflow: hidden; display: block; }
.stay-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.stay-card:hover .stay-card__media img { transform: scale(1.05); }
.stay-card__badge { position: absolute; top: 15px; left: 15px; background: var(--accent); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .5em .85em; border-radius: var(--pill); }
.stay-card__body { padding: 1.6rem 1.75rem 1.85rem; display: flex; flex-direction: column; flex: 1; }
.stay-card__body h3 { font-size: 1.8rem; margin-bottom: .45rem; }
.stay-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: .95rem; }
.stay-card__meta span { display: inline-flex; align-items: center; gap: .4em; }
.stay-card__meta svg { width: 16px; height: 16px; color: var(--accent); }
.stay-card__body p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.stay-card__foot { margin-top: auto; }
.stay-card__link { font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .5em; }
.stay-card__link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.stay-card:hover .stay-card__link svg { transform: translateX(4px); }

/* ---------- Unit detail ---------- */
.unit-intro__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.spec-chips { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0 0 1.7rem; padding: 0; list-style: none; }
.spec-chips li { display: inline-flex; align-items: center; gap: .5em; background: var(--plaster-2); border-radius: var(--pill); padding: .55em 1.1em; font-size: .84rem; font-weight: 600; color: var(--ink); }
.spec-chips svg { width: 17px; height: 17px; color: var(--accent); }
.booking-card { background: var(--surface); border: 1px solid var(--line-soft); border-top: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 16px); }
.booking-card h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.booking-card p { font-size: .9rem; color: var(--ink-soft); }
.booking-card .btn { margin-bottom: .7rem; }
.booking-card .divider { height: 1px; background: var(--line-soft); margin: 1.4rem 0; }
.booking-card .contact-line { display: flex; align-items: center; gap: .6em; font-size: .92rem; margin-bottom: .6rem; color: var(--ink); }
.booking-card .contact-line svg { width: 18px; height: 18px; color: var(--sea); flex: none; }

.amenities { columns: 2; column-gap: 2.6rem; list-style: none; padding: 0; margin: 0; }
.amenities li { break-inside: avoid; padding: .55em 0 .55em 1.7em; position: relative; font-size: .95rem; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.amenities li::before { content: ""; position: absolute; left: 0; top: 1em; width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery button { padding: 0; border: 0; background: none; border-radius: var(--radius); overflow: hidden; cursor: pointer; display: block; position: relative; }
.gallery button img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; transition: transform .5s ease, filter .3s ease; }
.gallery button:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gallery button::after { content: "⤢"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; opacity: 0; background: rgba(11,40,45,.3); transition: opacity .3s ease; }
.gallery button:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(9,32,38,.95); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 22px; }
.lightbox__nav.next { right: 22px; }
.lightbox__count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .82rem; letter-spacing: .1em; }

/* ---------- Split / location ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media .arch { box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split__media .arch img { width: 100%; height: 100%; object-fit: cover; }
.poi-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .1rem; }
.poi-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .8em 0; border-bottom: 1px solid var(--line-soft); }
.poi-list .poi-name { font-weight: 600; }
.poi-list .poi-dist { color: var(--sea); font-size: .88rem; white-space: nowrap; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(rgba(11,42,50,.76), rgba(11,42,50,.76)); }
.cta-band__inner { position: relative; z-index: 2; padding: clamp(60px, 9vw, 116px) 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-methods { list-style: none; padding: 0; margin: 1.7rem 0 0; display: grid; gap: 1.15rem; }
.contact-methods li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-methods .ic { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--plaster-2); display: flex; align-items: center; justify-content: center; }
.contact-methods .ic svg { width: 20px; height: 20px; color: var(--sea); }
.contact-methods .m-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.contact-methods .m-value { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.contact-methods .m-value a { color: var(--ink); }
.contact-methods .m-value a:hover { color: var(--sea); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sea-deep); color: rgba(233,240,236,.82); padding: clamp(54px, 7vw, 84px) 0 34px; }
.site-footer a { color: rgba(233,240,236,.82); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer__brand .brand__name { color: #fff; font-size: 1.6rem; }
.footer__brand p { font-size: .92rem; margin-top: 1rem; max-width: 34ch; color: rgba(233,240,236,.72); }
.footer h5 { font-family: var(--body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 1.1rem; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer ul a { font-size: .94rem; }
.footer__bottom { padding-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(233,240,236,.56); }
.footer__bottom .sister { color: rgba(233,240,236,.72); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .hero__text > *, .hero__media { opacity: 1 !important; transform: none !important; animation: none !important; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid, .welcome__grid, .unit-intro__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero__text { max-width: none; }
  .hero__media { max-width: 440px; margin: 0 auto; }
  .booking-card { position: static; }
  .features { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
  .stays { grid-template-columns: 1fr 1fr; }
  .welcome__media { max-width: 460px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }
  .nav-toggle { display: block; z-index: 120; }
  .nav { position: fixed; inset: 0; background: var(--plaster); flex-direction: column; justify-content: center; gap: 1.5rem; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); padding: 2rem; }
  body.menu-open .nav { transform: none; }
  .nav a.nav__link, .dd__toggle { font-size: 1.06rem; }
  .nav .btn { margin-top: .4rem; }
  .has-dd { text-align: center; }
  .dd__toggle { justify-content: center; }
  .dd__menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: transparent; padding: .4rem 0 0; min-width: 0; border: 0; }
  .dd__menu a { text-align: center; padding: .4em; }
  .dd__menu a small { display: none; }
  .dd__toggle .chev { display: none; }
  .stays { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .amenities { columns: 1; }
  .welcome__media .tag { right: 0; }
}
@media (max-width: 460px) {
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Skip link (a11y) ---------- */
.skip { position: absolute; left: 14px; top: -64px; z-index: 300; background: var(--sea); color: #fff; padding: .7em 1.2em; border-radius: 8px; font-weight: 700; font-size: .85rem; transition: top .2s ease; }
.skip:focus { top: 14px; color: #fff; }

/* ---------- Explore Parga ---------- */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.7rem); }
.xcard { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.7rem 1.7rem 1.6rem; transition: transform .3s ease, box-shadow .3s ease; }
.xcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.xcard__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--plaster-2); display: flex; align-items: center; justify-content: center; color: var(--sea); margin-bottom: 1.05rem; }
.xcard__ic svg { width: 23px; height: 23px; }
.xcard h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.xcard p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.xcard .dist { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-dk); display: inline-flex; align-items: center; gap: .55em; }
.xcard .dist::before { content: ""; width: 18px; height: 2px; background: var(--citrus); }

/* ---------- FAQ (native accordion) ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-family: var(--display); font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; transition: color .2s ease; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sea); }
.faq summary .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--sea); border-radius: 2px; }
.faq summary .plus::before { top: 10px; left: 1px; right: 1px; height: 2px; }
.faq summary .plus::after { left: 10px; top: 1px; bottom: 1px; width: 2px; transition: transform .25s ease; }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq details > p { padding: 0 0 1.35rem; margin: 0; color: var(--ink-soft); font-size: .97rem; max-width: 70ch; line-height: 1.65; }

@media (max-width: 940px) { .explore-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .explore-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ---------- Shared utilities (from /simplify) ---------- */
.section-head { margin-bottom: var(--head-gap); }
.subhead { font-size: 1.6rem; margin: 2rem 0 1rem; }
.booking-card .btn--ghost { margin-top: 1rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.1rem); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.7rem; margin-bottom: .3rem; }
.form-intro { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field { display: grid; gap: .35rem; }
.field > span { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--ink-soft); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  background: var(--plaster); border: 1px solid var(--line); border-radius: 9px;
  padding: .72em .85em; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(22,105,124,.14); }
.field textarea { resize: vertical; min-height: 96px; }
.consent { display: flex; gap: .6em; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); line-height: 1.55; }
.consent input { margin-top: .15em; flex: none; width: 17px; height: 17px; accent-color: var(--sea); }
.consent a { color: var(--sea); text-decoration: underline; }
.hidden-field { position: absolute !important; left: -9999px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .3rem; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 2.2rem 0 .6rem; }
.prose h3 { font-family: var(--body); font-weight: 700; font-size: 1.1rem; margin: 1.5rem 0 .4rem; color: var(--ink); }
.prose p, .prose li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--sea); text-decoration: underline; }
.prose .updated { display: inline-block; font-size: .85rem; font-style: italic; color: var(--ink-soft); margin-bottom: 1.4rem; }

/* legal footer link */
.footer__bottom a { color: rgba(233,240,236,.72); text-decoration: underline; }
.footer__bottom a:hover { color: #fff; }

@media (max-width: 620px) { .form-row, .form-row--3 { grid-template-columns: 1fr; } }

/* ---------- Paired-apartment note ---------- */
.pair-note { display: flex; gap: .7em; align-items: flex-start; background: var(--plaster-2); border-left: 3px solid var(--accent); border-radius: 8px; padding: .85rem 1.05rem; margin: 0 0 1.6rem; font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }
.pair-note svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 1px; }

/* ---------- Blog / Parga guide ---------- */
.article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2rem); }
.article-card { background: var(--surface); border: 1px solid var(--line-soft); border-left: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 1.7rem 1.8rem 1.6rem; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.article-card.beaches { --accent: var(--sea); }
.article-card.history { --accent: var(--clay); }
.article-card.culture { --accent: var(--olive-dk); }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.article-card .cat { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .7rem; }
.article-card h2 { font-size: 1.5rem; margin-bottom: .5rem; line-height: 1.16; }
.article-card h2 a { color: var(--ink); }
.article-card h2 a:hover { color: var(--accent); }
.article-card p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.article-card .read { margin-top: auto; font-size: .77rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .45em; }
.article-card .read svg { width: 15px; height: 15px; transition: transform .25s ease; }
.article-card:hover .read svg { transform: translateX(4px); }

.article-head { max-width: 760px; margin: 0 auto; }
.article-head h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); line-height: 1.08; margin: .2rem 0 .7rem; }
.article-meta { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.article-body { max-width: 720px; margin: 2rem auto 0; }
.article-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin: 2.2rem 0 .6rem; }
.article-body h3 { font-family: var(--body); font-weight: 700; font-size: 1.1rem; margin: 1.5rem 0 .4rem; color: var(--ink); }
.article-body p, .article-body li { color: var(--ink); font-size: 1.06rem; line-height: 1.8; }
.article-body ul { padding-left: 1.25rem; margin: 0 0 1.2em; }
.article-body li { margin-bottom: .45em; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-foot { max-width: 720px; margin: 2.6rem auto 0; padding-top: 1.7rem; border-top: 1px solid var(--line-soft); }

@media (max-width: 720px) { .article-list { grid-template-columns: 1fr; } }

/* ---------- Article hero image + credit ---------- */
.article-hero { max-width: 760px; margin: 1.6rem auto 0; }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block; }
.article-hero__credit { font-size: .74rem; color: var(--ink-soft); margin-top: .6rem; text-align: right; }
.article-hero__credit a { color: var(--ink-soft); text-decoration: underline; }
.article-hero__credit a:hover { color: var(--sea); }


/* ---------- Article card media (blog index thumbnails — self-hosted, safe) ---------- */
.article-card { padding: 0; overflow: hidden; }
.article-card__media { aspect-ratio: 3/2; overflow: hidden; display: block; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__body { padding: 1.5rem 1.7rem 1.6rem; border-left: 3px solid var(--accent); }
