/* ==========================================================================
   Hotel Green Plaza — Bhilwara, Rajasthan
   Consolidated stylesheet. Every colour is a :root token; no stray hex values
   appear outside the token block below.

   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Grid (Bootstrap-compatible container / row / col API)
   5.  Layout utilities
   6.  Section heading construct
   7.  Buttons
   8.  Icons
   9.  Header & navigation
   10. Hero
   11. Page banner & breadcrumbs
   12. Cards
   13. Split / feature sections
   14. Trust band
   15. Amenity & service grids
   16. Gallery, filter & lightbox
   17. Testimonials
   18. Forms
   19. Location & map
   20. CTA band
   21. Footer
   22. Sticky mobile action bar
   23. Motion
   24. Responsive
   ========================================================================== */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
  /* Brand — derived from the Hotel Green Plaza logo */
  --gp-primary: #2f5d32;   /* deep green — headings, primary buttons, nav accents */
  --gp-dark: #243d27;      /* deepest green — footer, dark bands, overlays */
  --gp-olive: #7a973b;     /* olive leaf — icons, dividers, decorative marks */
  /* Same olive hue darkened to 0.76x. #7a973b is only 3.3:1 on white and 2.9:1
     on --gp-tint, so it may colour marks but never small text. Eyebrow copy
     uses this instead: 5.3:1 on white, 4.9:1 on cream, 4.7:1 on tint. */
  --gp-olive-text: #5d732d;
  --gp-fresh: #94ae49;     /* fresh green — hover states, badges, underlines */
  --gp-leaf: #8cc63e;      /* lime accent — micro-accents ONLY, max ~3% of a screen */

  /* Warm accent — reserved for booking / enquiry CTAs so the one action that
     matters pops against the all-green palette. 5.02:1 on white (AA), and
     white text on the fill is also 5.02:1. */
  --gp-accent: #b45309;
  --gp-accent-dark: #92400e;
  /* WhatsApp brand green — used only on the chat button so it reads as WhatsApp */
  --gp-whatsapp: #25d366;
  --gp-whatsapp-dark: #1da851;

  /* Neutrals */
  --gp-ink: #1f241f;       /* body text */
  --gp-muted: #5a6357;     /* secondary text, captions */
  --gp-white: #ffffff;
  --gp-cream: #f7f7f1;     /* alternating section background */
  --gp-tint: #eef3e5;      /* amenity blocks, feature panels, form background */
  --gp-line: #e8e4d8;      /* borders, separators, table rules */

  /* Support */
  --gp-overlay: linear-gradient(180deg, rgba(36, 61, 39, .15) 0%, rgba(36, 61, 39, .72) 100%);
  /* Neutral dark gradients — no green tint so the photo reads true */
  /* Left-side scrim: text zone (left) is dark enough to read; hotel facade (right) shows clearly */
  --gp-hero-grad: linear-gradient(to right, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .60) 42%, rgba(0, 0, 0, .22) 100%);
  --gp-cta-grad: linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .80) 100%);
  --gp-shadow-sm: 0 1px 2px rgba(31, 36, 31, .06), 0 4px 12px rgba(31, 36, 31, .05);
  --gp-shadow-md: 0 8px 28px rgba(36, 61, 39, .10);
  --gp-radius: 6px;
  --gp-radius-lg: 10px;

  /* Derived support values, kept here so no component invents its own colour */
  --gp-error: #a3282c;
  --gp-focus: rgba(148, 174, 73, .25);
  --gp-ring: rgba(47, 93, 50, .35);
  --gp-on-dark: rgba(255, 255, 255, .78);
  --gp-on-dark-soft: rgba(255, 255, 255, .58);
  --gp-hairline-dark: rgba(255, 255, 255, .14);
  --gp-glass: rgba(255, 255, 255, .16);
  --gp-glass-line: rgba(255, 255, 255, .34);
  --gp-scrim: rgba(36, 61, 39, .55);
  --gp-scrim-light: rgba(36, 61, 39, .30);
  --gp-scrim-deep: rgba(36, 61, 39, .82);
  --gp-shadow-up: 0 -4px 18px rgba(31, 36, 31, .08);

  /* Type */
  --gp-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --gp-font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --gp-section: 96px;
  --gp-gutter: 15px;
  --gp-ease: cubic-bezier(.2, .6, .2, 1);
  --gp-header-h: 84px;   /* main bar */
  --gp-topbar-h: 42px;   /* contact strip above it, collapses on scroll */
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gp-header-h) + 16px);
}

