/* ========================================================
   GS Vibes — design tokens
   ======================================================== */
:root {
  --coral: #e08a76;
  --coral-deep: #c5654c;
  --cream: #f7f1ea;
  --cream-dark: #efe5d8;
  --ink: #1f2a2e;
  --ink-soft: #4a5559;
  --aegean: #2c6e7f;
  --aegean-deep: #1a4a57;
  --gold: #c9a86a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(31, 42, 46, 0.06);
  --shadow-md: 0 8px 28px rgba(31, 42, 46, 0.10);
  --shadow-lg: 0 20px 60px rgba(31, 42, 46, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ========================================================
   Base
   ======================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aegean); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral-deep); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 600;
  margin: 0 0 .8em;
}

/* ========================================================
   Buttons
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--block { width: 100%; }

/* ========================================================
   Navigation
   ======================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  padding-top: calc(1rem + env(safe-area-inset-top));
  background: rgba(247, 241, 234, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(31, 42, 46, .06);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__brand img { height: 45px; width: auto; }
.nav__brand span { display: none; }   /* logo speaks for itself; text would be redundant */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: .55rem 1.2rem;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--coral-deep); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ========================================================
   Hero
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/photos/01.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(105%);
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.hero:hover .hero__bg { transform: scale(1.08); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 30, 35, .25) 0%,
    rgba(20, 30, 35, .55) 60%,
    rgba(20, 30, 35, .7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--white);
  width: 100%;
}
.hero__eyebrow {
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.hero__subhead {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, .9);
  margin: -.6rem 0 1.2rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .25);
}
.hero__lede {
  max-width: 38rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__cta .btn--primary {
  background: var(--coral);
}
.hero__cta .btn--primary:hover { background: var(--coral-deep); }
.hero__cta .btn--ghost {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}
.hero__cta .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
}
.hero__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding-top: 1.5rem;
  max-width: 38rem;
}
.hero__facts li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
}
.hero__facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .2rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, .8);
  font-size: 1.5rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ========================================================
   Section layout
   ======================================================== */
.section {
  padding: 6rem 2rem;
}
.section--about { background: var(--white); }
.section--gallery { background: var(--cream); }
.section--amenities { background: var(--white); }
.section--book {
  background: var(--cream-dark);
  background-image: radial-gradient(ellipse at top, rgba(224, 138, 118, .08), transparent 60%);
}
.section--location { background: var(--white); }
.section--rules { background: var(--cream); }
.section--contact {
  background: var(--ink);
  color: var(--white);
}
.section--contact h2 { color: var(--white); }
.section--contact .eyebrow { color: var(--coral); }
.section--contact p { color: rgba(255, 255, 255, .8); }

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section__inner--split-reverse > *:first-child { order: 2; }
.section__head { margin-bottom: 3rem; max-width: 38rem; }
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ========================================================
   About
   ======================================================== */
.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 42, 46, .12);
  font-size: .95rem;
}
.about__signature span {
  display: block;
  color: var(--ink-soft);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.about__signature strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ========================================================
   Slideshow (replaces gallery grid)
   ======================================================== */
.slideshow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
}
.slideshow__stage {
  position: absolute;
  inset: 0;
}
.slideshow__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.slideshow__img.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  z-index: 2;
}
.slideshow:hover .slideshow__nav { opacity: 1; }
.slideshow__nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.slideshow__nav--prev { left: 1rem; }
.slideshow__nav--next { right: 1rem; }
.slideshow__nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
.slideshow__play {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
  z-index: 2;
}
.slideshow:hover .slideshow__play { opacity: 1; }
.slideshow__play:hover { background: rgba(0, 0, 0, .65); }
.slideshow__play .slideshow__icon-play { display: none; }
.slideshow__play[data-state="paused"] .slideshow__icon-pause { display: none; }
.slideshow__play[data-state="paused"] .slideshow__icon-play { display: inline; }
.slideshow__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 999px;
  letter-spacing: .04em;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}
