/* ============================================
   TADOBA TIGER HOOD RESORT — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green:        #0F3D2E;
  --green-mid:    #1a5c44;
  --green-light:  #e8f0ec;
  --gold:         #E6C200;
  --gold-dark:    #c4a500;
  --white:        #FFFFFF;
  --black:        #0B0B0B;
  --grey:         #6b7280;
  --grey-light:   #f4f4f2;
  --border:       rgba(15,61,46,0.12);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Poppins', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 100px;
  --nav-h: 76px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--grey);
  font-size: 0.975rem;
  font-weight: 300;
  max-width: 640px;
}

/* ─── LAYOUT ─── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--grey-light);
}

.section--dark {
  background: var(--green);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label--light {
  color: rgba(230,194,0,0.85);
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 28px;
}

.divider--center {
  margin: 18px auto 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
}

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

.btn--ghost:hover {
  background: var(--gold);
  color: var(--green);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: var(--green);
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger — themed gold pill */
.navbar__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,163,91,0.10);
  border: 1.5px solid rgba(200,163,91,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.navbar__toggle:hover {
  background: rgba(200,163,91,0.20);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200,163,91,0.25);
}
.navbar__toggle:active { transform: scale(0.94); }

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.navbar__toggle span:nth-child(2) { width: 16px; align-self: flex-end; margin-right: 11px; }
.navbar__toggle:hover span:nth-child(2) { width: 22px; margin-right: 11px; }

.navbar__toggle.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(200,163,91,0.45);
}
.navbar__toggle.active span { background: var(--green); }

/* Mobile nav */
.navbar__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--green);
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease 0.35s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, visibility 0s linear 0.75s;
}

.navbar__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.navbar__mobile a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateX(-22px);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s,
    padding-left 0.25s;
}
/* Reverse stagger on close (top item leaves first) */
.navbar__mobile a:nth-child(1) { transition-delay: 0.30s, 0.30s, 0s, 0s; }
.navbar__mobile a:nth-child(2) { transition-delay: 0.25s, 0.25s, 0s, 0s; }
.navbar__mobile a:nth-child(3) { transition-delay: 0.20s, 0.20s, 0s, 0s; }
.navbar__mobile a:nth-child(4) { transition-delay: 0.15s, 0.15s, 0s, 0s; }
.navbar__mobile a:nth-child(5) { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.navbar__mobile a:nth-child(6) { transition-delay: 0.05s, 0.05s, 0s, 0s; }

.navbar__mobile a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,163,91,0.7);
  opacity: 0;
  transform: scale(0.4);
  display: inline-block;
  flex-shrink: 0;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__mobile.open a {
  opacity: 1;
  transform: translateX(0);
}
.navbar__mobile.open a::before {
  opacity: 1;
  transform: scale(1);
  animation: liveBlink 1.6s ease-in-out infinite;
}
/* Forward stagger on open (top item arrives first) */
.navbar__mobile.open a:nth-child(1) { transition-delay: 0.05s, 0.05s, 0s, 0s; }
.navbar__mobile.open a:nth-child(2) { transition-delay: 0.12s, 0.12s, 0s, 0s; }
.navbar__mobile.open a:nth-child(3) { transition-delay: 0.19s, 0.19s, 0s, 0s; }
.navbar__mobile.open a:nth-child(4) { transition-delay: 0.26s, 0.26s, 0s, 0s; }
.navbar__mobile.open a:nth-child(5) { transition-delay: 0.33s, 0.33s, 0s, 0s; }
.navbar__mobile.open a:nth-child(6) { transition-delay: 0.40s, 0.40s, 0s, 0s; }
@keyframes liveBlink {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(200,163,91,0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(200,163,91,0);
  }
}

.navbar__mobile a:hover {
  color: var(--gold);
  padding-left: 42px;
}
.navbar__mobile a:hover::before {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,163,91,0.35);
}

/* Hamburger active state */
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 52vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--green);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--white);
  margin-top: 8px;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,61,46,0.1);
}

.card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card__body {
  padding: 28px;
}

.card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 22px;
}

/* ─── PRICE TAG ─── */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}

.price-tag__amount {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 600;
}

.price-tag__unit {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ─── HIGHLIGHT ICONS ─── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.highlight-item {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
  transition: background 0.3s;
}

.highlight-item:hover {
  background: var(--green-light);
}

.highlight-item__icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}