body {
  margin: 0;
  background: var(--gp-white);
  color: var(--gp-ink);
  font-family: var(--gp-font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video { max-width: 100%; }

img {
  height: auto;
  display: block;
  border: 0;
}

a {
  color: var(--gp-primary);
  text-decoration: none;
  transition: color .25s var(--gp-ease);
}

a:hover { color: var(--gp-fresh); }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

hr {
  border: 0;
  border-top: 1px solid var(--gp-line);
  margin: 0;
}

/* Visible keyboard focus everywhere, mouse clicks stay clean */
:focus-visible {
  outline: 3px solid var(--gp-ring);
  outline-offset: 3px;
  border-radius: var(--gp-radius);
}

.gp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gp-primary);
  color: var(--gp-white);
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 0 0 var(--gp-radius) 0;
}

.gp-skip-link:focus {
  left: 0;
  color: var(--gp-white);
}

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

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  font-family: var(--gp-font-head);
  font-weight: 600;
  color: var(--gp-primary);
}

h1, .gp-h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.01em;
}

h2, .gp-h2 {
  font-size: 40px;
  line-height: 1.2;
}

h3, .gp-h3 {
  font-size: 26px;
  line-height: 1.3;
}

h4 {
  font-size: 21px;
  line-height: 1.35;
}

p {
  margin: 0 0 1.15em;
  max-width: 68ch;
}

p:last-child { margin-bottom: 0; }

.gp-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--gp-muted);
}

.gp-small {
  font-size: 14px;
  color: var(--gp-muted);
}

.gp-eyebrow {
  display: block;
  margin: 0 0 14px;
  font-family: var(--gp-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gp-olive-text);
}

/* The lime micro-accent: a hairline under every section eyebrow */
.gp-eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--gp-leaf);
}

.gp-text-center .gp-eyebrow::after { margin-left: auto; margin-right: auto; }

/* On dark bands the palette inverts, still AA */
.gp-on-dark { color: var(--gp-on-dark); }
.gp-on-dark h1,
.gp-on-dark h2,
.gp-on-dark h3,
.gp-on-dark h4 { color: var(--gp-white); }
.gp-on-dark p { color: var(--gp-on-dark); }
.gp-on-dark .gp-eyebrow { color: var(--gp-fresh); }
.gp-on-dark .gp-lead { color: var(--gp-on-dark); }

/* ==========================================================================
   4. Grid — the theme's Bootstrap container/row/col API, colour layer removed
   ========================================================================== */

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--gp-gutter);
  padding-left: var(--gp-gutter);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gp-gutter) * -1);
  margin-left: calc(var(--gp-gutter) * -1);
}

[class*="col-"] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: var(--gp-gutter);
  padding-left: var(--gp-gutter);
}

.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }

.col-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }

/* ==========================================================================
   5. Layout utilities
   ========================================================================== */

.gp-section { padding-top: var(--gp-section); padding-bottom: var(--gp-section); }
.gp-section-sm { padding-top: calc(var(--gp-section) * .62); padding-bottom: calc(var(--gp-section) * .62); }
.gp-section-top-0 { padding-top: 0; }
.gp-section-bottom-0 { padding-bottom: 0; }

.gp-bg-white { background: var(--gp-white); }
.gp-bg-cream { background: var(--gp-cream); }
.gp-bg-tint { background: var(--gp-tint); }
.gp-bg-dark { background: var(--gp-dark); }

.gp-text-center { text-align: center; }
.gp-text-center p,
.gp-mx-auto { margin-left: auto; margin-right: auto; }

.gp-measure { max-width: 62ch; }
.gp-narrow { max-width: 760px; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.gp-stack-8 > * + * { margin-top: 8px; }
.gp-mt-16 { margin-top: 16px; }
.gp-mt-24 { margin-top: 24px; }
.gp-mt-32 { margin-top: 32px; }
.gp-mt-40 { margin-top: 40px; }
.gp-mt-56 { margin-top: 56px; }
.gp-mb-0 { margin-bottom: 0; }
.gp-mb-40 { margin-bottom: 40px; }

.gp-gap-30 { row-gap: 30px; }

/* A restrained olive rule, used as the recurring decorative detail */
.gp-rule {
  width: 56px;
  height: 1px;
  background: var(--gp-olive);
  margin: 26px 0;
  border: 0;
}

.gp-rule-center { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   6. Section heading construct — eyebrow → H2 → intro line
   ========================================================================== */

.gp-heading { margin-bottom: 52px; }
.gp-heading h2 { margin-bottom: 14px; }
.gp-heading p { margin-bottom: 0; }
.gp-heading.gp-text-center p { max-width: 62ch; }

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 16px 32px;
  border: 1.5px solid transparent;
  border-radius: var(--gp-radius);
  font-family: var(--gp-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  cursor: pointer;
  transition: background-color .3s var(--gp-ease), color .3s var(--gp-ease),
              border-color .3s var(--gp-ease), transform .3s var(--gp-ease),
              box-shadow .3s var(--gp-ease);
}

.gp-btn--primary {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: var(--gp-white);
}

.gp-btn--primary:hover,
.gp-btn--primary:focus-visible {
  background: var(--gp-dark);
  border-color: var(--gp-dark);
  color: var(--gp-white);
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow-md);
}

.gp-btn--secondary {
  background: transparent;
  border-color: var(--gp-primary);
  color: var(--gp-primary);
}

.gp-btn--secondary:hover,
.gp-btn--secondary:focus-visible {
  background: var(--gp-primary);
  color: var(--gp-white);
}

.gp-btn--ghost {
  background: transparent;
  border-color: var(--gp-white);
  color: var(--gp-white);
}

.gp-btn--ghost:hover,
.gp-btn--ghost:focus-visible {
  background: var(--gp-white);
  color: var(--gp-primary);
}

.gp-btn--accent {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: var(--gp-white);
}

.gp-btn--accent:hover,
.gp-btn--accent:focus-visible {
  background: var(--gp-accent-dark);
  border-color: var(--gp-accent-dark);
  color: var(--gp-white);
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow-md);
}

