/* ==========================================================================
   AB Tropical Stays -- redesign stylesheet
   Loaded after css/style.css so it wins wherever the two overlap.
   Everything new is namespaced with .abts- or a t- prefix to avoid fighting
   the old template on pages that have not been migrated yet.
   ========================================================================== */

:root {
  /* Emerald & Gold.
     Warm ivory ground, deep emerald for structure, real gold for anything
     carrying value. The photographs still supply the colour; emerald and gold
     frame them rather than compete.

     Every value below is checked against WCAG AA (4.5:1 for text). Two were
     adjusted from the option shown in the preview because they missed:
       - muted labels  #6D7A70 -> #66736A  (4.27 -> 4.72)
       - gold on ivory #96702A -> #8E6926  (4.29 -> 4.75)
     Do not lighten either without re-checking; they are used at 10-11px. */
  --t-bg:         #FBF9F3;
  --t-surface:    #FFFFFF;
  --t-surface-2:  #F1F0E7;
  --t-text:       #16241C;
  --t-text-dim:   #4C5B51;
  --t-text-mute:  #66736A;
  --t-line:       #E1E5DC;
  --t-line-soft:  #EDEFE8;

  /* Gold in two weights. The deep one is the only one allowed to carry text;
     the soft one fails at small sizes so it stays decorative. */
  --t-brand:      #0B5C3F;
  --t-brand-dim:  #4C8A70;
  --t-accent:     #8E6926;
  --t-gold-soft:  #D8AE4E;

  /* Deep emerald is the second surface: top strip, amenity band, footer. */
  --t-dark:       #0C3325;
  --t-on-dark:    #EFF5EF;
  --t-on-brand:   #EFF5EF;

  /* WhatsApp green, taken down so it reads as a considered button rather than a
     glowing block. Dark enough that the white label clears 4.5:1. */
  --t-wa:         #1B8054;
  --t-wa-hover:   #166845;

  /* Rectangular buttons, as before -- the pill version did not suit the header.
     What was actually wrong was the padding: the label sat hard against the
     border. These values keep the original shape and give the text room. */
  --t-btn-radius:  4px;
  --t-btn-pad:     14px 26px;
  --t-btn-pad-sm:  12px 22px;

  /* image overlays and the type that sits on top of photographs */
  --t-overlay:        rgba(9,32,23,.78);
  --t-overlay-strong: rgba(7,26,19,.95);
  --t-hero-text:      #FBFAF6;
  --t-hero-dim:       #D9E5DA;
  --t-hero-accent:    #D8AE4E;
  --t-hero-cta-ink:   #251A02;

  --t-display: "Segoe UI Variable Display", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --t-body:    "Segoe UI Variable Text", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --t-serif:   "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --t-mono:    "Cascadia Mono", Consolas, "SF Mono", ui-monospace, monospace;

  --t-shadow:    0 1px 2px rgba(18,38,28,.05), 0 10px 34px rgba(18,38,28,.09);
  --t-shadow-lg: 0 2px 6px rgba(18,38,28,.08), 0 26px 70px rgba(18,38,28,.16);
}

/* --- resets scoped to new pages ----------------------------------------- */
.abts body, body.abts-page { background: var(--t-bg); color: var(--t-text); }
.abts-page { font-family: var(--t-body); font-size: 16px; line-height: 1.62; }
.abts-page h1, .abts-page h2, .abts-page h3, .abts-page h4 {
  font-family: var(--t-display);
  letter-spacing: -.02em;
  margin: 0;
  color: var(--t-text);
}
.abts-page p { margin: 0; }
.abts-page img { max-width: 100%; }
.abts-page a { color: inherit; text-decoration: none; }
.abts-page a:hover { text-decoration: none; }
.abts-page :focus-visible { outline: 2px solid var(--t-accent); outline-offset: 3px; }

.t-wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.t-eyebrow {
  font-family: var(--t-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--t-brand);
  margin: 0 0 10px;
}
.t-sec { padding: 64px 0; }
.t-sec--alt { background: var(--t-surface-2); }
.t-sechead { max-width: 58ch; margin-bottom: 34px; }
.t-sechead h2 {
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}
.t-sechead p { color: var(--t-text-dim); margin-top: 12px; }