.highlight-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.highlight-item__text {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.75;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.6;
  background: none;
  border: none;
  padding: 12px;
  transition: opacity 0.2s;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

/* ─── FORM ─── */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ─── INFO BOX ─── */
.info-box {
  background: var(--green-light);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--green);
  max-width: none;
}

/* ─── TWO-COL SPLIT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split--reverse .split__img {
  order: 2;
}

.split--reverse .split__content {
  order: 1;
}

.split__img {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split__img:hover img {
  transform: scale(1.03);
}

/* ─── SAFARI PRICING ─── */
.safari-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.safari-price-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.safari-price-card:hover {
  border-color: var(--gold);
  background: var(--green-light);
}

.safari-price-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.safari-price-card__price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.safari-price-card__sub {
  font-size: 0.8rem;
  color: var(--grey);
}

.safari-price-card--featured {
  background: var(--green);
  border-color: var(--green);
}

.safari-price-card--featured .safari-price-card__label,
.safari-price-card--featured .safari-price-card__price,
.safari-price-card--featured .safari-price-card__sub {
  color: rgba(175, 162, 18, 0.8);
}

.safari-price-card--featured .safari-price-card__price {
  color: var(--gold);
}

/* ─── PROCESS STEPS ─── */
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--white);
  padding: 40px 28px;
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
  max-width: none;
}