.gp-btn--block { display: flex; width: 100%; }

.gp-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gp-btn-group--center { justify-content: center; }

/* Text CTA used inside cards */
.gp-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gp-primary);
}

.gp-textlink svg { transition: transform .3s var(--gp-ease); }
.gp-textlink:hover { color: var(--gp-fresh); }
.gp-textlink:hover svg { transform: translateX(4px); }

/* ==========================================================================
   8. Icons — one stroke set, 1.5px, olive by default
   ========================================================================== */

.gp-icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--gp-olive);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gp-icon--sm { width: 18px; height: 18px; }
.gp-icon--lg { width: 32px; height: 32px; }
.gp-icon--primary { stroke: var(--gp-primary); }
.gp-icon--fresh { stroke: var(--gp-fresh); }
.gp-icon--white { stroke: var(--gp-white); }
.gp-icon--fill { fill: currentColor; stroke: none; }

.gp-sprite { display: none; }

/* ==========================================================================
   9. Header & navigation
   ========================================================================== */

.gp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: var(--gp-white);
  box-shadow: var(--gp-shadow-sm);
}

/* --- Top contact strip ------------------------------------------------- */
/* Carries the real phone, email and location so the main bar only has to
   hold the logo, the menu and one button. Collapses away on scroll. */

.gp-topbar {
  background: var(--gp-dark);
  max-height: var(--gp-topbar-h);
  overflow: hidden;
  transition: max-height .35s var(--gp-ease), opacity .25s var(--gp-ease);
}

.gp-header.is-stuck .gp-topbar {
  max-height: 0;
  opacity: 0;
}

.gp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--gp-topbar-h);
}

.gp-topbar__group {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.gp-topbar a,
.gp-topbar span.gp-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--gp-on-dark);
  white-space: nowrap;
}

.gp-topbar a:hover { color: var(--gp-leaf); }
.gp-topbar .gp-icon { stroke: var(--gp-fresh); flex: none; }

.gp-topbar__phone {
  font-weight: 700;
  color: var(--gp-white) !important;
}

.gp-topbar__phone:hover { color: var(--gp-leaf) !important; }

/* --- Main bar ----------------------------------------------------------- */

.gp-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--gp-header-h);
}

.gp-logo {
  display: inline-flex;
  align-items: center;
  /* Clear space equal to the height of the "H" in HOTEL */
  padding: 10px 14px;
  margin-left: -14px;
  flex: none;
}

.gp-logo img {
  width: 108px;
  height: 62px;
  object-fit: contain;
}

.gp-nav { margin-left: auto; }

.gp-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Sentence case, not uppercase. Eight items in uppercase needed 838px of a
   1170px bar and wrapped onto two lines; this keeps every label the spec
   requires and still fits on one row, with buttons left as the only
   uppercase element so the CTA hierarchy stays clear. */
.gp-nav__link {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gp-ink);
  letter-spacing: .005em;
  white-space: nowrap;
}

.gp-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gp-leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--gp-ease);
}

.gp-nav__link:hover::after,
.gp-nav__link[aria-current="page"]::after { transform: scaleX(1); }

.gp-nav__link:hover,
.gp-nav__link[aria-current="page"] { color: var(--gp-primary); }

.gp-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: none;
}

.gp-header__actions .gp-btn { padding: 14px 24px; min-height: 46px; }

/* Burger */
.gp-burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--gp-line);
  border-radius: var(--gp-radius);
  cursor: pointer;
}

.gp-burger span,
.gp-burger span::before,
.gp-burger span::after {
  background: var(--gp-ink);
}

.gp-burger span {
  position: relative;
  display: block;
  width: 20px;
  height: 1.5px;
}

.gp-burger span::before,
.gp-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
}

.gp-burger span::before { top: -6px; }
.gp-burger span::after { top: 6px; }