/* --- top contact strip --------------------------------------------------- */
.t-topbar {
  background: var(--t-dark);
  color: var(--t-on-dark);
  font-family: var(--t-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
}
.t-topbar .t-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.t-topbar a { color: var(--t-on-dark); }
.t-topbar a:hover { text-decoration: underline; }
.t-topbar-links { display: flex; gap: 20px; }
@media (max-width: 700px) { .t-topbar-right { display: none; } }

/* --- header / nav -------------------------------------------------------- */
.t-header {
  background: var(--t-surface);
  border-bottom: 1px solid var(--t-line-soft);
  position: sticky;
  top: 0;
  z-index: 900;
}
.t-header .t-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.t-logo { display: block; padding: 2px 0; }
.t-logo img { max-height: 52px; width: auto; display: block; }
.t-nav { display: flex; align-items: center; gap: 26px; }
.t-nav a {
  font-size: 14.5px;
  color: var(--t-text-dim);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.t-nav a:hover { color: var(--t-text); }
.t-nav a.active { color: var(--t-text); font-weight: 650; border-bottom-color: var(--t-accent); }
.t-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--t-wa);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 650;
  padding: var(--t-btn-pad-sm);
  border-radius: var(--t-btn-radius);
  border-bottom: 0 !important;
  line-height: 1.2;
  white-space: nowrap;
}
.t-nav-cta:hover { background: var(--t-wa-hover); color: #fff !important; }
.t-nav-cta svg { width: 17px; height: 17px; }

.t-burger {
  display: none;
  background: none;
  border: 1px solid var(--t-line);
  border-radius: 3px;
  padding: 8px 10px;
  cursor: pointer;
}
.t-burger span { display: block; width: 20px; height: 2px; background: var(--t-text); margin: 4px 0; }
@media (max-width: 900px) {
  .t-burger { display: block; }
  .t-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--t-surface);
    border-bottom: 1px solid var(--t-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: var(--t-shadow);
  }
  .t-nav.open { display: flex; }
  .t-nav a { padding: 11px 0; border-bottom: 1px solid var(--t-line-soft); }
  .t-nav a.active { border-bottom-color: var(--t-line-soft); }
  .t-nav-cta { justify-content: center; margin-top: 12px; border: 0; }
}

/* --- hero carousel ------------------------------------------------------- */
.t-hero { position: relative; overflow: hidden; background: var(--t-overlay-strong); height: 78vh; min-height: 460px; max-height: 780px; }
.t-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.t-slide.on { opacity: 1; pointer-events: auto; }
.t-slide > img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); }
.t-slide.on > img { animation: t-kenburns 9s ease-out forwards; }
@keyframes t-kenburns { from { transform: scale(1.02); } to { transform: scale(1.09); } }
.t-slide-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,28,20,.5) 0%, rgba(8,28,20,.08) 32%, rgba(8,28,20,.88) 100%);
}
.t-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding-bottom: 54px;
  color: var(--t-hero-text);
}
.t-slide-cap .t-wrap { display: flex; flex-direction: column; gap: 10px; }
.t-slide-cap .t-eyebrow { color: var(--t-hero-dim); margin: 0; }
.t-slide-cap h2 {
  font-size: clamp(30px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.038em;
  color: var(--t-hero-text);
  max-width: 18ch;
  text-wrap: balance;
}
.t-slide-facts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-family: var(--t-mono); font-size: 13px; color: var(--t-hero-dim);
}
.t-slide-facts b {
  font-family: var(--t-display); font-size: 18px; font-weight: 700;
  color: var(--t-hero-accent); letter-spacing: -.01em;
}
.t-slide-facts i { font-style: normal; opacity: .45; }
.t-slide-tag {
  font-family: var(--t-serif); font-style: italic; font-size: 17px;
  color: var(--t-hero-dim); max-width: 46ch;
}
.t-slide-cta {
  align-self: flex-start; margin-top: 8px;
  background: var(--t-hero-accent); color: var(--t-hero-cta-ink) !important;
  font-size: 13.5px; font-weight: 700; line-height: 1.2;
  padding: 15px 30px; border-radius: var(--t-btn-radius);
}
.t-slide-cta:hover { background: #DFA43C; }
.t-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(239,245,239,.38);
  background: rgba(8,28,20,.38); color: var(--t-hero-text);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 4;
}
.t-hero-nav:hover { background: rgba(8,28,20,.78); }
.t-hero-nav svg { width: 18px; height: 18px; }
.t-hero-prev { left: 22px; }
.t-hero-next { right: 22px; }
.t-hero-dots { position: absolute; bottom: 24px; left: 0; right: 0; z-index: 4; }
.t-hero-dots .t-wrap { display: flex; gap: 8px; }
.t-hero-dots button {
  width: 30px; height: 3px; border: 0; padding: 0; border-radius: 2px;
  background: rgba(239,245,239,.35); cursor: pointer;
}
.t-hero-dots button[aria-current="true"] { background: var(--t-hero-accent); }
@media (max-width: 700px) {
  .t-hero { height: auto; aspect-ratio: 3 / 4; min-height: 0; max-height: none; }
  .t-hero-nav { display: none; }
  .t-slide-tag { display: none; }
  .t-slide-cap { padding-bottom: 46px; }
}