/* ─── MAP ─── */
.map-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ─── CONTACT GRID ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 64px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split--reverse .split__img,
  .split--reverse .split__content {
    order: unset;
  }

  .split__img {
    aspect-ratio: 16/9;
  }

  .safari-pricing {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  /* ── BENTO GRID for "Why Guests Choose Us" ── */
  .highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(120px, auto);
    gap: 12px;
    background: transparent !important;
    border: none !important;
  }
  .highlights-grid .highlight-item {
    position: relative;
    margin: 0;
    padding: 18px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: none;
    box-shadow: 0 6px 18px rgba(11,26,18,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: transform .2s ease;
  }
  .highlights-grid .highlight-item:active { transform: scale(0.98); }
  .highlights-grid .highlight-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 100% 0%, rgba(200,163,91,0.18), transparent 60%);
    pointer-events: none;
  }
  .highlights-grid .highlight-item__icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-block;
  }
  .highlights-grid .highlight-item__title {
    font-family: var(--font-serif);
    font-size: 0.98rem;
    color: var(--green);
    margin-bottom: 4px;
  }
  .highlights-grid .highlight-item__text {
    font-size: 0.74rem;
    color: var(--grey);
    line-height: 1.5;
  }

  /* Bento 2x2 — each tile gets its own personality */
  .highlights-grid { grid-auto-rows: 1fr; }

  .highlights-grid .highlight-item:nth-child(1) {
    background: linear-gradient(160deg, #0b1a12 0%, #1a3a26 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 26px rgba(11,26,18,0.22);
  }
  .highlights-grid .highlight-item:nth-child(1) .highlight-item__title { color: #f5e9cf; }
  .highlights-grid .highlight-item:nth-child(1) .highlight-item__text  { color: rgba(255,255,255,0.82); }
  .highlights-grid .highlight-item:nth-child(1)::before {
    background: radial-gradient(90% 60% at 0% 100%, rgba(200,163,91,0.30), transparent 65%);
  }

  .highlights-grid .highlight-item:nth-child(2) {
    background: linear-gradient(135deg, #fbf6ec 0%, #f3e8cf 100%);
  }

  .highlights-grid .highlight-item:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, #eef3ee 100%);
  }

  .highlights-grid .highlight-item:nth-child(4) {
    background: linear-gradient(160deg, #c8a35b 0%, #a4823f 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 26px rgba(164,130,63,0.28);
  }
  .highlights-grid .highlight-item:nth-child(4) .highlight-item__title { color: #fff; }
  .highlights-grid .highlight-item:nth-child(4) .highlight-item__text  { color: rgba(255,255,255,0.88); }
  .highlights-grid .highlight-item:nth-child(4)::before {
    background: radial-gradient(90% 60% at 100% 0%, rgba(255,255,255,0.25), transparent 65%);
  }


  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.78rem;
  }
}

/* ============================================================
   MOBILE-FIRST APP-LIKE ENHANCEMENTS (≤768px)
   Desktop layout is untouched. All rules are scoped to mobile.
   ============================================================ */
@media (max-width: 768px) {

  /* — Smooth scroll & safe-area room for bottom nav — */
  html { scroll-behavior: smooth; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  /* — Sticky / app-style header — */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(11,26,18,0.96) !important;
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  }

  /* — Hero tweaks — */
  .hero {
    min-height: 0 !important;
    height: 92vh !important;
    text-align: left;
  }
  .hero__content { max-width: 100% !important; padding-right: 8px; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(11,26,18,0.72) 0%,
      rgba(11,26,18,0.55) 50%,
      rgba(11,26,18,0.85) 100%
    ) !important;
  }
  .hero h1, .hero__title { font-size: clamp(2rem, 8vw, 2.8rem) !important; line-height: 1.15; }
  .hero p, .hero__subtitle { font-size: 0.95rem; }
  .hero .btn,
  .hero__cta .btn,
  .hero__buttons .btn { width: 100%; }
  .hero__cta,
  .hero__buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  /* — Touch-friendly buttons everywhere — */
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active { transform: scale(0.97); transition: transform 0.08s ease; }

  /* — Form controls easier to tap — */
  input, select, textarea, button {
    font-size: 16px !important; /* prevents iOS zoom */
    min-height: 46px;
  }
  textarea { min-height: 110px; }

  /* — Sections breathing room — */
  .section, section { padding-left: 18px; padding-right: 18px; }
  .container { padding-left: 4px; padding-right: 4px; }

  /* — Cards: rounder, softer shadow, clearer separation — */
  .card,
  .highlight,
  .room-card,
  .safari-card,
  .step,
  .price-card,
  .contact-card {
    border-radius: 16px !important;
    box-shadow: 0 6px 22px rgba(11,26,18,0.08) !important;
    overflow: hidden;
  }

  /* — Images responsive by default — */
  img { max-width: 100%; height: auto; }

  /* — Hide desktop-style floating WhatsApp duplicates if any — */
  .whatsapp-float-desktop { display: none; }

  /* ── BOTTOM NAVIGATION (injected by JS) ── */
  .mobile-bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 18px rgba(11,26,18,0.10);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 2px;
    text-decoration: none;
    color: #6b6b6b;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bottom-nav a svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }
  .mobile-bottom-nav a.active { color: #0b1a12; }
  .mobile-bottom-nav a.active svg { stroke: #c8a35b; }
  .mobile-bottom-nav a:active { transform: scale(0.94); }

  /* ── FLOATING WHATSAPP CTA (injected by JS) ── */
  .wa-float {
    position: fixed;
    right: 16px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(37,211,102,0.45);
    z-index: 998;
    text-decoration: none;
    animation: waPulse 2.4s ease-in-out infinite;
  }
  .wa-float svg { width: 30px; height: 30px; fill: #fff; }
  @keyframes waPulse {
    0%,100% { box-shadow: 0 8px 22px rgba(37,211,102,0.45); }
    50%     { box-shadow: 0 8px 28px rgba(37,211,102,0.75); }
  }

  /* — Gallery: uniform 2-col grid on mobile — */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .gallery-grid .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11,26,18,0.10);
  }
  .gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/* — Stay & Safari section images: rounded corners on mobile — */
  .room-section__img-wrap,
  .room-section__img,
  .split__img,
  .split__img img,
  .safari-intro__img,
  .safari-card img,
  .safari-card__img,
  .intro__img-main {
    border-radius: 18px !important;
    overflow: hidden;
  }
  /* The intro image itself is rounded; the wrapper must NOT clip
     because the gold badge sits outside its bounds. */
  .intro__right { overflow: visible !important; }

  /* — Inner-page hero: 30% shorter on mobile (homepage + safari untouched) — */
  .page-hero:not(.page-hero--keep) {
    height: 36vh !important;
    min-height: 266px !important;
  }

  /* — Subtle scroll reveal feel — */
  [data-reveal] { transition: opacity .6s ease, transform .6s ease; }
}

/* ── Gallery filter transitions (all viewports) ── */
.gallery-grid {
  transition: opacity 0.22s ease, filter 0.22s ease;
}
.gallery-grid.is-filtering {
  opacity: 0.25;
  filter: blur(4px);
  pointer-events: none;
}
.gallery-grid.is-filtering::after {
  content: "";
  position: absolute;
}
.gallery-item.reveal-in {
  animation: galleryFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes galleryFadeUp {
  0%   { opacity: 0; transform: translateY(14px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Filter button tap feedback */
.gallery-filter__btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, color 0.2s, background 0.2s, border-color 0.2s;
}
.gallery-filter__btn:active { transform: scale(0.94); }

/* Spinner shown while filtering on mobile */
@media (max-width: 768px) {
  .gallery-section { position: relative; }
  .gallery-grid { position: relative; }
  .gallery-grid.is-filtering + .gallery-spinner,
  .gallery-grid.is-filtering::before {
    content: "";
    position: absolute;
    top: 40px; left: 50%;
    width: 32px; height: 32px;
    margin-left: -16px;
    border: 3px solid rgba(200,163,91,0.25);
    border-top-color: #c8a35b;
    border-radius: 50%;
    animation: gallerySpin 0.8s linear infinite;
    z-index: 5;
  }
}
@keyframes gallerySpin {
  to { transform: rotate(360deg); }
}

/* Desktop: ensure injected mobile-only elements stay hidden */
@media (min-width: 769px) {
  .mobile-bottom-nav, .wa-float { display: none !important; }
}

/* ============================================================
   HOMEPAGE INTRO IMAGE — AESTHETIC TEXT OVERLAY
   ============================================================ */
.intro__right { position: relative; }

.intro__img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px 26px;
  color: #f5e9cf;
  background: linear-gradient(
    to top,
    rgba(11,26,18,0.92) 0%,
    rgba(11,26,18,0.65) 45%,
    rgba(11,26,18,0.15) 80%,
    rgba(11,26,18,0) 100%
  );
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.intro__img-overlay-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.95;
}

.intro__img-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  font-weight: 400;
}
.intro__img-overlay-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  position: relative;
}

.intro__img-overlay-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245,233,207,0.82);
  margin: 0;
}