.slideshow__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  z-index: 2;
}
.slideshow__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--coral);
  transition: width .15s linear;
}

@media (max-width: 720px) {
  .slideshow { aspect-ratio: 4/3; border-radius: var(--radius-sm); }
  .slideshow__nav { opacity: 1; width: 38px; height: 38px; }
  .slideshow__play { opacity: 1; }
  .slideshow__nav--prev { left: .5rem; }
  .slideshow__nav--next { right: .5rem; }
}

/* ========================================================
   Gallery (legacy, kept for older inline thumbnails — unused on home)
   ======================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  display: block;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__more {
  text-align: center;
  margin-top: 2rem;
  font-size: .98rem;
}
.gallery__more a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
}

/* ========================================================
   Amenities
   ======================================================== */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.amenity {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.amenity:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.amenity__icon {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: .8rem;
}
.amenity h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 .2rem;
}
.amenity p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

/* ========================================================
   Book widget
   ======================================================== */
.book__widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book__widget > [data-room2let-listing] {
  width: 100%;
  display: flex;
  justify-content: center;
}
.book__widget > [data-room2let-listing] > *,
.book__widget > [data-room2let-listing] iframe {
  max-width: 380px;
  min-width: 0;
  width: 100%;
}
#room2let-widget {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 600px;
  background: var(--cream);
}
#room2let-widget iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}
.book__fallback {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 42, 46, .08);
}
.book__fallback p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 1rem;
}
.book__fallback .btn { margin: 0 .3rem .5rem; }

/* ========================================================
   Location
   ======================================================== */
.location__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.location__list li {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(31, 42, 46, .08);
  font-size: 1rem;
}
.location__list strong {
  font-family: var(--serif);
  color: var(--coral-deep);
  font-size: 1.1rem;
  margin-right: .5rem;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.location__map-link {
  margin: .8rem 0 0;
  text-align: right;
  font-size: .88rem;
}
.location__map-link a {
  color: var(--ink-soft);
  font-weight: 600;
}
.location__map-link a:hover { color: var(--coral-deep); }

/* ========================================================
   Rules
   ======================================================== */
.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rule {
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.rule span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aegean);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
}
.rule--no span { background: var(--coral-deep); }
.rules__cancel {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ========================================================
   Contact
   ======================================================== */
.contact__channels {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.contact__channels li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact__channels li:last-child { border-bottom: none; }
.contact__label {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.contact__channels a, .contact__channels span {
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--serif);
}
.contact__channels a:hover { color: var(--coral); }

.contact__form {
  background: var(--white);
  color: var(--ink);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .4rem;
  font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
.field textarea { resize: vertical; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr 100px;
  gap: 1rem;
}
.contact__status {
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
}
.contact__status--ok {
  background: #e8f4ed;
  color: #1f6b40;
}
.contact__status--err {
  background: #fbe8e3;
  color: #a3382a;
}

/* ========================================================
   Footer
   ======================================================== */
.footer {
  background: #14191c;
  color: rgba(255, 255, 255, .75);
  padding: 4rem 2rem 1.5rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand img {
  height: 45px;
  margin-bottom: 1rem;
  /* Recolour the logo to pure white on the dark footer.
     brightness(0) turns every visible pixel black, then invert(1)
     flips that to pure white — perfect "white lines on black". */
  filter: brightness(0) invert(1);
  background: transparent;
}

/* Nav logo sits on cream — keep its original colour but make sure
   there's no opaque background rendered behind a transparent PNG. */
.nav__brand img {
  background: transparent;
}
.footer__brand p {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .9);
  max-width: 16rem;
}
.footer__col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  padding: .25rem 0;
}
.footer__col a:hover { color: var(--coral); }
.footer__licence {
  margin-top: .8rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}
.footer__legal {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}
.footer__legal a { color: rgba(255, 255, 255, .65); }

/* ========================================================
   WhatsApp FAB
   ======================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* ========================================================
   Plan-your-trip cards
   ======================================================== */
.section--plan { background: var(--white); }
.plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.plan__card {
  display: block;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem;
  color: var(--ink);
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
  color: var(--ink);
}
.plan__card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 .6rem;
}
.plan__card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.plan__card span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--coral-deep);
  letter-spacing: .02em;
}