/* Full-screen mobile panel */
.gp-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: var(--gp-white);
  transform: translateX(100%);
  visibility: hidden;
  /* visibility flips instantly on open so the close button can take focus
     right away, and is held until the panel has finished sliding out */
  transition: transform .38s var(--gp-ease), visibility 0s linear .38s;
  overflow-y: auto;
}

.gp-mobile-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .38s var(--gp-ease), visibility 0s linear 0s;
}

.gp-mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-mobile-panel__top img { width: 96px; height: 55px; object-fit: contain; }

.gp-panel-close {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--gp-line);
  border-radius: var(--gp-radius);
  cursor: pointer;
}

.gp-mobile-panel__list { padding: 8px 20px; }

.gp-mobile-panel__list a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--gp-line);
  font-family: var(--gp-font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--gp-primary);
}

.gp-mobile-panel__list a[aria-current="page"] {
  border-bottom-color: var(--gp-leaf);
  border-bottom-width: 2px;
}

.gp-mobile-panel__foot {
  padding: 24px 20px 40px;
  display: grid;
  gap: 14px;
}

/* ==========================================================================
   10. Hero
   ========================================================================== */

.gp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--gp-header-h) + var(--gp-topbar-h) + 48px) 0 96px;
  isolation: isolate;
}

/* Starts below the fixed header instead of running full-bleed behind it —
   the header is opaque, so photo content placed under it was simply hidden.
   Starting the image here means nothing is lost behind the header, and any
   cropping object-fit still needs to do happens off the bottom, not the top. */
.gp-hero__media,
.gp-banner__media {
  position: absolute;
  top: calc(var(--gp-header-h) + var(--gp-topbar-h));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
}

.gp-hero__media img,
.gp-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Page banners crop from the top so the subject stays in frame on short viewports */
.gp-banner__media img { object-position: top center; }

/* A very slow zoom gives the hero a little life without distracting motion */
.gp-hero__media img {
  animation: gp-kenburns 24s var(--gp-ease) forwards;
}

.gp-hero::after,
.gp-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gp-overlay);
}

/* A lighter scrim than the banner's — the hero photo is a naturally dark
   night shot, so it doesn't need much extra darkening to keep white text
   readable, and a heavy scrim was hiding too much of the photo itself. */
.gp-hero::after { background: var(--gp-hero-grad); }

.gp-hero__content { max-width: 720px; }

/* A photo this bright and varied (illuminated signage, shop windows) can't be
   evenly darkened by a scrim without hiding most of it — a stray bright patch
   can still land under a word. This shadow keeps every glyph readable
   regardless of what's directly behind it, without darkening the photo itself. */
.gp-hero__content .gp-eyebrow,
.gp-hero h1,
.gp-hero p {
  text-shadow: 0 2px 16px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .65);
}

.gp-hero h1 {
  color: var(--gp-white);
  margin-bottom: 20px;
}

.gp-hero p {
  color: var(--gp-white);
  font-size: 19px;
  max-width: 56ch;
  margin-bottom: 34px;
}

.gp-hero .gp-eyebrow { color: var(--gp-white); }
.gp-hero .gp-eyebrow::after { background: var(--gp-leaf); box-shadow: 0 1px 6px rgba(0, 0, 0, .5); }

/* Trust strip below the hero buttons — rating + review count + pure-veg badge */
.gp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 30px;
  color: var(--gp-white);
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.gp-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gp-hero__trust .gp-star { width: 17px; height: 17px; fill: var(--gp-leaf); }

.gp-hero__trust-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gp-on-dark-soft);
}

.gp-hero__trust-badge {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gp-glass);
  border: 1px solid var(--gp-glass-line);
  backdrop-filter: blur(4px);
  text-shadow: none;
}

/* The ghost button has no fill of its own on the lighter hero scrim, so it
   needs the same protection as the text above it. */
.gp-hero .gp-btn--ghost { box-shadow: 0 2px 16px rgba(0, 0, 0, .35); }
.gp-hero .gp-btn--ghost:not(:hover):not(:focus-visible) { text-shadow: 0 1px 3px rgba(0, 0, 0, .65); }

/* ==========================================================================
   11. Page banner & breadcrumbs
   ========================================================================== */

.gp-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 40vh;
  padding: calc(var(--gp-header-h) + var(--gp-topbar-h) + 44px) 0 56px;
  isolation: isolate;
}

.gp-banner::after { background: var(--gp-overlay), var(--gp-scrim); }

.gp-banner h1 {
  color: var(--gp-white);
  margin-bottom: 12px;
}

.gp-banner p {
  color: var(--gp-white);
  max-width: 58ch;
  margin-bottom: 0;
}

.gp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--gp-on-dark);
}

.gp-breadcrumb a { color: var(--gp-white); }
.gp-breadcrumb a:hover { color: var(--gp-leaf); }

.gp-breadcrumb li { display: flex; align-items: center; gap: 10px; }

.gp-breadcrumb li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gp-leaf);
}

/* ==========================================================================
   12. Cards
   ========================================================================== */

