/* --------------------------------------------------------------------------
   Typefaces. Self-hosted rather than loaded from Google: it keeps the Content
   Security Policy at font-src 'self', avoids a third-party connection on every
   page view, and removes a render-blocking request to another origin.

   Both are variable fonts, so one file covers every weight the site uses.
   font-display: swap means text paints immediately in the fallback and swaps
   when the webfont arrives — never a blank page waiting on a font.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/InstrumentSerif.woff2") format("woff2");
  /* Regular only — this family has no bold cut. Declaring the range as 400 stops the
     browser synthesising a fake bold, which smears a high-contrast serif badly. */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Ymoon Resorts — public stylesheet
   One hand-written file, no framework. The site it replaces loaded 33
   render-blocking stylesheets; keeping this small and single is most of why
   the new build can hit its Core Web Vitals targets.
   ========================================================================== */

:root {
  --green-900: #12261b;
  --green-800: #1d3b2a;
  --green-700: #2b5540;
  --green-600: #3d7256;
  --green-100: #e7f0e9;
  --gold:      #c2954a;
  --gold-dark: #a97c33;
  /* Small bold gold text needs its own darker value: --gold-dark measures only 3.50:1 on
     the cream background, under the 4.5:1 minimum. This one is 5.32:1 on cream. */
  --gold-text: #856022;
  --cream:     #faf7f1;
  --sand:      #f0e9dd;
  --ink:       #22201c;
  --ink-soft:  #5c574f;
  --line:      #e0d9cc;
  --white:     #fff;

  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(18, 38, 27, .10);
  --shadow-lg: 0 20px 50px rgba(18, 38, 27, .16);

  /* Fallbacks are chosen for similar metrics, so the swap when the webfont lands
     shifts the layout as little as possible. */
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

/* Instrument Serif is a high-contrast display face: it carries the big moments (h1, h2)
   at its single regular weight, sized up a little because it runs light. Small headings
   drop to DM Sans semibold, where a delicate serif would only lose legibility.
   DM Sans is shipped without its optical-size axis — that halved the file, 61.3 KB to
   36.1 KB, for a refinement almost nobody would notice. */
h1, h2, h3, h4 { line-height: 1.15; color: var(--green-900); margin: 0 0 .5em; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h3, h4 { font-family: var(--sans); font-weight: 600; letter-spacing: -.005em; }
h1 { font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.75rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); line-height: 1.35; }
p  { margin: 0 0 1.1em; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-800); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-block; padding: .8rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-book, .btn-primary { background: var(--gold); color: #1a1408; border-color: var(--gold); }
.btn-book:hover, .btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--green-600); }
.btn-ghost:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(3px); }
.btn-light:hover { background: #fff; color: var(--green-900); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; flex-direction: column; text-decoration: none; margin-right: auto; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; color: var(--green-900); letter-spacing: .01em; }
.brand-sub { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

.primary-nav ul { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  text-decoration: none; color: var(--ink); font-size: .93rem; font-weight: 500;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--green-700); border-bottom-color: var(--gold); }
.primary-nav a.is-active { color: var(--green-800); border-bottom-color: var(--gold); font-weight: 600; }

.nav-toggle { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; order: 3; }
  .header-cta { display: none; }
  .primary-nav {
    order: 4; flex-basis: 100%; display: none;
    border-top: 1px solid var(--line); padding: .5rem 0 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { display: block; padding: .75rem .2rem; border-bottom: 1px solid var(--line); }
}

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: clamp(430px, 62vh, 640px); display: grid; place-items: center; overflow: hidden; background: var(--green-800); }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,22,15,.30) 0%, rgba(9,22,15,.62) 100%); }
.hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding: 4rem 0; }
.hero-inner h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; margin-bottom: 1rem; color: var(--sand); }
.hero-lead { font-size: 1.1rem; max-width: 62ch; margin-inline: auto; color: rgba(255,255,255,.94); }
.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------------------------------------------------------------- page head */
.page-head { background: var(--green-800); color: #fff; padding: 3.2rem 0 2.6rem; text-align: center; }
.page-head h1 { color: #fff; margin-bottom: .35rem; }
.page-head p { color: rgba(255,255,255,.88); max-width: 68ch; margin-inline: auto; margin-bottom: 0; }

.breadcrumbs { padding: .9rem 0; font-size: .85rem; color: var(--ink-soft); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.breadcrumbs a { color: var(--ink-soft); }

/* ---------------------------------------------------------------- sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--white); }
.section-head { text-align: center; max-width: 70ch; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; color: var(--gold-text); font-weight: 700; margin-bottom: .6rem; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }

.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* ---------------------------------------------------------------- cards */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45rem; }
.card-body p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1rem; }
.card-actions { margin-top: auto; display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }

.card-meta { font-size: .82rem; color: var(--ink-soft); display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }
.pill { display: inline-block; background: var(--green-100); color: var(--green-800); border-radius: 999px; padding: .18rem .7rem; font-size: .76rem; font-weight: 600; }

/* feature tiles (amenities) */
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; }
.feature h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feature p { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; margin-bottom: .9rem; font-weight: 700; }