/* --- property cards ------------------------------------------------------ */
.t-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
}
.t-card {
  display: flex; flex-direction: column;
  background: var(--t-surface);
  border: 1px solid var(--t-line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease;
}
.t-card:hover { box-shadow: var(--t-shadow); transform: translateY(-3px); }
.t-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--t-surface-2); }
.t-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.t-card:hover .t-card-img img { transform: scale(1.05); }
.t-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--t-overlay); color: var(--t-hero-text);
  font-family: var(--t-mono); font-size: 10.5px;
  letter-spacing: .11em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px;
}
.t-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.t-geo {
  font-family: var(--t-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--t-brand);
}
.t-card h3 { font-size: 19px; font-weight: 700; line-height: 1.2; }
.t-amrow { display: flex; gap: 9px; color: var(--t-text-mute); }
.t-amrow svg { width: 17px; height: 17px; }
.t-card-foot {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--t-line-soft);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.t-price small {
  display: block; font-family: var(--t-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--t-text-mute);
}
.t-price b {
  font-family: var(--t-display); font-size: 22px; font-weight: 700;
  letter-spacing: -.02em; color: var(--t-accent);
  font-variant-numeric: tabular-nums;
}
.t-go {
  font-family: var(--t-mono); font-size: 11.5px;
  border-bottom: 1px solid var(--t-accent); padding-bottom: 2px;
}

/* --- welcome ------------------------------------------------------------- */
.t-welcome { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 860px) { .t-welcome { grid-template-columns: 1fr; gap: 30px; } }
.t-welcome-imgs { display: grid; grid-template-columns: 1.25fr 1fr; gap: 10px; }
.t-welcome-imgs figure { margin: 0; overflow: hidden; border-radius: 3px; background: var(--t-surface-2); }
.t-welcome-imgs figure:first-child { grid-row: span 2; aspect-ratio: 3 / 4.4; }
.t-welcome-imgs figure:not(:first-child) { aspect-ratio: 4 / 3; }
.t-welcome-imgs img { width: 100%; height: 100%; object-fit: cover; }
.t-welcome-text { display: flex; flex-direction: column; gap: 15px; }
.t-welcome-text h2 { font-size: clamp(24px, 3.2vw, 35px); font-weight: 700; line-height: 1.1; }
.t-welcome-text p { color: var(--t-text-dim); }
.t-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 14px; padding-top: 20px;
  border-top: 1px solid var(--t-line);
}
.t-stats > div { display: flex; flex-direction: column; gap: 5px; }
.t-stats span {
  font-family: var(--t-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--t-text-mute);
}
.t-stats b {
  font-family: var(--t-display); font-size: 19px;
  font-weight: 700; letter-spacing: -.02em; color: var(--t-text);
  line-height: 1.25;
}
.t-stats-from b { color: var(--t-accent); font-variant-numeric: tabular-nums; }
.t-stats-from b small {
  font-family: var(--t-mono); font-size: 11px; font-weight: 400;
  color: var(--t-text-mute); letter-spacing: .06em;
}

/* --- amenity band -------------------------------------------------------- */
.t-band { background: var(--t-dark); padding: 56px 0; }
.t-band h2 {
  font-family: var(--t-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(239,245,239,.58); margin-bottom: 30px;
}
.t-band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px 20px; }
.t-band-grid div { display: flex; align-items: center; gap: 12px; color: var(--t-on-dark); font-size: 14.5px; }
.t-band-grid svg { width: 21px; height: 21px; flex: none; color: var(--t-gold-soft); }

/* --- gallery strip ------------------------------------------------------- */
.t-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.t-strip figure {
  margin: 0; flex: 0 0 250px; aspect-ratio: 4 / 3;
  overflow: hidden; border-radius: 3px; background: var(--t-surface-2);
  scroll-snap-align: start;
}
.t-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.t-strip figure:hover img { transform: scale(1.05); }

