
@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=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --brand-primary: #8B6914;
    --brand-dark: #2C2416;
    --brand-light: #F5F0E8;
    --brand-accent: #C4956A;
    --brand-neutral: #6B5B4E;

    --white: #FFFFFF;
    --light-gray: #E8E0D4;
    --medium-gray: #A09588;
    --dark-gray: #3A3028;
    --success: #7A8B6F;
    --error: #C4554A;
    --warning: #D4A34A;
    --info: #6B8E9B;

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    /* Heading: Playfair Display — elegant, high-contrast serif
       with beautiful italic forms and strong readability */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Body: Lato — warm, humanist sans-serif with excellent
       readability at all sizes and open letterforms */
    --font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Accent: Lora — editorial serif for quotes, captions,
       and special callouts */
    --font-accent: 'Lora', Georgia, serif;

    /* ─── SPACING ────────────────────────────────────────────────── */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
}

/* ═══════════════════════════════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════════════════════════════ */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════
   COLOR UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
.cms-bg-primary { background-color: var(--brand-primary) !important; }
.cms-text-primary { color: var(--brand-primary) !important; }
.cms-border-primary { border-color: var(--brand-primary) !important; }

.cms-bg-dark { background-color: var(--brand-dark) !important; }
.cms-text-dark { color: var(--brand-dark) !important; }
.cms-border-dark { border-color: var(--brand-dark) !important; }

.cms-bg-light { background-color: var(--brand-light) !important; }
.cms-text-light { color: var(--brand-light) !important; }
.cms-border-light { border-color: var(--brand-light) !important; }

.cms-bg-accent { background-color: var(--brand-accent) !important; }
.cms-text-accent { color: var(--brand-accent) !important; }
.cms-border-accent { border-color: var(--brand-accent) !important; }

.cms-text-neutral { color: var(--brand-neutral) !important; }
.cms-bg-neutral { background-color: var(--brand-neutral) !important; }
.cms-border-neutral { border-color: var(--brand-neutral) !important; }

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   Playfair Display — elegant serif headings with presence
   Lato — clean, warm, highly readable body text
   Lora — editorial accent for quotes and flourishes
   ═══════════════════════════════════════════════════════════════════ */
.cms-h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.cms-h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.cms-h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.cms-h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.cms-h5 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.cms-body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
    color: var(--brand-neutral);
}

.cms-small {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 8px;
    color: var(--medium-gray);
}

/* ═══════════════════════════════════════════════════════════════════
   LINKS
   ═══════════════════════════════════════════════════════════════════ */
.cms-link {
    text-decoration: none;
    transition: all 250ms ease;
}

.cms-link:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.cms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 350ms ease;
    line-height: 1;
    white-space: nowrap;
}

.cms-btn:hover {
    text-decoration: none;
}

.cms-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════ */
.cms-card {
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(44, 36, 22, 0.06);
    padding: 0;
    transition: box-shadow 400ms ease, transform 400ms ease;
    overflow: hidden;
}

.cms-card:hover {
    box-shadow: 0 8px 28px rgba(44, 36, 22, 0.1);
    transform: translateY(-3px);
}

.cms-card-header {
    margin-bottom: 16px;
}

.cms-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

.cms-card-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--brand-neutral);
}

.cms-card-footer {
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════ */
.cms-form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--dark-gray);
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0;
    transition: border-color 250ms ease, box-shadow 250ms ease;
    box-sizing: border-box;
}

.cms-form-control::placeholder {
    color: var(--medium-gray);
    font-weight: 400;
}

.cms-form-control:hover {
    border-color: var(--brand-accent);
}

.cms-form-control:focus {
    border: 2px solid var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.08);
    outline: none;
}

.cms-form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.cms-form-select {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--dark-gray);
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A09588' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    box-sizing: border-box;
}

.cms-form-select:focus {
    outline: none;
    border: 2px solid var(--brand-primary);
}