/* ---------------------------------------------------------------- room detail */
.room-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .room-layout { grid-template-columns: 1fr; } }
.room-aside { position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.spec-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
/* Grid rather than flex: the label column sizes to its own content, so a long value like
   a full "best time to visit" sentence wraps on its own instead of squeezing the label. */
.spec-list li { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .93rem; }
.spec-list .spec-k { white-space: nowrap; }
.spec-list li:last-child { border-bottom: 0; }
.spec-list dt, .spec-k { color: var(--ink-soft); }
.spec-v { font-weight: 600; text-align: right; }

.amenity-chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1.4rem; }
.amenity-chips li { background: var(--green-100); color: var(--green-800); border-radius: 999px; padding: .35rem .85rem; font-size: .85rem; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2rem; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose blockquote { border-left: 3px solid var(--gold); margin: 1.5rem 0; padding: .2rem 0 .2rem 1.2rem; color: var(--ink-soft); font-style: italic; }

/* ---------------------------------------------------------------- gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); border: 0; padding: 0; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.lightbox { position: fixed; inset: 0; background: rgba(8,16,11,.94); z-index: 300; display: none; place-items: center; padding: 2rem 1rem; }
.lightbox[open], .lightbox.is-open { display: grid; }
.lightbox img { max-width: min(100%, 1200px); max-height: 84vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-caption { color: rgba(255,255,255,.85); text-align: center; margin-top: .9rem; font-size: .9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 46px; height: 46px;
  border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center;
}
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.28); }

/* ---------------------------------------------------------------- faq */
.faq-list { max-width: 78ch; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.05rem 1.3rem; font-weight: 600; color: var(--green-900);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- forms */
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
label { font-size: .88rem; font-weight: 600; color: var(--green-900); }
input, textarea, select {
  font: inherit; font-size: .98rem; padding: .7rem .85rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink); width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--green-600); outline: 2px solid rgba(61,114,86,.18); outline-offset: 0; }