/* ========================================================
   FAQ accordion
   ======================================================== */
.section--faq { background: var(--cream); }
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  padding-right: 3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--coral-deep);
  font-weight: 400;
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 1.4rem 1.2rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ========================================================
   Article pages (travel-info/*.html)
   ======================================================== */
.article-hero {
  margin-top: 60px;          /* clear fixed nav */
  padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 138, 118, .15) 0%, transparent 70%);
}
.article-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.article-hero .eyebrow { color: var(--coral-deep); }
.article-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
}
.article-hero p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 38rem;
  line-height: 1.6;
}
.breadcrumbs {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--coral-deep); }
.breadcrumbs span { margin: 0 .4rem; opacity: .6; }

.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background: var(--white);
}
.article h2 {
  font-size: 1.7rem;
  margin: 3rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}
.article h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 2rem 0 .8rem;
  font-weight: 600;
}
.article p, .article li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.article ul, .article ol {
  padding-left: 1.4rem;
  margin: 0 0 1.4rem;
}
.article li { margin-bottom: .5rem; }
.article blockquote {
  border-left: 3px solid var(--coral);
  margin: 1.5rem 0;
  padding: .5rem 0 .5rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-style: italic;
}
.article a {
  color: var(--aegean);
  border-bottom: 1px solid rgba(44, 110, 127, .3);
}
.article a:hover {
  color: var(--coral-deep);
  border-color: var(--coral-deep);
}
.article__back {
  display: inline-block;
  margin: 3rem 0 0;
  font-weight: 600;
  font-size: .92rem;
}
.article-nav {
  background: var(--cream);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(31, 42, 46, .08);
}
.article-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.article-nav h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}
.article-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.article-nav__grid .plan__card { background: var(--white); }

/* Article hub (travel-info/index.html) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.hub-grid .plan__card {
  background: var(--white);
  padding: 2.2rem;
}
.hub-grid .plan__card h3 { font-size: 1.6rem; }

/* ========================================================
   Guest manual (instructions/index.html)
   ======================================================== */
.manual-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, .6);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  color: var(--ink);
}

.toc {
  background: var(--cream);
  border-top: 1px solid rgba(31, 42, 46, .06);
  border-bottom: 1px solid rgba(31, 42, 46, .06);
}
.toc__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
}
.toc__title {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 .9rem;
  font-weight: 600;
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem 1.5rem;
  counter-reset: tocstep;
}
.toc__list li {
  counter-increment: tocstep;
}
.toc__list a {
  display: block;
  padding: .35rem 0;
  font-size: .94rem;
  color: var(--ink);
  border: none;
}
.toc__list a::before {
  content: counter(tocstep) ".";
  display: inline-block;
  width: 1.6rem;
  color: var(--coral-deep);
  font-weight: 700;
}
.toc__list a:hover { color: var(--coral-deep); }

.article--manual { max-width: 780px; }
.article--manual h2 {
  margin-top: 4rem;
  font-size: 1.85rem;
  border-bottom: none;
  display: block;
  padding-bottom: 0;
}
.article--manual h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--coral);
  margin-bottom: 1rem;
  border-radius: 2px;
}
.article--manual h3 {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.example {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  margin: 1rem 0 1.5rem;
  font-size: .98rem;
  border-left: 3px solid var(--aegean);
}
.example code {
  background: var(--white);
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .92em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--aegean-deep);
  font-weight: 600;
}