.cms-form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-family);
    border: 1px solid var(--light-gray);
    border-radius: 0;
    resize: vertical;
    transition: border-color 250ms ease;
    box-sizing: border-box;
}

.cms-form-textarea:focus {
    outline: none;
    border: 2px solid var(--brand-primary);
}

.cms-form-checkbox, .cms-form-radio {
    opacity: 0;
    width: 0;
    height: 0;
}

.cms-form-checkbox + label, .cms-form-radio + label {
    padding-left: 28px;
    cursor: pointer;
    font-size: 15px;
    line-height: 20px;
}

.cms-form-checkbox + label:before {
    content: '';
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 0;
}

.cms-form-checkbox:checked + label:after {
    content: '';
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cms-form-radio + label:before {
    content: '';
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.cms-form-radio:checked + label:after {
    content: '';
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cms-error-message {
    font-size: 13px;
    margin-top: 6px;
    color: var(--error);
}

.cms-success-message {
    font-size: 13px;
    margin-top: 6px;
    color: var(--success);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cms-h1 {
        font-size: 34px;
        line-height: 1.18;
    }

    .cms-h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .cms-h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .cms-h4 {
        font-size: 20px;
    }

    .cms-body {
        font-size: 15px;
    }

    .cms-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   THE GOOD HOUSE — SHARED PAGE STYLES
   All tgh-* classes used across page templates
   ═══════════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (used on all inner pages) ─────────────────────────── */
.tgh-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.tgh-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,36,22,0.3) 0%, rgba(44,36,22,0.55) 100%);
}
.tgh-page-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.tgh-page-hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── HOME HERO ───────────────────────────────────────────────────── */
.tgh-hero {
  height: 100vh;
  min-height: 640px;
}
.tgh-hero-overlay {
  background: linear-gradient(180deg, rgba(44,36,22,0.25) 0%, rgba(44,36,22,0.45) 50%, rgba(44,36,22,0.6) 100%);
}
.tgh-hero-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.tgh-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.tgh-hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.tgh-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #C4956A;
  border: none;
  transition: background-color 350ms ease, transform 300ms ease, box-shadow 350ms ease;
}
.tgh-hero-cta:hover {
  background-color: #B0805A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,149,106,0.35);
  text-decoration: none;
}

/* ─── SHARED SECTIONS ─────────────────────────────────────────────── */
.tgh-section {
  padding: 96px 0;
}
.tgh-section--cream {
  background-color: #FAF7F2;
}
.tgh-section-header {
  margin-bottom: 56px;
}
.tgh-overline {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A09588;
  margin-bottom: 16px;
}
.tgh-overline--accent {
  color: #C4956A;
}
.tgh-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.18;
  color: #2C2416;
  margin-bottom: 24px;
}
.tgh-section-body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #5C4F44;
  margin-bottom: 20px;
}
.tgh-section-body--muted {
  color: #A09588;
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
}

/* ─── TGH BUTTONS ─────────────────────────────────────────────────── */
.tgh-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background: #C4956A;
  border: 1.5px solid #C4956A;
  transition: all 350ms ease;
  min-width: 180px;
}
.tgh-btn-solid:hover {
  background: #B0805A;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,149,106,0.3);
}
.tgh-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2C2416;
  background: transparent;
  border: 1.5px solid #2C2416;
  transition: all 350ms ease;
  min-width: 180px;
}
.tgh-btn-outline:hover {
  background-color: #2C2416;
  color: #FFFFFF;
  text-decoration: none;
}
.tgh-btn-outline--sm {
  padding: 12px 28px;
  font-size: 10px;
}

/* ─── SPLIT LAYOUT ────────────────────────────────────────────────── */
.tgh-split-grid { gap: 64px; }
.tgh-split-text { padding-right: 16px; }
.tgh-split-image { position: relative; overflow: hidden; }
.tgh-split-image img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-split-image:hover img { transform: scale(1.03); }