textarea { min-height: 130px; resize: vertical; }
.field-hint { font-size: .8rem; color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .95rem; }
.alert-ok { background: #e7f4ec; border: 1px solid #b9dfc8; color: #1c5334; }
.alert-error { background: #fdecec; border: 1px solid #f3c2c2; color: #8a2020; }

/* ---------------------------------------------------------------- contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.contact-card h2 { font-size: 1.2rem; }
.map-embed { border: 0; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.82); padding: 3.2rem 0 1.4rem; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: .2rem; }
.footer-tag { color: var(--gold); font-size: .9rem; margin-bottom: .8rem; }
.footer-desc { font-size: .9rem; line-height: 1.65; }
.footer-h { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: #fff; margin-bottom: .9rem; font-family: var(--sans); font-weight: 700; }
.footer-links, .footer-social { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-social li { margin-bottom: .45rem; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
/* The footer link colour is more specific than .btn-book, so it was repainting the CTA
   cream-on-gold at 2.32:1. Buttons keep their own colours inside the footer. */
.site-footer a.btn-book, .site-footer a.btn-primary { color: #1a1408; }
.site-footer a.btn-book:hover, .site-footer a.btn-primary:hover { color: #fff; text-decoration: none; }
.site-footer a.btn-ghost { color: #fff; }
.footer-address { font-style: normal; font-size: .92rem; line-height: 1.85; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-cta { margin-top: 1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.13); margin-top: 2.4rem; padding-top: 1.2rem; font-size: .85rem;
}
.footer-bottom p { margin: 0; }

/* ---------------------------------------------------------------- misc */
.whatsapp-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); text-decoration: none;
}
.whatsapp-fab:hover { background: #1da851; color: #fff; }

.img-placeholder { background: linear-gradient(135deg, var(--sand), var(--green-100)); width: 100%; aspect-ratio: 4 / 3; }
.hero-media .img-placeholder { aspect-ratio: auto; }

.pagination { display: flex; gap: .5rem; justify-content: center; list-style: none; padding: 0; margin: 2.5rem 0 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: block; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; background: var(--white); }
.pagination .is-current { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.empty-note { text-align: center; color: var(--ink-soft); background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius); padding: 2.5rem 1.5rem; }

/* Visible to screen readers and to crawlers, not on screen. Used to give short link
   labels like "Read more" a descriptive accessible name without cluttering the design. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.card .card-body h2 a, .card .card-body h3 a { text-decoration: none; color: inherit; }
.card .card-body h2 a:hover, .card .card-body h3 a:hover { color: var(--green-700); text-decoration: underline; }

/* Whole-card click target. The heading's own anchor is stretched over the card with an
   ::after overlay, rather than wrapping the image in a second, text-less link — an empty
   anchor has no accessible name and is flagged as an undescriptive link. */
.card-clickable { position: relative; }
.card-clickable .card-body h2 a::after,
.card-clickable .card-body h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
/* Buttons and outbound links inside the card must sit above that overlay to stay clickable. */
.card-clickable .card-actions { position: relative; z-index: 2; }

/* ---------------------------------------------------------------- brand marks */
.brand { flex-direction: row; align-items: center; gap: .7rem; }
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-logo { width: 62px; height: 62px; background: #fff; border-radius: 50%; padding: 4px; margin-bottom: .8rem; }
@media (max-width: 480px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.12rem; }
}

/* <picture> is inline by default with auto height, so an <img> inside it had nothing for
   height:100% to resolve against and the photo sat short of its container. Making the
   wrapper fill the box is what lets object-fit:cover actually crop to the aspect ratio. */
.card-media picture,
.hero-media picture,
.gallery-item picture { display: block; width: 100%; height: 100%; }
.gallery-item picture img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- map */
.map-block {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--green-100);
  aspect-ratio: 4 / 3;
}
@media (min-width: 900px) { .map-block { aspect-ratio: 16 / 10; } }
.map-facade {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center; padding: 1.5rem;
  /* A suggestion of contour lines, so the placeholder reads as a map rather than a gap. */
  background:
    repeating-linear-gradient(58deg, transparent 0 22px, rgba(61,114,86,.10) 22px 23px),
    repeating-linear-gradient(-31deg, transparent 0 34px, rgba(61,114,86,.08) 34px 35px),
    linear-gradient(160deg, var(--green-100), var(--sand));
}
.map-pin { filter: drop-shadow(0 6px 12px rgba(18,38,27,.22)); }
.map-name { font-family: var(--serif); font-size: 1.25rem; margin: .3rem 0 0; color: var(--green-900); }
.map-addr { font-size: .9rem; color: var(--ink-soft); margin: 0; max-width: 34ch; }
.map-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }
.map-note { font-size: .76rem; color: var(--ink-soft); margin: .4rem 0 0; }
.map-block iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------------- social icons */
.social-list { display: flex; gap: .55rem; list-style: none; margin: 1rem 0 0; padding: 0; flex-wrap: wrap; }
.social-link {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.social-link:hover { transform: translateY(-2px); color: #fff; text-decoration: none; }
/* Each network takes its own colour on hover — recognisable without shouting at rest. */
.social-link[data-net="facebook"]:hover  { background: #1877f2; border-color: #1877f2; }
.social-link[data-net="instagram"]:hover { background: linear-gradient(45deg,#f09433,#dc2743 50%,#bc1888); border-color: #dc2743; }
.social-link[data-net="linkedin"]:hover  { background: #0a66c2; border-color: #0a66c2; }
.social-link[data-net="youtube"]:hover   { background: #ff0000; border-color: #ff0000; }
.social-link[data-net="whatsapp"]:hover  { background: #25d366; border-color: #25d366; }
.social-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* On a light surface the outline needs to come from the ink colour, not white. */
.social-list:not(.social-footer) .social-link { border-color: var(--line); color: var(--green-800); }
.social-list:not(.social-footer) .social-link:hover { color: #fff; }

/* ---------------------------------------------------------------- review links */
.review-links { text-align: center; margin-top: 2rem; }
.review-lead { color: var(--ink-soft); font-size: .95rem; margin-bottom: .8rem; }
.review-links ul { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.review-links a {
  display: inline-block; padding: .45rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); color: var(--green-800);
  text-decoration: none; font-size: .9rem; font-weight: 500;
}
.review-links a:hover { border-color: var(--green-600); background: var(--green-100); }