.gp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--gp-ease), box-shadow .4s var(--gp-ease);
}

.gp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-md);
}

.gp-card__media {
  overflow: hidden;
  background: var(--gp-tint);
}

.gp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--gp-ease);
}

.gp-card:hover .gp-card__media img { transform: scale(1.05); }

/* Facilities & highlights read at 3:2, rooms at 4:3 — enforced, not hoped for */
.gp-card--facility .gp-card__media { aspect-ratio: 3 / 2; }
.gp-card--room .gp-card__media { aspect-ratio: 4 / 3; }

.gp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 30px;
}

.gp-card__body h3 { margin-bottom: 10px; }

.gp-card__body p {
  color: var(--gp-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.gp-card__body > :last-child { margin-top: auto; }

/* Facility chips inside room cards */
.gp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.gp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--gp-tint);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-primary);
}

.gp-chip .gp-icon { width: 15px; height: 15px; }

.gp-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gp-card__actions .gp-btn {
  flex: 1 1 150px;
  padding: 13px 18px;
  min-height: 46px;
  font-size: 14px;
}

/* ==========================================================================
   13. Split / feature sections
   ========================================================================== */

.gp-split { align-items: center; row-gap: 40px; }

.gp-split__media {
  position: relative;
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  box-shadow: var(--gp-shadow-md);
}

.gp-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Leaf motif detail — used once per split, sparingly */
.gp-split__mark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gp-white);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow-sm);
}

.gp-split__mark .gp-icon { width: 26px; height: 26px; }

.gp-feature-list { display: grid; gap: 14px; margin: 26px 0 32px; }

.gp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}

.gp-feature-list .gp-icon { margin-top: 4px; }

/* ==========================================================================
   14. Trust band — the single heavy-green moment
   ========================================================================== */

.gp-trust {
  background: var(--gp-dark);
  padding-top: var(--gp-section);
  padding-bottom: var(--gp-section);
}

.gp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--gp-hairline-dark);
  border: 1px solid var(--gp-hairline-dark);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
}

.gp-trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 26px;
  background: var(--gp-dark);
}

.gp-trust__item .gp-icon { stroke: var(--gp-fresh); }

.gp-trust__item span {
  font-family: var(--gp-font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--gp-white);
  line-height: 1.35;
}

/* ==========================================================================
   15. Amenity & service grids
   ========================================================================== */

.gp-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gp-amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-ink);
  transition: transform .3s var(--gp-ease), box-shadow .3s var(--gp-ease);
}

.gp-amenity:hover {
  transform: translateY(-3px);
  box-shadow: var(--gp-shadow-sm);
}

.gp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gp-service {
  padding: 34px 30px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
  transition: transform .4s var(--gp-ease), box-shadow .4s var(--gp-ease);
}

.gp-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-md);
}

.gp-service__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--gp-tint);
  border-radius: var(--gp-radius);
}

.gp-service h3 { font-size: 22px; margin-bottom: 8px; }

.gp-service p {
  font-size: 16px;
  color: var(--gp-muted);
  margin-bottom: 0;
}

/* Event type list used on the banquets page */
.gp-event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gp-event {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  background: var(--gp-tint);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-primary);
}

/* ==========================================================================
   15b. Restaurant menu
   ========================================================================== */

/* Two-panel layout: sticky sidebar left, scrollable menu right */
.gp-menu-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* LEFT: category sidebar */
.gp-menu-sidebar {
  width: 220px;
  flex: none;
  position: sticky;
  top: calc(var(--gp-header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 14px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
}

.gp-menu-sidebar__label {
  margin: 0 0 10px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gp-muted);
}

/* Sidebar filter buttons override the generic .gp-filter__btn */
.gp-menu-sidebar .gp-filter__btn {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: var(--gp-radius);
  border: 1px solid transparent;
  background: transparent;
  color: var(--gp-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  min-height: 40px;
}

.gp-menu-sidebar .gp-filter__btn:hover {
  background: var(--gp-tint);
  border-color: var(--gp-line);
  color: var(--gp-primary);
}

.gp-menu-sidebar .gp-filter__btn[aria-pressed="true"] {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: var(--gp-white);
}

/* RIGHT: menu cards */
.gp-menu-content {
  flex: 1 1 auto;
  min-width: 0;
}

/* CSS columns let long and short sections tile without leaving gaps; each
   group is kept whole with break-inside: avoid. 2 columns because the
   sidebar already takes ~252px of the container width. */
.gp-menu {
  column-count: 2;
  column-gap: 24px;
}

.gp-menu__group {
  break-inside: avoid;
  margin-bottom: 28px;
  padding: 26px 28px 22px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
}

.gp-menu__group-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--gp-tint);
}

.gp-menu__group-head .gp-icon { color: var(--gp-olive); flex: none; }

.gp-menu__group h3 { font-size: 20px; margin: 0; }