/* ─── SERVICE CARDS ───────────────────────────────────────────────── */
.tgh-services-grid { gap: 32px; }
.tgh-service-card { background: #FFFFFF; overflow: hidden; box-shadow: 0 2px 12px rgba(44,36,22,0.06); transition: box-shadow 400ms ease, transform 400ms ease; }
.tgh-service-card:hover { box-shadow: 0 8px 32px rgba(44,36,22,0.1); transform: translateY(-4px); }
.tgh-service-card__image { height: 260px; overflow: hidden; }
.tgh-service-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-service-card:hover .tgh-service-card__image img { transform: scale(1.05); }
.tgh-service-card__body { padding: 32px 28px 36px; text-align: center; }
.tgh-service-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; color: #2C2416; margin-bottom: 14px; }
.tgh-service-card__text { font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 400; line-height: 1.75; color: #5C4F44; margin-bottom: 24px; }

/* ─── CAROUSEL ────────────────────────────────────────────────────── */
.tgh-carousel { position: relative; max-width: 100%; }
.tgh-carousel__viewport { overflow: hidden; }
.tgh-carousel__track { display: flex; transition: transform 600ms cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.tgh-carousel__slide { flex: 0 0 calc(33.333% - 5px); margin-right: 8px; overflow: hidden; aspect-ratio: 4/3; background-color: #E8E0D4; }
.tgh-carousel__slide:last-child { margin-right: 0; }
.tgh-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-carousel__slide:hover img { transform: scale(1.04); }
.tgh-carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.92); border: 1px solid #E8E0D4; cursor: pointer; color: #3A3028; transition: all 350ms ease; z-index: 5; backdrop-filter: blur(4px); }
.tgh-carousel__arrow:hover { background: #FFFFFF; box-shadow: 0 4px 16px rgba(44,36,22,0.12); color: #C4956A; }
.tgh-carousel__arrow:active { transform: translateY(-50%) scale(0.95); }
.tgh-carousel__arrow--prev { left: -24px; }
.tgh-carousel__arrow--next { right: -24px; }
.tgh-carousel__arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.tgh-carousel__dots { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 32px; }
.tgh-carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: #D4C4A8; border: none; padding: 0; cursor: pointer; transition: all 350ms ease; }
.tgh-carousel__dot:hover { background: #C4956A; }
.tgh-carousel__dot--active { background: #C4956A; width: 24px; border-radius: 4px; }

/* ─── PRESS BADGE ─────────────────────────────────────────────────── */
.tgh-press { padding: 48px 24px; background-color: #FAF7F2; }
.tgh-press-quote { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.45; color: #3A3028; }

/* ─── AWARDS ──────────────────────────────────────────────────────── */
.tgh-awards { padding: 48px 24px; background-color: #FAF7F2; }
.tgh-awards-inner { display: flex; justify-content: center; align-items: center; gap: 48px; }
.tgh-award { text-align: center; }
.tgh-award__label { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #A09588; margin-bottom: 4px; }
.tgh-award__name { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 600; color: #3A3028; }
.tgh-awards-divider { width: 1px; height: 40px; background-color: #E8E0D4; }

/* ─── POST STYLES ─────────────────────────────────────────────────── */
.post-feature-image { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.cms-card:hover .post-feature-image { transform: scale(1.05); }
.post-tag { color: var(--brand-accent); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color 250ms ease; }
.post-tag:hover { color: var(--brand-primary); }
.post-title { font-family: var(--font-heading); font-size: 20px; font-weight: 400; color: var(--dark-gray); transition: color 250ms ease; line-height: 1.3; }
.cms-card:hover .post-title { color: var(--brand-accent); }
.post-content { color: var(--brand-neutral); font-size: 15px; line-height: 1.7; flex-grow: 1; }
.post-meta { color: var(--medium-gray); font-size: 13px; display: flex; align-items: center; margin-top: auto; }
.post-meta i { margin-right: var(--space-2); }
.section-heading { font-family: var(--font-heading); font-size: 28px; font-weight: 400; color: var(--dark-gray); text-align: center; position: relative; display: inline-block; padding-bottom: var(--space-2); }
.section-heading::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 48px; height: 2px; background-color: var(--brand-accent); }
.site-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-8); }
.post-item { position: relative; }
.post-link { position: absolute; inset: 0; z-index: 10; }

/* ═══════════════════════════════════════════════════════════════════
   ROOM CARDS (therooms)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-room-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #FFFFFF; margin-bottom: 32px; box-shadow: 0 2px 12px rgba(44,36,22,0.06); overflow: hidden; transition: box-shadow 400ms ease; }
.tgh-room-card:hover { box-shadow: 0 6px 24px rgba(44,36,22,0.1); }
.tgh-room-card:nth-child(even) { direction: rtl; }
.tgh-room-card:nth-child(even) > * { direction: ltr; }
.tgh-room-card--featured { border: 2px solid #C4956A; }
.tgh-room-card__image { position: relative; overflow: hidden; min-height: 320px; }
.tgh-room-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-room-card:hover .tgh-room-card__image img { transform: scale(1.04); }
.tgh-room-card__badge { position: absolute; top: 16px; left: 16px; background: #C4956A; color: #FFFFFF; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; }
.tgh-room-card__body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.tgh-room-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 400; color: #2C2416; margin-bottom: 14px; }
.tgh-room-card__desc { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.75; color: #5C4F44; margin-bottom: 24px; }
.tgh-room-card__details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.tgh-room-card__detail-label { display: block; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #A09588; margin-bottom: 4px; }
.tgh-room-card__detail-value { display: block; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 400; color: #3A3028; }
.tgh-amenities-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.tgh-amenity-pill { display: flex; align-items: center; gap: 10px; padding: 14px 24px; background: #FFFFFF; border: 1px solid #E8E0D4; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 400; color: #3A3028; }
.tgh-amenity-pill svg { color: #C4956A; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING (daypass)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-pricing-hero { display: flex; justify-content: center; }
.tgh-pricing-hero__card { background: #FFFFFF; border: 2px solid #E8E0D4; padding: 48px 56px; text-align: center; max-width: 400px; width: 100%; box-shadow: 0 4px 24px rgba(44,36,22,0.08); }
.tgh-pricing-hero__price { font-family: 'Playfair Display', Georgia, serif; font-size: 64px; font-weight: 400; color: #2C2416; line-height: 1; }
.tgh-pricing-hero__per { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 400; color: #A09588; margin-top: 8px; letter-spacing: 0.05em; }
.tgh-pricing-hero__divider { width: 48px; height: 2px; background: #C4956A; margin: 28px auto; }
.tgh-pricing-hero__hours { display: flex; justify-content: space-between; align-items: center; }
.tgh-pricing-hero__hours-label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #A09588; }
.tgh-pricing-hero__hours-value { font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 600; color: #2C2416; }
.tgh-perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.tgh-perk { background: #FFFFFF; padding: 36px 32px; text-align: center; box-shadow: 0 2px 12px rgba(44,36,22,0.06); }
.tgh-perk__icon { color: #C4956A; margin-bottom: 20px; display: flex; justify-content: center; }
.tgh-perk__title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-perk__text { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.7; color: #5C4F44; }
.tgh-daypass-note { font-family: 'Lora', Georgia, serif; font-size: 20px; font-style: italic; color: #8B6914; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════
   TEMPERATURE CARDS & MINERAL TABLE (magic-water)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-temp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tgh-temp-card { background: #FFFFFF; padding: 48px 36px; text-align: center; box-shadow: 0 2px 12px rgba(44,36,22,0.06); border-top: 3px solid #C4956A; }
.tgh-temp-card__temp { font-family: 'Playfair Display', Georgia, serif; font-size: 56px; font-weight: 400; color: #8B6914; line-height: 1; margin-bottom: 12px; }
.tgh-temp-card__name { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #3A3028; margin-bottom: 16px; }
.tgh-temp-card__desc { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.7; color: #5C4F44; }
.tgh-mineral-table-wrap { overflow-x: auto; }
.tgh-mineral-table { width: 100%; border-collapse: collapse; font-family: 'Lato', sans-serif; }
.tgh-mineral-table thead th { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #A09588; padding: 14px 20px; text-align: left; border-bottom: 2px solid #E8E0D4; }
.tgh-mineral-table thead th:last-child { text-align: right; }
.tgh-mineral-table tbody td { font-size: 15px; color: #3A3028; padding: 14px 20px; border-bottom: 1px solid #F0EBE3; }
.tgh-mineral-table tbody td:last-child { text-align: right; font-weight: 600; color: #8B6914; }
.tgh-mineral-table tbody tr:hover { background: #FAF7F2; }
.tgh-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.tgh-benefit { background: #FFFFFF; padding: 36px 32px; text-align: center; box-shadow: 0 2px 12px rgba(44,36,22,0.06); }
.tgh-benefit__icon { color: #C4956A; margin-bottom: 20px; }
.tgh-benefit__title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-benefit__text { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.7; color: #5C4F44; }

/* ═══════════════════════════════════════════════════════════════════
   PRACTITIONER CARDS (wellness-offerings)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-practitioner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #FFFFFF; box-shadow: 0 2px 16px rgba(44,36,22,0.06); overflow: hidden; }
.tgh-practitioner--reverse { direction: rtl; }
.tgh-practitioner--reverse > * { direction: ltr; }
.tgh-practitioner__image { position: relative; overflow: hidden; min-height: 480px; }
.tgh-practitioner__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-practitioner:hover .tgh-practitioner__image img { transform: scale(1.03); }
.tgh-practitioner__badge { position: absolute; top: 16px; left: 16px; background: #8B6914; color: #FFFFFF; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; }
.tgh-practitioner__body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.tgh-practitioner__title { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; font-weight: 400; color: #2C2416; margin-bottom: 16px; line-height: 1.2; }
.tgh-practitioner__desc { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.75; color: #5C4F44; margin-bottom: 24px; }
.tgh-practitioner__bio { padding: 20px 0; border-top: 1px solid #F0EBE3; margin-bottom: 20px; }
.tgh-practitioner__bio-heading { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #3A3028; margin-bottom: 4px; }
.tgh-practitioner__bio-role { font-family: 'Lora', Georgia, serif; font-size: 14px; font-style: italic; color: #C4956A; margin-bottom: 14px; }
.tgh-practitioner__credentials { list-style: none; padding: 0; margin: 0; }
.tgh-practitioner__credentials li { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.6; color: #6B5B4E; padding-left: 16px; position: relative; margin-bottom: 6px; }
.tgh-practitioner__credentials li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: #C4956A; border-radius: 50%; }
.tgh-practitioner__meta { margin-bottom: 20px; }
.tgh-practitioner__availability { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 600; color: #8B6914; }

/* ═══════════════════════════════════════════════════════════════════
   VILLA (thevilla)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-villa-overview { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.tgh-villa-overview__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tgh-villa-stat { background: #FAF7F2; padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.tgh-villa-stat__number { font-family: 'Playfair Display', Georgia, serif; font-size: 42px; font-weight: 400; color: #8B6914; line-height: 1; }
.tgh-villa-stat__icon { color: #C4956A; }
.tgh-villa-stat__label { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6B5B4E; }
.tgh-villa-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tgh-villa-amenity { display: flex; gap: 20px; background: #FFFFFF; padding: 28px 24px; box-shadow: 0 2px 12px rgba(44,36,22,0.06); }
.tgh-villa-amenity svg { color: #C4956A; flex-shrink: 0; margin-top: 2px; }
.tgh-villa-amenity__title { font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 600; color: #2C2416; margin-bottom: 6px; }
.tgh-villa-amenity__text { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.65; color: #5C4F44; }
.tgh-villa-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }
.tgh-villa-service-pill { padding: 14px 28px; border: 1.5px solid #C4956A; font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: #C4956A; }

/* ═══════════════════════════════════════════════════════════════════
   SPECIALS (specials)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.tgh-special-card { background: #FFFFFF; padding: 40px 32px; box-shadow: 0 2px 16px rgba(44,36,22,0.06); position: relative; display: flex; flex-direction: column; border: 1px solid #E8E0D4; }
.tgh-special-card--featured { border: 2px solid #C4956A; transform: scale(1.03); box-shadow: 0 8px 32px rgba(196,149,106,0.15); }
.tgh-special-card__ribbon { position: absolute; top: -1px; right: 24px; background: #C4956A; color: #FFFFFF; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px; }
.tgh-special-card__header { margin-bottom: 24px; }
.tgh-special-card__label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #C4956A; margin-bottom: 8px; }
.tgh-special-card__name { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 400; color: #2C2416; line-height: 1.2; }
.tgh-special-card__pricing { margin-bottom: 20px; }
.tgh-special-card__price { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; font-weight: 400; color: #2C2416; display: block; line-height: 1; }
.tgh-special-card__price-text { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 400; color: #2C2416; display: block; line-height: 1; }
.tgh-special-card__was { font-family: 'Lato', sans-serif; font-size: 13px; color: #A09588; margin-top: 6px; display: block; }
.tgh-special-card__divider { width: 40px; height: 2px; background: #C4956A; margin-bottom: 24px; }
.tgh-special-card__includes { list-style: none; padding: 0; margin: 0 0 32px 0; flex-grow: 1; }
.tgh-special-card__includes li { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.5; color: #5C4F44; padding: 10px 0; padding-left: 24px; position: relative; border-bottom: 1px solid #F5F0E8; }
.tgh-special-card__includes li:last-child { border-bottom: none; }
.tgh-special-card__includes li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border: 1.5px solid #C4956A; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════════════════
   TIMELINE (about)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-timeline { position: relative; padding-left: 120px; }
.tgh-timeline::before { content: ''; position: absolute; left: 100px; top: 0; bottom: 0; width: 2px; background: #E8E0D4; }
.tgh-timeline__item { position: relative; padding-bottom: 48px; padding-left: 40px; }
.tgh-timeline__item:last-child { padding-bottom: 0; }
.tgh-timeline__item::before { content: ''; position: absolute; left: -21px; top: 6px; width: 12px; height: 12px; background: #C4956A; border-radius: 50%; border: 3px solid #FAF7F2; }
.tgh-timeline__year { position: absolute; left: -120px; top: 0; width: 80px; text-align: right; font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 400; color: #8B6914; }
.tgh-timeline__title { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-timeline__text { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.75; color: #5C4F44; }
.tgh-people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tgh-person-card { background: #FAF7F2; padding: 36px 32px; border-left: 3px solid #C4956A; }
.tgh-person-card__name { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; color: #2C2416; margin-bottom: 4px; }
.tgh-person-card__role { font-family: 'Lora', Georgia, serif; font-size: 14px; font-style: italic; color: #C4956A; margin-bottom: 16px; }
.tgh-person-card__bio { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.7; color: #5C4F44; }

/* ═══════════════════════════════════════════════════════════════════
   HOTEL SPLIT (thehotel)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-hotel-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tgh-hotel-split--reverse { direction: rtl; }
.tgh-hotel-split--reverse > * { direction: ltr; }
.tgh-hotel-split__image { overflow: hidden; }
.tgh-hotel-split__image img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-hotel-split__image:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════════════════════
   AMENITY GRID (amenities)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tgh-amen-card { background: #FAF7F2; padding: 36px 28px; text-align: center; transition: box-shadow 400ms ease, transform 400ms ease; }
.tgh-amen-card:hover { box-shadow: 0 6px 24px rgba(44,36,22,0.08); transform: translateY(-4px); }
.tgh-amen-card__icon { color: #C4956A; margin-bottom: 20px; display: flex; justify-content: center; }
.tgh-amen-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-amen-card__text { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.7; color: #5C4F44; }

/* ═══════════════════════════════════════════════════════════════════
   CHEF BIO (chefbio)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-chef-bio { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.tgh-chef-bio__portrait { overflow: hidden; }
.tgh-chef-bio__portrait img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; display: block; }
.tgh-chef-milestones { display: flex; flex-direction: column; gap: 0; }
.tgh-chef-milestone { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid #E8E0D4; align-items: flex-start; }
.tgh-chef-milestone:last-child { border-bottom: none; }
.tgh-chef-milestone__marker { width: 12px; height: 12px; border: 2px solid #C4956A; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.tgh-chef-milestone__marker--active { background: #C4956A; }
.tgh-chef-milestone__title { font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 600; color: #2C2416; margin-bottom: 4px; }
.tgh-chef-milestone__text { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.65; color: #5C4F44; }

/* ═══════════════════════════════════════════════════════════════════
   JUICE CARDS (just-juice)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-juice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tgh-juice-card { background: #FFFFFF; overflow: hidden; box-shadow: 0 2px 12px rgba(44,36,22,0.06); transition: box-shadow 400ms ease, transform 400ms ease; }
.tgh-juice-card:hover { box-shadow: 0 6px 24px rgba(44,36,22,0.1); transform: translateY(-4px); }
.tgh-juice-card__color { height: 8px; }
.tgh-juice-card__body { padding: 32px 28px; }
.tgh-juice-card__name { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-juice-card__ingredients { font-family: 'Lora', Georgia, serif; font-size: 15px; font-style: italic; line-height: 1.6; color: #6B5B4E; }

/* ═══════════════════════════════════════════════════════════════════
   EVENT CARDS (weddings)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tgh-event-card { background: #FFFFFF; overflow: hidden; box-shadow: 0 2px 12px rgba(44,36,22,0.06); transition: box-shadow 400ms ease, transform 400ms ease; }
.tgh-event-card:hover { box-shadow: 0 8px 28px rgba(44,36,22,0.1); transform: translateY(-4px); }
.tgh-event-card__image { height: 240px; overflow: hidden; }
.tgh-event-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.tgh-event-card:hover .tgh-event-card__image img { transform: scale(1.05); }
.tgh-event-card__body { padding: 28px 24px; }
.tgh-event-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; color: #2C2416; margin-bottom: 12px; }
.tgh-event-card__text { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.7; color: #5C4F44; }
.tgh-buyout-card { background: #FAF7F2; border: 2px solid #E8E0D4; padding: 0; }
.tgh-buyout-card__inner { padding: 48px; text-align: center; }
.tgh-buyout-features { list-style: none; padding: 0; margin: 24px auto 0; display: inline-block; text-align: left; }
.tgh-buyout-features li { font-family: 'Lato', sans-serif; font-size: 15px; line-height: 1.5; color: #3A3028; padding: 8px 0; padding-left: 24px; position: relative; }
.tgh-buyout-features li::before { content: ''; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border: 1.5px solid #C4956A; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════════════════
   MASONRY GALLERY (feast-your-eyes)
   ═══════════════════════════════════════════════════════════════════ */
.tgh-food-gallery { columns: 3; column-gap: 16px; }
.tgh-food-gallery__item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; position: relative; }
.tgh-food-gallery__item img { width: 100%; height: auto; display: block; transition: transform 600ms ease; }
.tgh-food-gallery__item:hover img { transform: scale(1.04); }
.tgh-food-gallery__item--tall img { aspect-ratio: 2/3; object-fit: cover; }
.tgh-food-gallery__item--wide img { aspect-ratio: 16/9; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════════
   TGH RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tgh-carousel__arrow--prev { left: -16px; }
  .tgh-carousel__arrow--next { right: -16px; }
  .tgh-carousel__arrow { width: 40px; height: 40px; }
  .tgh-specials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tgh-special-card--featured { transform: none; }
  .tgh-event-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .tgh-amen-grid { grid-template-columns: repeat(2, 1fr); }
  .tgh-food-gallery { columns: 2; }
}

@media (max-width: 768px) {
  .tgh-page-hero { height: 50vh; min-height: 320px; }
  .tgh-page-hero__title { font-size: 36px; }
  .tgh-hero { height: 90vh; min-height: 520px; }
  .tgh-hero-title { font-size: 38px; }
  .tgh-hero-subtitle { font-size: 15px; }
  .tgh-section { padding: 64px 0; }
  .tgh-section-title { font-size: 30px; }
  .tgh-split-grid { gap: 40px; }
  .tgh-split-text { padding-right: 0; }
  .tgh-awards-inner { flex-direction: column; gap: 24px; }
  .tgh-awards-divider { width: 48px; height: 1px; }
  .tgh-service-card__body { padding: 24px 20px 28px; }
  .tgh-carousel__slide { flex: 0 0 calc(50% - 4px); margin-right: 8px; }
  .tgh-carousel__arrow--prev { left: 8px; }
  .tgh-carousel__arrow--next { right: 8px; }
  .tgh-carousel__arrow { width: 36px; height: 36px; background: rgba(255,255,255,0.85); }
  .tgh-room-card { grid-template-columns: 1fr; }
  .tgh-room-card:nth-child(even) { direction: ltr; }
  .tgh-room-card__image { min-height: 240px; }
  .tgh-room-card__body { padding: 28px 24px; }
  .tgh-room-card__title { font-size: 24px; }
  .tgh-room-card__details { grid-template-columns: 1fr; }
  .tgh-pricing-hero__card { padding: 36px 28px; }
  .tgh-pricing-hero__price { font-size: 48px; }
  .tgh-perks-grid { grid-template-columns: 1fr; }
  .tgh-temp-cards { grid-template-columns: 1fr; }
  .tgh-temp-card__temp { font-size: 44px; }
  .tgh-benefits-grid { grid-template-columns: 1fr; }
  .tgh-practitioner { grid-template-columns: 1fr; }
  .tgh-practitioner--reverse { direction: ltr; }
  .tgh-practitioner__image { min-height: 280px; }
  .tgh-practitioner__body { padding: 32px 24px; }
  .tgh-practitioner__title { font-size: 26px; }
  .tgh-villa-overview { grid-template-columns: 1fr; gap: 40px; }
  .tgh-villa-amenities { grid-template-columns: 1fr; }
  .tgh-special-card { padding: 32px 24px; }
  .tgh-special-card__price { font-size: 40px; }
  .tgh-timeline { padding-left: 0; }
  .tgh-timeline::before { left: 0; }
  .tgh-timeline__item { padding-left: 28px; }
  .tgh-timeline__item::before { left: -7px; width: 10px; height: 10px; }
  .tgh-timeline__year { position: relative; left: 0; text-align: left; margin-bottom: 8px; width: auto; }
  .tgh-people-grid { grid-template-columns: 1fr; }
  .tgh-hotel-split { grid-template-columns: 1fr; gap: 32px; }
  .tgh-hotel-split--reverse { direction: ltr; }
  .tgh-amen-grid { grid-template-columns: 1fr; }
  .tgh-chef-bio { grid-template-columns: 1fr; gap: 32px; }
  .tgh-juice-grid { grid-template-columns: 1fr; }
  .tgh-buyout-card__inner { padding: 32px 24px; }
  .tgh-food-gallery { columns: 1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .tgh-hero-title { font-size: 32px; }
  .tgh-section-title { font-size: 26px; }
  .tgh-carousel__slide { flex: 0 0 100%; margin-right: 8px; }
}