/* --- property page ------------------------------------------------------- */
.t-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 16 / 7;
  min-height: 280px;
}
.t-gallery figure { margin: 0; overflow: hidden; position: relative; background: var(--t-surface-2); cursor: pointer; }
.t-gallery figure:first-child { grid-row: span 2; }
.t-gallery img { width: 100%; height: 100%; object-fit: cover; }
.t-gallery-more {
  position: absolute; right: 10px; bottom: 10px;
  background: var(--t-overlay); color: var(--t-hero-text);
  font-family: var(--t-mono); font-size: 11.5px;
  padding: 6px 12px; border-radius: 2px;
}
.t-gallery-empty {
  display: flex; align-items: center; justify-content: center; height: 100%;
  background: var(--t-surface-2); color: var(--t-text-mute);
  font-family: var(--t-mono); font-size: 11px; text-align: center; padding: 10px;
}
@media (max-width: 700px) {
  .t-gallery { grid-template-columns: 1fr 1fr; aspect-ratio: 4 / 3; min-height: 0; }
  .t-gallery figure:first-child { grid-column: span 2; grid-row: span 1; }
  .t-gallery figure:nth-child(n+4) { display: none; }
}

.t-stay { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .t-stay { grid-template-columns: 1fr; gap: 30px; } }
.t-stay h1 { font-size: clamp(27px, 3.8vw, 40px); font-weight: 700; line-height: 1.06; letter-spacing: -.032em; }
.t-stay-tag {
  font-family: var(--t-serif); font-style: italic; font-size: 18.5px;
  line-height: 1.5; color: var(--t-text-dim); margin-top: 14px; max-width: 50ch;
}
.t-stay-desc { margin-top: 18px; color: var(--t-text-dim); max-width: 68ch; }
.t-stay-desc p + p { margin-top: 12px; }

.t-block { margin-top: 40px; }
.t-block > h2 {
  font-family: var(--t-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase; color: var(--t-brand);
  padding-bottom: 10px; border-bottom: 1px solid var(--t-line); margin-bottom: 20px;
}

.t-tariff { width: 100%; border-collapse: collapse; }
.t-tariff th {
  text-align: left; font-family: var(--t-mono); font-size: 10.5px;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-text-mute); padding: 0 0 9px;
}
.t-tariff th:last-child, .t-tariff td:last-child { text-align: right; }
.t-tariff td { padding: 15px 0; border-top: 1px solid var(--t-line-soft); vertical-align: top; }
.t-rt { font-weight: 650; font-size: 16px; }
.t-rt small { display: block; font-weight: 400; font-size: 13.5px; color: var(--t-text-dim); margin-top: 3px; max-width: 52ch; }
.t-units { font-family: var(--t-mono); font-size: 12px; color: var(--t-text-mute); white-space: nowrap; }
.t-tf {
  font-family: var(--t-display); font-weight: 700; font-size: 20px;
  letter-spacing: -.02em; color: var(--t-accent); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.t-tf small {
  display: block; font-family: var(--t-mono); font-size: 10px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase; color: var(--t-text-mute);
}
.t-tf a { display: block; font-family: var(--t-mono); font-size: 11px; color: var(--t-wa); margin-top: 6px; }
@media (max-width: 560px) { .t-units, .t-tariff th:nth-child(2) { display: none; } }

.t-amgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 15px 20px; }
.t-amgrid div { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.t-amgrid svg { width: 20px; height: 20px; color: var(--t-brand); flex: none; }

.t-aside {
  background: var(--t-surface); border: 1px solid var(--t-line);
  border-radius: 6px; padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  position: sticky; top: 104px;
}
.t-aside .t-price b { font-size: 27px; }
.t-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--t-btn-pad); border-radius: var(--t-btn-radius);
  font-size: 14.5px; font-weight: 650; line-height: 1.2;
  border: 1px solid var(--t-line); background: var(--t-surface);
  color: var(--t-text); cursor: pointer; font-family: inherit;
  text-align: center;
}
.t-btn:hover { background: var(--t-surface-2); border-color: var(--t-brand-dim); }
.t-btn svg { width: 18px; height: 18px; flex: none; }
.t-btn--wa { background: var(--t-wa); border-color: var(--t-wa); color: #fff !important; }
.t-btn--wa:hover { background: var(--t-wa-hover); border-color: var(--t-wa-hover); }
.t-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 6px; border-top: 1px solid var(--t-line-soft); }
.t-meta div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--t-text-dim); }
.t-meta b { font-family: var(--t-mono); font-size: 12.5px; font-weight: 400; color: var(--t-text); text-align: right; }