.gp-menu__note {
  font-size: 13px;
  color: var(--gp-muted);
  margin: 8px 0 0;
}

.gp-menu__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.gp-menu__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 7px 0;
}

.gp-menu__name {
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--gp-ink);
}

.gp-menu__desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--gp-muted);
  margin-top: 2px;
}

/* Dotted leader between the dish name and its price */
.gp-menu__dots {
  flex: 1 1 auto;
  min-width: 12px;
  align-self: center;
  border-bottom: 1px dotted var(--gp-line);
}

.gp-menu__price {
  flex: none;
  font-weight: 700;
  color: var(--gp-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.gp-menu__foot {
  max-width: 760px;
  margin: 8px auto 0;
  padding: 28px 32px;
  background: var(--gp-tint);
  border-radius: var(--gp-radius-lg);
}

.gp-menu__foot h3 { font-size: 20px; margin: 0 0 8px; }

.gp-feature-list--2col { grid-template-columns: repeat(2, 1fr); }

/* Mobile: sidebar stacks above menu as horizontal scroll strip */
@media (max-width: 767.98px) {
  .gp-menu-layout { flex-direction: column; gap: 20px; }

  .gp-menu-sidebar {
    width: auto;
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding: 12px;
    border-radius: var(--gp-radius-lg);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gp-menu-sidebar::-webkit-scrollbar { display: none; }
  .gp-menu-sidebar__label { display: none; }
  .gp-menu-sidebar .gp-filter__btn {
    white-space: nowrap;
    width: auto;
    flex: none;
  }
}

/* ==========================================================================
   16. Gallery, filter & lightbox
   ========================================================================== */

.gp-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.gp-filter__btn {
  min-height: 44px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gp-muted);
  cursor: pointer;
  transition: background-color .3s var(--gp-ease), color .3s var(--gp-ease), border-color .3s var(--gp-ease);
}

.gp-filter__btn:hover {
  color: var(--gp-primary);
  border-color: var(--gp-primary);
}

.gp-filter__btn[aria-pressed="true"] {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: var(--gp-white);
}

/* Masonry via CSS columns — reflows for free when items are filtered out */
.gp-masonry {
  column-count: 3;
  column-gap: 24px;
}

.gp-masonry__item {
  break-inside: avoid;
  margin-bottom: 24px;
}

.gp-masonry__item[hidden] { display: none; }

.gp-thumb {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  background: var(--gp-tint);
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s var(--gp-ease), box-shadow .4s var(--gp-ease);
}

.gp-thumb img {
  width: 100%;
  transition: transform .5s var(--gp-ease);
}

.gp-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-md);
}

.gp-thumb:hover img { transform: scale(1.05); }

.gp-thumb__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 18px 16px;
  background: var(--gp-overlay);
  color: var(--gp-white);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  opacity: 0;
  transition: opacity .3s var(--gp-ease);
}

.gp-thumb:hover .gp-thumb__label,
.gp-thumb:focus-visible .gp-thumb__label { opacity: 1; }

/* Lightbox */
.gp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--gp-scrim-deep);
}

.gp-lightbox.is-open { display: flex; }

.gp-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  text-align: center;
}

.gp-lightbox__figure img {
  max-height: 76vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--gp-radius-lg);
}

.gp-lightbox__figure figcaption {
  margin-top: 16px;
  color: var(--gp-white);
  font-size: 15px;
}

.gp-lightbox__btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1.5px solid var(--gp-on-dark-soft);
  border-radius: var(--gp-radius);
  cursor: pointer;
  transition: background-color .3s var(--gp-ease), border-color .3s var(--gp-ease);
}

.gp-lightbox__btn:hover {
  background: var(--gp-white);
  border-color: var(--gp-white);
}

.gp-lightbox__btn:hover .gp-icon { stroke: var(--gp-primary); }
.gp-lightbox__btn .gp-icon { stroke: var(--gp-white); }

.gp-lightbox__close { top: 24px; right: 24px; }
.gp-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gp-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

body.gp-no-scroll { overflow: hidden; }

/* ==========================================================================
   17. Testimonials
   ========================================================================== */

/* Aggregate rating badge (e.g. "4.1 · 2,981 Google reviews") */
.gp-rating {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 52px;
  padding: 18px 28px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
}

.gp-rating__score {
  font-family: var(--gp-font-head);
  font-size: 34px;
  font-weight: 600;
  color: var(--gp-primary);
  line-height: 1;
}

.gp-rating__meta { text-align: left; }
.gp-rating__meta p { margin-top: 4px; margin-bottom: 0; }

/* Star rating — a deliberate, documented exception to the single stroke-icon
   rule: rating stars are a distinct, universally-recognised UI convention
   (solid, not outline), not part of the decorative feature-icon set. Built
   from one filled star shape so "on" vs "off" is colour, not two icon styles. */
