:root{
  /* Final GC Resort V2 palette (design tokens) */
  --gc-ocean:#0B5F86;
  --gc-aqua:#39AFC5;
  --gc-navy:#17384E;
  --gc-olive:#7C813A;
  --gc-sand:#E8DDD0;
  --gc-seafoam:#DCEDEF;
  --gc-ivory:#FAF8F3;
  --gc-white:#FFFFFF;
  --gc-charcoal:#202B31;
  --gc-muted:#66747B;

  --primary:var(--gc-ocean);
  --primary2:var(--gc-navy);
  --accent:var(--gc-aqua);
  --accent2:var(--gc-seafoam);
  --bg:var(--gc-ivory);
  --paper:var(--gc-white);
  --text:var(--gc-charcoal);
  --muted:var(--gc-muted);
  --line:rgba(23,56,78,.14);
  --shadow:0 24px 70px rgba(23,56,78,.14);
  --radius:20px
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);font-family:'DM Sans',sans-serif;line-height:1.65}
body.drawer-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}

/* ---------- Header / brand ---------- */
.site-header{position:sticky;top:0;z-index:50;background:rgba(250,248,243,.92);backdrop-filter:blur(16px);border-bottom:1px solid var(--line)}
.header-inner{max-width:1280px;margin:auto;padding:16px 28px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:13px}
.brand-copy strong{display:flex;gap:6px;font-family:'Playfair Display',serif;font-size:21px;letter-spacing:.02em}
.brand-gc{color:var(--gc-ocean)}
.brand-resort{color:var(--gc-aqua)}
.brand-copy small{display:block;color:var(--gc-navy);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.18em;margin-top:2px}
.brand-dot{color:var(--gc-olive)}
.nav{display:flex;align-items:center;gap:25px}
.nav a{font-size:14px;font-weight:600}
.nav a:hover{color:var(--gc-ocean)}
.header-actions{display:flex;align-items:center;gap:10px}
.menu-btn{display:none;border:0;background:none;font-size:25px;color:var(--gc-navy)}