/* --- sticky mobile contact bar ------------------------------------------ */
.t-mobilebar { display: none; }
@media (max-width: 900px) {
  .t-mobilebar {
    display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: var(--t-surface); border-top: 1px solid var(--t-line);
    box-shadow: 0 -10px 30px rgba(18,38,28,.12);
  }
  .t-mobilebar .t-btn { padding: 12px 8px; font-size: 13px; gap: 7px; }
  body.abts-page { padding-bottom: 74px; }
}

/* --- footer -------------------------------------------------------------- */
.t-footer { background: var(--t-text); color: rgba(239,245,239,.82); padding: 48px 0 26px; }
.t-footer .t-foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px;
}
@media (max-width: 860px) { .t-footer .t-foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.t-footer h4 {
  font-family: var(--t-mono); font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(239,245,239,.55); margin-bottom: 13px;
}
.t-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.t-footer a { color: rgba(239,245,239,.82); }
.t-footer a:hover { color: var(--t-hero-text); text-decoration: underline; }
.t-foot-brand { font-family: var(--t-display); font-size: 20px; font-weight: 700; color: var(--t-hero-text); margin-bottom: 10px; }
.t-foot-note { font-size: 13px; line-height: 1.6; max-width: 36ch; color: rgba(239,245,239,.66); }
.t-foot-bottom {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(239,245,239,.16);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: rgba(239,245,239,.6);
}

/* --- inner page header --------------------------------------------------- */
.t-pagehead {
  position: relative;
  background: var(--t-dark);
  overflow: hidden;
}
.t-pagehead > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .38;
}
.t-pagehead .t-wrap {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
}
.t-pagehead h1 {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--t-hero-text);
}
.t-pagehead p {
  color: var(--t-hero-dim);
  margin-top: 12px;
  max-width: 56ch;
}
.t-pagehead .t-eyebrow { color: var(--t-gold-soft); }
.t-crumb {
  font-family: var(--t-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t-hero-dim);
  margin-top: 18px;
}
.t-crumb a { color: var(--t-hero-dim); }
.t-crumb a:hover { color: var(--t-hero-text); text-decoration: underline; }