.gp-stars {
  position: relative;
  display: inline-flex;
  width: fit-content;
}

.gp-stars__track,
.gp-stars__fill {
  display: flex;
  gap: 2px;
}

.gp-stars__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: calc(var(--gp-rating, 5) / 5 * 100%);
}

.gp-star {
  width: 18px;
  height: 18px;
  flex: none;
}

.gp-stars__track .gp-star { fill: var(--gp-line); }
.gp-stars__fill .gp-star { fill: var(--gp-leaf); }

.gp-star--sm { width: 14px; height: 14px; }

/* Testimonial cards */
.gp-testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-sm);
  transition: transform .4s var(--gp-ease), box-shadow .4s var(--gp-ease);
}

.gp-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-md);
}

.gp-testimonial__stars { margin-bottom: 16px; }

.gp-testimonial__quote {
  flex: 1 1 auto;
  color: var(--gp-ink);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.gp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gp-testimonial__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  background: var(--gp-tint);
  border-radius: 50%;
  font-family: var(--gp-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--gp-primary);
}

.gp-testimonial__author strong {
  display: block;
  font-size: 15px;
  color: var(--gp-ink);
}

.gp-testimonial__author .gp-small { margin-top: 2px; }

/* Carousel — native scroll-snap does the dragging/swiping for free; JS only
   drives the arrow buttons and the progress bar. Works with no JS at all
   (it's simply a swipeable/scrollable row), so it degrades gracefully. */
.gp-carousel { position: relative; }

.gp-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gp-carousel__viewport::-webkit-scrollbar { display: none; }

.gp-carousel__track {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 4px 4px 8px;
}

.gp-carousel__slide {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.gp-carousel__slide .gp-testimonial { width: 100%; }

.gp-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.gp-carousel__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  cursor: pointer;
  transition: background-color .3s var(--gp-ease), border-color .3s var(--gp-ease);
}

.gp-carousel__btn:hover:not(:disabled),
.gp-carousel__btn:focus-visible:not(:disabled) {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
}

.gp-carousel__btn:hover:not(:disabled) .gp-icon,
.gp-carousel__btn:focus-visible:not(:disabled) .gp-icon { stroke: var(--gp-white); }

.gp-carousel__btn:disabled { opacity: .4; cursor: default; }

.gp-carousel__progress {
  position: relative;
  flex: 1 1 auto;
  max-width: 220px;
  height: 4px;
  background: var(--gp-line);
  border-radius: 2px;
  overflow: hidden;
}

.gp-carousel__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.33%;
  background: var(--gp-leaf);
  border-radius: 2px;
  transition: transform .25s var(--gp-ease), width .25s var(--gp-ease);
}

/* ==========================================================================
   18. Forms
   ========================================================================== */

.gp-form-panel {
  padding: 44px;
  background: var(--gp-tint);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
}

.gp-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gp-field { display: flex; flex-direction: column; }
.gp-field--full { grid-column: 1 / -1; }

.gp-field label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-ink);
}

.gp-field .gp-req { color: var(--gp-error); }

.gp-field input,
.gp-field select,
.gp-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  color: var(--gp-ink);
  font-size: 16px;
  transition: border-color .25s var(--gp-ease), box-shadow .25s var(--gp-ease);
}

.gp-field textarea {
  min-height: 132px;
  resize: vertical;
}

.gp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6357' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.gp-field input:focus,
.gp-field select:focus,
.gp-field textarea:focus {
  outline: none;
  border-color: var(--gp-primary);
  box-shadow: 0 0 0 3px var(--gp-focus);
}

.gp-field input:focus-visible,
.gp-field select:focus-visible,
.gp-field textarea:focus-visible { outline: none; }

.gp-field .gp-error {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-error);
  min-height: 0;
}

.gp-field.has-error input,
.gp-field.has-error select,
.gp-field.has-error textarea { border-color: var(--gp-error); }

/* Honeypot — off-screen, never focusable by keyboard */
.gp-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gp-form__note {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--gp-muted);
  margin: 0;
}

.gp-form__status {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: var(--gp-radius);
  border: 1px solid var(--gp-olive);
  background: var(--gp-white);
  color: var(--gp-primary);
  font-weight: 700;
}

.gp-form__status[hidden] { display: none; }

/* ==========================================================================
   19. Location & map
   ========================================================================== */

.gp-contact-list { display: grid; gap: 22px; }

.gp-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gp-contact-item__icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--gp-tint);
  border-radius: var(--gp-radius);
}

.gp-contact-item h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.gp-contact-item p {
  margin-bottom: 0;
  color: var(--gp-muted);
  font-size: 16px;
}

.gp-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  background: var(--gp-tint);
}

.gp-map iframe,
.gp-map__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Click-to-load map placeholder keeps the third-party request off first paint */
.gp-map__poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
  background: var(--gp-tint);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.gp-map__poster p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 15px;
}