/* Subtle gold accent line above eyebrow */
.intro__img-overlay::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.intro__img-overlay-eyebrow { padding-left: 38px; position: relative; }

/* Mobile: tighten spacing slightly */
@media (max-width: 768px) {
  .intro__img-overlay { padding: 22px 20px 20px; }
  .intro__img-overlay-title { font-size: 1.3rem; }
  .intro__img-overlay::before { left: 20px; top: 18px; }
}

/* Desktop: right-align the overlay text */
@media (min-width: 769px) {
  .intro__img-overlay { text-align: right; }
  .intro__img-overlay-eyebrow { padding-left: 0; padding-right: 38px; }
  .intro__img-overlay::before {
    left: auto;
    right: 26px;
  }
}

/* iOS "Add to Home Screen" hint */
.tdb-a2hs-hint {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(150px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #0b1a12, #1a3a26);
  color: #f5e9cf;
  padding: 12px 14px 12px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(11,26,18,0.35);
  border: 1px solid rgba(200,163,91,0.35);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.tdb-a2hs-hint.show { opacity: 1; transform: translateY(0); }
.tdb-a2hs-hint b { color: #c8a35b; }
.tdb-a2hs-hint button {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   PAGE TRANSITIONS + HEADING TEXT ANIMATIONS
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: rgba(11,26,18,0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.55s ease, backdrop-filter 0.55s ease;
}
.page-transition.done {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0) saturate(100%);
  -webkit-backdrop-filter: blur(0) saturate(100%);
}
.page-transition.leaving {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.page-transition__inner {
  text-align: center;
  color: #f5e9cf;
  animation: ptFadeIn .6s ease both;
}
.page-transition__mark {
  font-size: 3rem;
  margin-bottom: 14px;
  animation: ptBounce 1.4s ease-in-out infinite;
}
.page-transition__bar {
  width: 140px;
  height: 2px;
  background: rgba(245,233,207,0.18);
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 2px;
}
.page-transition__bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: #c8a35b;
  animation: ptSlide 1.1s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.page-transition__label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a35b;
  opacity: 0.9;
}
@keyframes ptFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ptBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-6px) scale(1.06); }
}
@keyframes ptSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Heading word-by-word reveal */
.word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: wordIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
body.is-loading .word-anim { animation-play-state: paused; }

/* Subtle gold underline sweep on H2s */
h2 {
  position: relative;
}
h2 .word-anim:last-child::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a35b, transparent);
  animation: underlineSweep 1.4s ease 0.6s forwards;
}
@keyframes underlineSweep {
  to { width: 100%; }
}