/* --- filter chips (shared by Stays and Gallery) -------------------------- */
.t-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.t-chip {
  font-family: var(--t-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 9px 16px;
  border: 1px solid var(--t-line);
  background: transparent;
  color: var(--t-text-dim);
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.t-chip span {
  font-size: 10.5px;
  background: var(--t-surface-2);
  color: var(--t-text-mute);
  border-radius: 10px;
  padding: 1px 7px;
}
.t-chip:hover { border-color: var(--t-brand-dim); color: var(--t-text); }
.t-chip.on { background: var(--t-brand); border-color: var(--t-brand); color: var(--t-on-brand); }
.t-chip.on span { background: rgba(255,255,255,.2); color: var(--t-on-brand); }

/* --- gallery grid -------------------------------------------------------- */
.t-masonry { column-count: 4; column-gap: 14px; }
@media (max-width: 1100px) { .t-masonry { column-count: 3; } }
@media (max-width: 760px)  { .t-masonry { column-count: 2; } }
@media (max-width: 460px)  { .t-masonry { column-count: 1; } }

.t-shot {
  break-inside: avoid;
  margin: 0 0 14px;
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--t-surface-2);
  cursor: zoom-in;

  /* Without these, clicking a photograph selects it and the browser paints its
     selection colour over the picture -- which looks like a blue wash. Tapping
     on a phone does the same via the tap highlight. */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.t-shot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.t-shot:hover img { transform: scale(1.04); }

/* A deliberate hover wash, in the site's own colour rather than a stray
   leftover div from the old template. */
.t-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,51,37,0) 45%, rgba(12,51,37,.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.t-shot:hover::after { opacity: 1; }

.t-shot-zoom {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--t-overlay);
  color: var(--t-hero-text);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.t-shot:hover .t-shot-zoom { opacity: 1; transform: translateY(0); }
.t-shot-zoom svg { width: 15px; height: 15px; }

/* --- about page ---------------------------------------------------------- */
.t-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .t-split { grid-template-columns: 1fr; gap: 32px; } }
.t-split--flip > div:first-child { order: 2; }
@media (max-width: 900px) { .t-split--flip > div:first-child { order: 0; } }
.t-prose { color: var(--t-text-dim); }
.t-prose p + p { margin-top: 14px; }
.t-prose h2 {
  font-size: clamp(24px, 3.2vw, 35px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--t-text);
  margin-bottom: 16px;
}
.t-collage { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; }
.t-collage figure { margin: 0; overflow: hidden; border-radius: 4px; background: var(--t-surface-2); }
.t-collage figure:first-child { grid-row: span 2; aspect-ratio: 3 / 4.3; }
.t-collage figure:not(:first-child) { aspect-ratio: 4 / 3; }
.t-collage img { width: 100%; height: 100%; object-fit: cover; }

.t-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--t-line-soft); border: 1px solid var(--t-line-soft); }
.t-fact { background: var(--t-bg); padding: 22px; }
.t-fact b {
  display: block;
  font-family: var(--t-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -.02em; color: var(--t-text);
  margin-bottom: 4px;
}
.t-fact span { font-size: 14px; color: var(--t-text-dim); }
.t-fact svg { width: 22px; height: 22px; color: var(--t-brand); margin-bottom: 10px; }

/* --- lightbox ------------------------------------------------------------ */
.t-lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: var(--t-overlay-strong);
  align-items: center; justify-content: center;
}
.t-lightbox.open { display: flex; }
.t-lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 2px; }
.t-lb-close, .t-lb-prev, .t-lb-next {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.t-lb-close:hover, .t-lb-prev:hover, .t-lb-next:hover { background: rgba(255,255,255,.22); }
.t-lb-close { top: 22px; right: 22px; font-size: 22px; line-height: 1; }
.t-lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.t-lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.t-lb-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--t-mono); font-size: 12px; color: rgba(255,255,255,.75);
}
@media (max-width: 600px) { .t-lb-prev, .t-lb-next { width: 40px; height: 40px; } }

/* --- enquiry form -------------------------------------------------------- */
.t-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .t-form { grid-template-columns: 1fr; } }
.t-field { display: flex; flex-direction: column; gap: 6px; }
.t-field--full { grid-column: 1 / -1; }
.t-field label {
  font-family: var(--t-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--t-text-mute);
}
/* The "Send enquiry" button is an <input type="submit"> sitting inside a
   .t-field, so a bare ".t-field input" selector also matched it -- and at
   specificity (0,1,1) it beat .t-btn--wa (0,1,0). The button was being given a
   white background while .t-btn--wa kept "color: #fff !important": white text
   on white. The :not() list keeps buttons out of the text-box styling. */
.t-field input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
.t-field select,
.t-field textarea {
  font-family: inherit; font-size: 15px; color: var(--t-text);
  background: var(--t-surface); border: 1px solid var(--t-line);
  border-radius: 3px; padding: 11px 13px; width: 100%;
}
.t-field textarea { min-height: 104px; resize: vertical; }

.t-field input:not([type=submit]):not([type=button]):focus,
.t-field select:focus,
.t-field textarea:focus {
  outline: none; border-color: var(--t-brand-dim);
  box-shadow: 0 0 0 3px rgba(11,92,63,.14);
}
.t-field input::placeholder, .t-field textarea::placeholder { color: var(--t-text-mute); }

/* The submit button is a real button and should look like the others. */
.t-field .t-btn { width: auto; }
.t-note {
  background: var(--t-surface-2); border-left: 3px solid var(--t-brand);
  padding: 14px 16px; font-size: 14px; color: var(--t-text-dim); border-radius: 0 3px 3px 0;
}
.t-alert {
  background: #E9F2EC; border: 1px solid #BCD8C7; color: #0B4A32;
  padding: 14px 16px; border-radius: 3px; font-size: 14.5px; margin-bottom: 20px;
}

/* --- whatsapp float ------------------------------------------------------ */
.t-wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 940;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--t-wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
  transition: transform .25s ease;
}
.t-wa-float:hover { transform: scale(1.07); }
.t-wa-float svg { width: 30px; height: 30px; }
@media (max-width: 900px) { .t-wa-float { bottom: 84px; } }

@media (prefers-reduced-motion: reduce) {
  .abts-page *, .t-slide, .t-card, .t-strip img { transition: none !important; animation: none !important; }
  .t-card:hover { transform: none; }
}