/* ---------- Buttons ---------- */
.btn,.ghost-btn{border:0;border-radius:999px;padding:13px 22px;font-weight:700;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:8px;white-space:nowrap;transition:transform .18s ease,box-shadow .18s ease}
.btn{background:var(--primary);color:#fff}
.btn:hover{background:var(--primary2);transform:translateY(-1px)}
.btn.gold{background:var(--accent);color:var(--gc-navy)}
.btn.gold:hover{background:#2e96ab}
.ghost-btn{background:transparent;border:1px solid var(--line);color:var(--primary)}
.ghost-btn:hover{border-color:var(--primary)}

/* ---------- Hero (interior pages: simple, text-led) ---------- */
.hero{min-height:56vh;position:relative;display:flex;align-items:flex-end;overflow:hidden;background:linear-gradient(120deg,var(--gc-navy) 0%,var(--gc-ocean) 100%);color:#fff}
.hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(11,26,37,.72),rgba(11,26,37,.18))}
.hero-inner{position:relative;z-index:2;max-width:1280px;width:100%;margin:auto;padding:80px 28px 56px}
.eyebrow{display:inline-flex;align-items:center;gap:10px;text-transform:uppercase;letter-spacing:.2em;font-size:12px;font-weight:700;color:var(--gc-seafoam)}
.eyebrow:before{content:'';width:40px;height:1px;background:currentColor}
.hero h1,.display{font-family:'Playfair Display',serif;font-weight:600;line-height:1.05;letter-spacing:-.02em}
.hero h1{font-size:clamp(42px,6vw,72px);max-width:760px;margin:16px 0 20px}
.hero p{font-size:clamp(16px,1.6vw,19px);max-width:620px;color:rgba(255,255,255,.86)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}

/* ---------- Hero (homepage: two-column split, image-led) ---------- */
.hero.hero-split{min-height:auto;padding:0;background:var(--gc-ivory);color:var(--text);align-items:stretch}
.hero.hero-split:before{display:none}
.hero-split .hero-inner{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:0;max-width:1360px;padding:0}
.hero-split-copy{padding:88px 56px 72px 32px}
.hero-split .eyebrow{color:var(--gc-ocean)}
.hero-split h1{color:var(--gc-navy);max-width:none}
.hero-split p{color:var(--gc-muted);max-width:520px}
.hero-split-media{position:relative;min-height:560px;background-size:cover;background-position:center}
.hero-split-media:after{content:'';position:absolute;inset:0;background:linear-gradient(200deg,rgba(23,56,78,0) 55%,rgba(23,56,78,.16) 100%)}
.hero-split-notice{margin-top:24px;padding:14px 18px;border-radius:14px;background:var(--gc-seafoam);color:var(--gc-navy);font-size:14px;font-weight:600;max-width:520px}

/* ---------- Quick booking widget ---------- */
.quick-book{position:relative;z-index:4;max-width:1180px;margin:-40px auto 0;background:#fff;border-radius:20px;box-shadow:var(--shadow);padding:20px;display:grid;grid-template-columns:1.2fr 1fr 1fr .8fr auto;gap:12px}
.hero-split + .quick-book{margin-top:-36px}
.quick-book label,.form-field label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);font-weight:700;margin-bottom:5px}
.quick-book input,.quick-book select,.form-field input,.form-field select,.form-field textarea{width:100%;border:1px solid var(--line);border-radius:12px;background:#fff;padding:12px 13px;color:var(--text)}

/* ---------- Sections / typography ---------- */
.section{padding:88px 28px}
.section-inner{max-width:1180px;margin:auto}
.section-head{display:flex;justify-content:space-between;gap:30px;align-items:end;margin-bottom:40px}
.section-head h2,.rich h2,.contact h2,.cta h2{font-family:'Playfair Display',serif;font-size:clamp(34px,4.4vw,54px);line-height:1.1;margin:8px 0}
.section-head p{max-width:580px;color:var(--muted)}
.section-eyebrow{color:var(--gc-ocean)}

.intro-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:64px;align-items:center}
.intro-art{min-height:460px;border-radius:var(--radius);background:linear-gradient(145deg,rgba(11,95,134,.14),rgba(23,56,78,.7)),linear-gradient(30deg,var(--gc-ocean),var(--gc-sand));position:relative;box-shadow:var(--shadow)}
.intro-art:after{content:'Tower Isle · Jamaica';position:absolute;left:24px;bottom:24px;background:#fff;padding:10px 16px;border-radius:999px;font-size:13px;font-weight:700;color:var(--gc-navy)}
.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:26px}
.feature{padding:18px 20px;border:1px solid var(--line);border-radius:16px;background:#fff}
.feature strong{display:block;margin-bottom:4px;color:var(--gc-navy)}

/* ---------- Room cards ---------- */
.room-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.room-card{background:var(--paper);border-radius:18px;overflow:hidden;border:1px solid var(--line);box-shadow:0 1px 2px rgba(23,56,78,.04);transition:.22s ease}
.room-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(23,56,78,.12)}
.room-image{height:230px;background:linear-gradient(160deg,rgba(23,56,78,.06),rgba(11,95,134,.22)),linear-gradient(35deg,var(--gc-sand),var(--gc-ocean));display:flex;align-items:end;padding:16px;color:#fff}
.room-copy{padding:22px}
.room-copy h3{font:600 24px 'Playfair Display',serif;margin:0 0 8px;color:var(--gc-navy)}
.room-copy p{font-size:14px;color:var(--muted);line-height:1.6}
.room-meta{display:flex;gap:12px;flex-wrap:wrap;color:var(--muted);font-size:13px;margin:12px 0}
.price{font-weight:800;color:var(--gc-ocean)}
.room-actions{display:flex;justify-content:space-between;align-items:center;margin-top:16px}
.text-link{font-weight:700;color:var(--gc-ocean)}
.amenity-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.amenity{background:#fff;border:1px solid var(--line);border-radius:14px;padding:16px}

/* ---------- Gallery ---------- */
.gallery-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-auto-rows:220px;gap:14px}
.gallery-item{border-radius:16px;background:linear-gradient(160deg,rgba(11,95,134,.1),rgba(23,56,78,.55)),linear-gradient(30deg,var(--gc-aqua),var(--gc-olive));position:relative;overflow:hidden}
.gallery-item:first-child{grid-row:span 2}
.gallery-item span{position:absolute;bottom:16px;left:16px;color:#fff;font-weight:700}

/* ---------- Promotion / CTA bands ---------- */
.promotion{background:var(--gc-navy);color:#fff;border-radius:24px;padding:48px;display:grid;grid-template-columns:1fr auto;align-items:center;gap:28px}
.promotion h2{font:600 clamp(32px,4.4vw,52px) 'Playfair Display',serif;margin:0}
.rich{max-width:900px;margin:auto}
.rich p{font-size:17px;color:var(--muted);line-height:1.7}
.quote{margin:40px 0;padding:26px;border-left:4px solid var(--gc-aqua);background:#fff;border-radius:0 16px 16px 0}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:44px}
.contact-card{padding:0;background:var(--gc-navy);border-radius:22px;overflow:hidden;color:#fff}
.contact-list{display:grid;gap:0}
.contact-row{padding:22px 30px;border-bottom:1px solid rgba(255,255,255,.14)}
.contact-row:last-child{border-bottom:0}
.contact-row strong{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.14em;color:var(--gc-seafoam);margin-bottom:6px}
.contact-row a,.contact-row span{font-size:19px;font-weight:700;color:#fff}

/* ---------- Booking shell ---------- */
.booking-shell{display:grid;grid-template-columns:.9fr 1.1fr;gap:32px}
.booking-summary{background:var(--gc-navy);color:#fff;border-radius:22px;padding:32px}
.booking-form{background:#fff;border:1px solid var(--line);border-radius:22px;padding:32px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-field.full{grid-column:1/-1}
.result{margin-top:18px;padding:18px;border-radius:14px;background:var(--gc-seafoam);border:1px solid #b7dde2}
.result.error{background:#fff0f0;border-color:#e9b6b6}
.cta{padding:76px 28px;text-align:center;background:linear-gradient(135deg,var(--gc-navy),var(--gc-ocean));color:#fff}
.cta p{max-width:640px;margin:0 auto 22px;color:rgba(255,255,255,.82)}

/* ---------- Footer ---------- */
.site-footer{background:var(--gc-navy);color:#fff;padding:60px 28px 24px}
.footer-grid{max-width:1180px;margin:auto;display:grid;grid-template-columns:1.4fr 1fr 1.2fr;gap:48px}
.footer-grid h3{font:600 28px 'Playfair Display',serif;margin-top:0;margin-bottom:10px}
.footer-grid p{color:rgba(255,255,255,.78);line-height:1.6}
.footer-grid a{color:rgba(255,255,255,.88);font-weight:600}
.footer-grid strong{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.14em;color:var(--gc-seafoam);margin-bottom:14px}
.footer-links{display:grid;gap:10px}
.footer-bottom{max-width:1180px;margin:44px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.16);display:flex;justify-content:space-between;color:rgba(255,255,255,.6);font-size:13px}

/* ---------- Drawer / loading ---------- */
.drawer{position:fixed;inset:0;background:rgba(11,26,37,.55);z-index:100;display:none;align-items:stretch;justify-content:flex-end}
.drawer.open{display:flex}
.drawer-card{width:min(560px,100%);background:var(--bg);padding:42px;overflow:auto;position:relative}
.drawer-close{position:absolute;right:20px;top:16px;border:0;background:transparent;font-size:32px;color:var(--gc-navy)}
.loading-shell{min-height:70vh;display:grid;place-items:center;text-align:center}
.loading-shell span{width:44px;height:44px;border:4px solid #ddd;border-top-color:var(--primary);border-radius:50%;animation:spin 1s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

@media(max-width:1024px){
  .hero-split .hero-inner{grid-template-columns:1fr}
  .hero-split-media{min-height:340px;order:-1}
  .hero-split-copy{padding:44px 28px}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:900px){
  .nav{display:none;position:absolute;top:73px;left:15px;right:15px;background:#fff;padding:20px;border-radius:16px;box-shadow:var(--shadow);flex-direction:column;align-items:flex-start}
  .nav.open{display:flex}
  .menu-btn{display:block}
  .header-actions .ghost-btn{display:none}
  .quick-book{margin:0;border-radius:0;grid-template-columns:1fr 1fr}
  .quick-book .btn{grid-column:1/-1}
  .intro-grid,.booking-shell{grid-template-columns:1fr}
  .room-grid{grid-template-columns:1fr 1fr}
  .amenity-grid{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .gallery-item:first-child{grid-row:span 1}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .header-inner{padding:12px 16px}
  .brand-copy small{display:none}
  .header-actions .btn{padding:10px 15px}
  .hero-inner{padding:64px 20px 40px}
  .hero-split-copy{padding:36px 18px}
  .section{padding:60px 20px}
  .quick-book{grid-template-columns:1fr}
  .room-grid,.amenity-grid,.feature-list,.form-grid,.footer-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:200px}
  .promotion{padding:32px 22px;grid-template-columns:1fr}
  .section-head{display:block}
  .footer-bottom{display:block}
  .drawer-card{padding:30px 18px}
}


/* GC Resort production media renderer */
.hero[style*="background-image"]{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat
}
.hero[style*="background-image"]:before{
  background:linear-gradient(
    90deg,
    rgba(8,42,59,.82),
    rgba(31,147,182,.18)
  )
}
.hero-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.45)
}
.room-image[style*="background-image"],
.gallery-item[style*="background-image"]{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat
}
.room-image span,
.gallery-item span{
  position:relative;
  z-index:2;
  text-shadow:0 2px 14px rgba(0,0,0,.55)
}
.section-eyebrow{
  color:var(--gc-tropical)
}


/* ===== GC RESORT V2 PAGE THEME (salvaged layout, new palette tokens) ===== */
body.page-rooms,
body.page-gallery,
body.page-promotions,
body.page-contact-us{
  --theme-cream:#f6f2f0;
  --theme-paper:#fbfdfe;
  --theme-ink:#0d3348;
  --theme-muted:#55707a;
  --theme-gold:var(--gc-tropical);
  --theme-gold-light:var(--gc-sky);
  --theme-radius:28px;
}
body.page-rooms .section,
body.page-gallery .section,
body.page-promotions .section,
body.page-contact-us .section{
  position:relative;
}
body.page-rooms .hero,
body.page-gallery .hero,
body.page-promotions .hero,
body.page-contact-us .hero{
  min-height:72vh;
}
body.page-rooms .hero h1,
body.page-gallery .hero h1,
body.page-promotions .hero h1,
body.page-contact-us .hero h1{
  max-width:1020px;
}
body.page-rooms .hero p,
body.page-gallery .hero p,
body.page-promotions .hero p,
body.page-contact-us .hero p{
  max-width:740px;
}
body.page-rooms .quick-book,
body.page-gallery .quick-book,
body.page-promotions .quick-book,
body.page-contact-us .quick-book{
  border-radius:24px;
}
body.page-rooms .room-card,
body.page-gallery .gallery-item,
body.page-promotions .promotion,
body.page-contact-us .contact-card{
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
/* ===== END ===== */

/* ===== GC RESORT LANGUAGE SELECTOR START ===== */

.language-selector{
  position:relative;
  flex:0 0 auto;
  z-index:80;
}

.language-toggle{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 14px;

  border:1px solid rgba(31,147,182,.22);
  border-radius:999px;

  background:#ffffff;
  color:#0d3348;

  font-size:13px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;

  cursor:pointer;
  box-shadow:0 7px 20px rgba(24,102,144,.07);
}

.language-toggle:hover,
.language-selector.open .language-toggle{
  border-color:rgba(31,147,182,.42);
  background:#eaf5f8;
}

.language-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;

  width:230px;
  display:none;
  overflow:hidden;

  padding:8px;

  border:1px solid rgba(31,147,182,.16);
  border-radius:18px;

  background:rgba(255,255,255,.98);
  box-shadow:0 22px 55px rgba(13,51,72,.18);
  backdrop-filter:blur(16px);
}

.language-selector.open .language-menu{
  display:grid;
  gap:4px;
}

.language-menu button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:12px 13px;

  border:0;
  border-radius:12px;

  background:transparent;
  color:#0d3348;

  text-align:left;
  font-size:14px;
  font-weight:700;

  cursor:pointer;
}

.language-menu button:hover{
  background:#eaf5f8;
}

.language-menu button[aria-selected="true"]{
  background:linear-gradient(135deg,#eaf5f8,#dcedf2);
  color:var(--gc-ocean);
}

.header-actions .btn.gold,
.site-header .open-booking.btn.gold{
  background:
    linear-gradient(
      135deg,
      var(--gc-ocean),
      var(--gc-aqua)
    ) !important;

  color:#ffffff !important;

  box-shadow:
    0 12px 28px rgba(31,147,182,.24) !important;
}

.header-actions .btn.gold:hover,
.site-header .open-booking.btn.gold:hover{
  background:
    linear-gradient(
      135deg,
      var(--gc-ocean),
      var(--gc-aqua)
    ) !important;

  color:#ffffff !important;
}

/* Prevent header labels from wrapping awkwardly. */

.header-actions .btn,
.header-actions .ghost-btn,
.nav a{
  white-space:nowrap;
}

/* Gallery tile labels were too close to the upper edge in PDF output. */

.gallery-item span{
  top:auto !important;
  right:18px;
  bottom:18px !important;
  left:18px !important;

  display:inline-flex;
  width:max-content;
  max-width:calc(100% - 36px);

  padding:8px 11px;
  border-radius:999px;

  background:rgba(13,51,72,.70);
  color:#ffffff !important;

  line-height:1.25;
  text-shadow:none !important;
  backdrop-filter:blur(8px);
}

/* Improve the dark About section's copy contrast. */

body.page-about-us .section-dark p,
body.page-about .section-dark p,
body.page-about-us .rich p,
body.page-about .rich p{
  color:rgba(255,255,255,.86);
}

body.page-about-us .section-dark h2,
body.page-about .section-dark h2{
  color:#ffffff;
}

/* Longer translated labels need slightly more breathing room. */

html[lang="es"] .nav,
html[lang="fr"] .nav,
html[lang="pt-BR"] .nav{
  gap:18px;
}

html[lang="es"] .header-inner,
html[lang="fr"] .header-inner,
html[lang="pt-BR"] .header-inner{
  gap:17px;
}

@media(max-width:1100px){
  .language-current{
    display:none;
  }

  .language-toggle{
    width:46px;
    padding:10px;
  }

  .language-toggle:before{
    content:'🌐';
    font-size:16px;
  }
}

@media(max-width:900px){
  .language-selector{
    margin-left:auto;
  }

  .language-menu{
    position:fixed;
    top:78px;
    right:16px;
    left:16px;

    width:auto;
    max-height:calc(100vh - 100px);
    overflow:auto;
  }

  .language-current{
    display:inline;
  }

  .language-toggle{
    width:auto;
    padding:10px 13px;
  }

  .language-toggle:before{
    content:none;
  }
}

@media(max-width:620px){
  .language-current{
    display:none;
  }

  .language-toggle{
    width:42px;
    min-height:42px;
    padding:8px;
  }

  .language-toggle:before{
    content:'🌐';
    font-size:15px;
  }
}

/* ===== GC RESORT LANGUAGE SELECTOR END ===== */

/* ===== GC RESORT OWNER TIMEZONE DISPLAY START ===== */

.booking-timezone-note{
  display:block;
  grid-column:1 / -1;
  margin:2px 2px 0;
  color:#55707a;
  font-size:11px;
  font-weight:650;
  line-height:1.45;
  letter-spacing:.015em;
}

.quick-book .booking-timezone-note{
  align-self:center;
  padding:0 4px;
}

.booking-form .booking-timezone-note{
  padding-top:2px;
}

html[lang="es"] .booking-timezone-note,
html[lang="fr"] .booking-timezone-note,
html[lang="pt-BR"] .booking-timezone-note{
  font-size:10.5px;
}

@media(max-width:900px){
  .quick-book .booking-timezone-note{
    grid-column:1 / -1;
  }
}

/* ===== GC RESORT OWNER TIMEZONE DISPLAY END ===== */

/* ===== GC RESORT VISIBLE LANGUAGE LABEL START ===== */

/*
  The selector already contains the active language name.
  These final cascade rules prevent responsive styles from reducing
  the control to only the globe icon.
*/

.language-selector{
  position:relative;
  flex:0 0 auto;
  min-width:max-content;
}

.language-toggle{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:auto !important;
  min-width:max-content !important;
  max-width:none !important;
  min-height:44px;
  padding:0 14px !important;
  white-space:nowrap;
  overflow:visible !important;
  text-overflow:clip !important;
}

.language-toggle > *{
  flex:0 0 auto;
}

/*
  Cover the class names used by both the existing selector and
  possible future selector revisions.
*/

.language-toggle .language-current,
.language-toggle .language-label,
.language-toggle .current-language,
.language-toggle .active-language,
.language-toggle [data-language-label],
.language-toggle [data-current-language]{
  display:inline !important;
  visibility:visible !important;
  opacity:1 !important;
  width:auto !important;
  max-width:none !important;
  clip:auto !important;
  clip-path:none !important;
  position:static !important;
  overflow:visible !important;
  white-space:nowrap !important;
}

/*
  Keep the complete button readable on tablets and phones.
*/

@media(max-width:1180px){
  .language-toggle{
    gap:6px;
    padding:0 11px !important;
    font-size:14px;
  }
}

@media(max-width:760px){
  .language-toggle{
    min-height:42px;
    padding:0 10px !important;
    font-size:13px;
  }
}

/* ===== GC RESORT VISIBLE LANGUAGE LABEL END ===== */

/* ===== GC RESORT CONTACT DROPDOWN UI START ===== */

.contact-menu{
  position:relative;
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  min-width:0;
}

.contact-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  min-width:max-content;
  white-space:nowrap;
  cursor:pointer;
}

.contact-dropdown{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  z-index:3000;

  display:none;
  width:320px;
  max-width:calc(100vw - 28px);
  padding:9px;

  background:#fff;
  border:1px solid rgba(24, 91, 177, .16);
  border-radius:19px;

  box-shadow:
    0 24px 64px rgba(10, 42, 92, .22),
    0 6px 18px rgba(10, 42, 92, .10);
}

.contact-menu.open .contact-dropdown{
  display:block;
}

.contact-dropdown::before{
  content:"";
  position:absolute;
  top:-7px;
  right:28px;

  width:14px;
  height:14px;

  background:#fff;
  border-top:1px solid rgba(24, 91, 177, .16);
  border-left:1px solid rgba(24, 91, 177, .16);

  transform:rotate(45deg);
}

.contact-option{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;

  width:100%;
  padding:18px 15px;

  color:var(--gc-navy);
  text-align:center;
  text-decoration:none;

  background:transparent;
  border:0;
  border-radius:13px;
}

a.contact-option:hover,
a.contact-option:focus-visible{
  background:var(--gc-seafoam);
  outline:none;
}

.contact-option + .contact-option{
  margin-top:3px;
  border-top:1px solid rgba(23,56,78,.10);
}

.contact-option-label{
  display:block;

  color:var(--gc-muted);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  line-height:1.3;
}

.contact-option-number{
  display:block;

  color:var(--gc-navy);
  font-size:23px;
  font-weight:800;
  line-height:1.3;
  white-space:nowrap;
}

.contact-option-actions{
  display:flex;
  width:100%;
  justify-content:center;
  gap:10px;
  margin-top:11px;
}

.contact-option-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:1 1 0;
  max-width:130px;

  min-height:42px;
  padding:0 16px;

  font-size:13px;
  font-weight:750;
  line-height:1;
  text-decoration:none;

  border-radius:999px;
}

/* Call = deep ocean/navy; WhatsApp = olive accent (no default WhatsApp green). */
.contact-option-actions a[href^="tel:"]{
  color:#fff;
  background:var(--gc-ocean);
}
.contact-option-actions a[href^="tel:"]:hover,
.contact-option-actions a[href^="tel:"]:focus-visible{
  background:var(--gc-navy);
  outline:none;
}
.contact-option-actions a[href^="sms:"],
.contact-option-actions a[href^="https://wa.me"]{
  color:#fff;
  background:var(--gc-olive);
}
.contact-option-actions a[href^="sms:"]:hover,
.contact-option-actions a[href^="https://wa.me"]:hover,
.contact-option-actions a[href^="sms:"]:focus-visible,
.contact-option-actions a[href^="https://wa.me"]:focus-visible{
  background:#646b30;
  outline:none;
}

/*
  Tablet layout: anchor the dropdown to the right side of the header.
  This prevents it from covering the navigation or booking button.
*/
@media(max-width:1180px){
  .contact-dropdown{
    right:0;
  }

  .contact-option-number{
    font-size:18px;
  }
}

/*
  Narrow phones: display the menu as a centered floating card beneath
  the fixed header instead of allowing it to run beyond the viewport.
*/
@media(max-width:760px){
  .contact-dropdown{
    position:fixed;
    top:82px;
    right:12px;
    left:12px;

    width:auto;
    max-width:none;
    max-height:calc(100vh - 100px);
    overflow:auto;

    border-radius:20px;
  }

  .contact-dropdown::before{
    display:none;
  }

  .contact-option{
    padding:15px 16px;
  }

  .contact-option-number{
    font-size:18px;
  }

  .contact-option-actions a{
    min-height:44px;
  }
}

/* ===== GC RESORT CONTACT DROPDOWN UI END ===== */

/* ===== GC RESORT MOBILE CONTACT PLACEMENT CSS START ===== */

@media(max-width:900px){
  /*
    The contact control is moved into .nav by JavaScript on mobile.
  */

  .nav .contact-menu{
    display:flex !important;
    width:100%;
    margin:8px 0 2px;
    padding:0;
  }

  .nav .contact-toggle{
    display:flex !important;
    width:100%;
    min-height:46px;
    justify-content:center;
    padding:11px 16px;
  }

  /*
    The floating contact card stays inside the phone viewport.
  */

  .nav .contact-dropdown{
    position:fixed;
    top:82px;
    right:12px;
    left:12px;

    width:auto;
    max-width:none;
    max-height:calc(100vh - 100px);
    overflow:auto;

    z-index:5000;
  }

  .nav .contact-dropdown::before{
    display:none;
  }
}

@media(max-width:620px){
  .nav .contact-menu{
    margin-top:10px;
  }

  .nav .contact-toggle{
    min-height:44px;
  }
}

/* ===== GC RESORT MOBILE CONTACT PLACEMENT CSS END ===== */

/* ===== GC RESORT MOBILE HEADER ACTIONS START ===== */

@media(max-width:900px){
  /*
    Once the actions are moved into .nav, the empty desktop action
    container must not reserve space in the mobile header.
  */

  .header-actions{
    display:none !important;
    width:0 !important;
    min-width:0 !important;
    flex:0 0 0 !important;
    overflow:hidden !important;
  }

  /*
    Contact us and Book now become full-width navigation actions.
  */

  .nav .contact-menu{
    display:flex !important;
    width:100%;
    margin:10px 0 0;
  }

  .nav .contact-toggle{
    display:flex !important;
    width:100% !important;
    min-width:0 !important;
    min-height:46px;
    justify-content:center;
    padding:11px 16px !important;
  }

  .nav > .open-booking{
    display:flex !important;
    align-items:center;
    justify-content:center;

    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    min-height:46px;

    margin:8px 0 2px;
    padding:11px 16px !important;

    white-space:normal !important;
    text-align:center;
  }

  /*
    Keep the floating contact options inside the device viewport.
  */

  .nav .contact-dropdown{
    position:fixed;
    top:82px;
    right:12px;
    left:12px;

    width:auto;
    max-width:none;
    max-height:calc(100vh - 100px);
    overflow:auto;

    z-index:5000;
  }

  .nav .contact-dropdown::before{
    display:none;
  }

  /*
    Prevent translated header labels from creating page-level overflow.
  */

  .header-inner,
  .site-header,
  #site{
    max-width:100%;
    min-width:0;
  }

  .brand,
  .language-selector,
  .menu-btn{
    flex-shrink:1;
    min-width:0;
  }
}

@media(max-width:620px){
  .nav > .open-booking,
  .nav .contact-toggle{
    min-height:44px;
  }
}

/* ===== GC RESORT MOBILE HEADER ACTIONS END ===== */

/* ===== GC RESORT PORTUGUESE MOBILE WIDTH FIX START ===== */

@media(max-width:420px){
  html[lang="pt-BR"] .language-toggle{
    gap:4px !important;
    padding:0 7px !important;
    font-size:12px !important;
    letter-spacing:-0.01em;
  }
}

/* ===== GC RESORT PORTUGUESE MOBILE WIDTH FIX END ===== */