.callout {
  margin: 1.6rem 0;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: .98rem;
  line-height: 1.6;
}
.callout strong { display: inline-block; margin-right: .2rem; }
.callout--info {
  background: #eef4f7;
  border-left: 4px solid var(--aegean);
  color: var(--ink);
}
.callout--ok {
  background: #ecf3ed;
  border-left: 4px solid #4a8b5c;
  color: var(--ink);
}
.callout--warn {
  background: #fbe9e2;
  border-left: 4px solid var(--coral-deep);
  color: var(--ink);
}

.steps {
  list-style: none;
  counter-reset: stepcount;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.steps li {
  counter-increment: stepcount;
  position: relative;
  padding: .2rem 0 .8rem 2.6rem;
  line-height: 1.65;
}
.steps li::before {
  content: counter(stepcount);
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.rules-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.6rem;
  line-height: 1.65;
}
.rules-list li::before {
  content: "•";
  position: absolute;
  left: .4rem;
  color: var(--coral);
  font-size: 1.4rem;
  line-height: 1;
  top: .3rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.rules-col {
  padding: 1.6rem 1.6rem 1.2rem;
  border-radius: var(--radius);
  background: var(--cream);
}
.rules-col h3 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 700;
}
.rules-col--no h3 { color: var(--coral-deep); }
.rules-col--yes h3 { color: var(--aegean-deep); }
.rules-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rules-col li {
  padding: .4rem 0 .4rem 1.6rem;
  position: relative;
  font-size: .95rem;
  line-height: 1.55;
}
.rules-col--no li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--coral-deep);
  font-weight: 700;
}
.rules-col--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aegean-deep);
  font-weight: 700;
}

.manual-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 42, 46, .1);
  font-size: .98rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Reference photos in the manual — float-right thumbnails on desktop,
   stacked above text on mobile. The article column is 780 px wide; we
   keep figures ~260 px so text always gets ~480 px. */
.fig {
  float: right;
  width: 260px;
  margin: .2rem 0 1.2rem 1.6rem;
  padding: 0;
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fig img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
}
.fig figcaption {
  padding: .6rem .9rem .7rem;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  font-family: var(--sans);
  letter-spacing: .01em;
}
.fig figcaption code {
  background: var(--white);
  padding: 0 .3rem;
  border-radius: 3px;
  font-size: .9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--aegean-deep);
}

/* Pair: two images side-by-side inside one figure (e.g. the garage) */
.fig--pair {
  width: 320px;
}
.fig--pair img {
  width: 50%;
  float: left;
}
.fig--pair figcaption {
  clear: both;
}

/* Clear floats so the next <h2> starts on its own line and the section
   divider above it doesn't get pushed sideways by a tall figure. */
.article--manual h2 {
  clear: both;
}

@media (max-width: 720px) {
  .fig,
  .fig--pair {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 1rem auto 1.4rem;
  }
}

/* ========================================================
   Responsive
   ======================================================== */
@media (max-width: 960px) {
  .nav { padding: .8rem 1.2rem; padding-top: calc(.8rem + env(safe-area-inset-top)); }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: calc(5rem + env(safe-area-inset-top)) 2rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(31, 42, 46, .08);
    transform: translateY(-100%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 4rem 1.2rem; }
  .section__inner--split,
  .section__inner--split-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section__inner--split-reverse > *:first-child { order: 0; }

  .hero { padding: 5rem 1.2rem 3rem; min-height: 90vh; }
  .hero__facts { gap: 1.5rem; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
  .gallery__item--lg { grid-column: span 2; }

  .amenities { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr 1fr; }
  .field--row > div:last-child { grid-column: span 2; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__legal { flex-direction: column; gap: .5rem; text-align: center; }

  .contact__form { padding: 1.8rem; }

  .plan,
  .article-nav__grid,
  .hub-grid,
  .toc__list,
  .rules-grid { grid-template-columns: 1fr; }
  .article { padding: 2.5rem 1.2rem; }
  .article-hero { padding: 3.5rem 1.2rem 2.5rem; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero__facts { gap: 1.2rem; }
  .hero__facts li { font-size: .82rem; }
  .hero__facts strong { font-size: 1.4rem; }
  .amenities { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