.gp-map__poster strong {
  display: block;
  font-family: var(--gp-font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--gp-primary);
  margin-bottom: 6px;
}

/* ==========================================================================
   20. CTA band
   ========================================================================== */

.gp-cta {
  position: relative;
  padding: calc(var(--gp-section) * .9) 0;
  isolation: isolate;
}

.gp-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gp-cta-grad);
}

.gp-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.gp-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-cta h2 { color: var(--gp-white); }
.gp-cta p { color: var(--gp-white); }

/* ==========================================================================
   21. Footer
   ========================================================================== */

.gp-footer {
  background: var(--gp-dark);
  color: var(--gp-on-dark);
  padding-top: 84px;
  border-top: 4px solid var(--gp-primary);
}

.gp-footer h3 {
  font-size: 19px;
  color: var(--gp-white);
  margin-bottom: 22px;
}

.gp-footer p { color: var(--gp-on-dark); font-size: 16px; }

.gp-footer a { color: var(--gp-on-dark); }
.gp-footer a:hover { color: var(--gp-leaf); }

/* Contrast plate — the logo is never recoloured for dark backgrounds */
.gp-footer__logo {
  display: inline-flex;
  padding: 12px 16px;
  margin-bottom: 22px;
  background: var(--gp-white);
  border-radius: var(--gp-radius);
}

.gp-footer__logo img { width: 128px; height: 74px; object-fit: contain; }

.gp-footer__links { display: grid; gap: 12px; }
.gp-footer__links a { font-size: 16px; }

.gp-footer__contact { display: grid; gap: 18px; }

.gp-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
}

.gp-footer__contact .gp-icon {
  stroke: var(--gp-fresh);
  margin-top: 3px;
}

.gp-footer__bottom {
  margin-top: 72px;
  padding: 26px 0;
  border-top: 1px solid var(--gp-hairline-dark);
}

.gp-footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.gp-footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--gp-on-dark-soft);
}

/* ==========================================================================
   22. Sticky mobile action bar
   ========================================================================== */

.gp-actionbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 110;
  display: none;
  background: var(--gp-white);
  border-top: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-up);
  padding-bottom: env(safe-area-inset-bottom);
}

.gp-actionbar a {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gp-primary);
}

.gp-actionbar a + a { border-left: 1px solid var(--gp-line); }

.gp-actionbar a:last-child {
  background: var(--gp-primary);
  color: var(--gp-white);
}

.gp-actionbar a:last-child .gp-icon { stroke: var(--gp-white); }

/* The WhatsApp cell in the mobile bar keeps the brand colour so it's obvious */
.gp-actionbar a.gp-actionbar__wa { color: var(--gp-whatsapp-dark); }
.gp-actionbar a.gp-actionbar__wa .gp-icon { fill: var(--gp-whatsapp-dark); stroke: none; }

/* ==========================================================================
   22b. Floating WhatsApp button (desktop / tablet)
   ========================================================================== */

.gp-fab {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 105;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 15px;
  background: var(--gp-whatsapp);
  color: var(--gp-white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
  transition: transform .3s var(--gp-ease), box-shadow .3s var(--gp-ease), background-color .3s var(--gp-ease);
}

.gp-fab:hover,
.gp-fab:focus-visible {
  background: var(--gp-whatsapp-dark);
  color: var(--gp-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.gp-fab .gp-icon { width: 26px; height: 26px; fill: var(--gp-white); stroke: none; }

/* On mobile the sticky action bar already carries WhatsApp, so hide the float */
@media (max-width: 767.98px) {
  .gp-fab { display: none; }
}

/* ==========================================================================
   Nearby / Surroundings compact cards
   ========================================================================== */

.gp-nearby-item {
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-nearby-item__icon {
  width: 48px;
  height: 48px;
  background: var(--gp-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.gp-nearby-item__icon .gp-icon {
  width: 24px;
  height: 24px;
  stroke: var(--gp-primary);
}

.gp-nearby-item h3 {
  font-size: 18px;
  margin: 0;
  color: var(--gp-primary);
}

.gp-nearby-item .gp-eyebrow { margin-bottom: 0; }

.gp-nearby-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gp-nearby-list li {
  padding-left: 14px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gp-ink);
}

.gp-nearby-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--gp-fresh);
  border-radius: 50%;
}

/* ==========================================================================
   Nearby Landmark callout
   ========================================================================== */

.gp-landmark {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: var(--gp-white);
  border: 2px solid var(--gp-primary);
  border-radius: var(--gp-radius-lg);
  padding: 40px 48px;
}

.gp-landmark__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: var(--gp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-landmark__icon .gp-icon {
  width: 32px;
  height: 32px;
  stroke: var(--gp-white);
}

@media (max-width: 575px) {
  .gp-landmark {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
}

/* Motion, responsive, and print styles are in animations.css and responsive.css */