/* ============================================================
   TADOBA CHATBOT
   ============================================================ */
.tdb-chat-fab {
  position: fixed;
  right: 18px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(160deg, #1a3a26 0%, #0b1a12 100%);
  color: #f5e9cf;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(11,26,18,0.35);
  cursor: pointer;
  z-index: 998;
  transition: transform .2s ease, opacity .25s ease;
}
.tdb-chat-fab svg { width: 28px; height: 28px; }
.tdb-chat-fab:hover { transform: scale(1.06); }
.tdb-chat-fab:active { transform: scale(0.94); }
.tdb-chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.6); }
.tdb-chat-fab__dot {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #c8a35b;
  border: 2px solid #fff;
  animation: tdbPulse 1.8s ease-in-out infinite;
}
@keyframes tdbPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,163,91,0.6); }
  50%     { box-shadow: 0 0 0 8px rgba(200,163,91,0); }
}

@media (min-width: 769px) {
  .tdb-chat-fab { bottom: 24px; right: 24px; }
}

/* Panel */
.tdb-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 380px;
  height: 580px;
  max-height: calc(100vh - 48px);
  background: #f5f1e8;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(11,26,18,0.30);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(0.22, 1, 0.36, 1);
}
.tdb-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .tdb-chat-panel {
    right: 0; left: 0; bottom: 0;
    width: 100%;
    height: 88vh;
    max-height: 88vh;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }
  .tdb-chat-panel.open { transform: translateY(0); }
}

/* Header */
.tdb-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0b1a12 0%, #1a3a26 100%);
  color: #fff;
}
.tdb-chat-header__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #c8a35b;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tdb-chat-header__meta { flex: 1; min-width: 0; }
.tdb-chat-header__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #f5e9cf;
}
.tdb-chat-header__status {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.tdb-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: tdbPulse 1.8s infinite;
}
.tdb-chat-header__close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.tdb-chat-header__close:hover { background: rgba(255,255,255,0.22); }

/* Body */
.tdb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,163,91,0.08), transparent 40%),
    #f5f1e8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}
.tdb-msg {
  display: flex;
  animation: tdbMsgIn 0.32s cubic-bezier(0.22,1,0.36,1) both;
}
.tdb-msg--bot  { justify-content: flex-start; }
.tdb-msg--user { justify-content: flex-end; }
.tdb-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(11,26,18,0.06);
  word-wrap: break-word;
}
.tdb-msg--bot  .tdb-bubble {
  background: #fff;
  color: #2a2a2a;
  border-bottom-left-radius: 4px;
}
.tdb-msg--user .tdb-bubble {
  background: linear-gradient(135deg, #c8a35b, #a4823f);
  color: #fff;
  border-bottom-right-radius: 4px;
}
@keyframes tdbMsgIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Typing indicator */
.tdb-typing .tdb-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}
.tdb-typing .tdb-bubble span {
  width: 6px; height: 6px;
  background: #b0b0b0;
  border-radius: 50%;
  animation: tdbBlink 1.2s infinite ease-in-out;
}
.tdb-typing .tdb-bubble span:nth-child(2) { animation-delay: 0.2s; }
.tdb-typing .tdb-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdbBlink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%           { opacity: 1;   transform: scale(1); }
}

/* Input area (options) */
.tdb-chat-input {
  padding: 10px 12px 14px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
}
.tdb-opt {
  flex: 1 1 auto;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 22px;
  border: 1.5px solid #c8a35b;
  background: #fff;
  color: #0b1a12;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-sans);
}
.tdb-opt:hover { background: #fbf6ec; }
.tdb-opt:active { transform: scale(0.96); }
.tdb-opt--primary {
  background: linear-gradient(135deg, #c8a35b, #a4823f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(164,130,63,0.32);
}
.tdb-opt--primary:hover { filter: brightness(1.05); }
.tdb-opt--ghost {
  border-color: rgba(0,0,0,0.12);
  color: #6b6b6b;
  flex: 0 0 auto;
}

.tdb-text-row {
  display: flex;
  width: 100%;
  gap: 8px;
}
.tdb-text {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 22px;
  font-size: 16px;
  outline: none;
  font-family: var(--font-sans);
}
.tdb-text:focus { border-color: #c8a35b; }
.tdb-send {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c8a35b, #a4823f);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.tdb-send:active { transform: scale(0.94); }