:root {
    --gd-bg: #f8f4ef;
    --gd-surface: rgba(255,255,255,0.74);
    --gd-text: #2b1d16;
    --gd-muted: #6d5a50;
    --gd-line: rgba(43, 29, 22, 0.10);
    --gd-gold: #b8822f;
    --gd-gold-deep: #8c5f1c;
    --gd-dark: #1b110d;
    --gd-green: #2a7a4a;
    --gd-cream: #f6f1eb;
    --gd-shadow: 0 18px 45px rgba(25, 12, 5, 0.10);
    --gd-radius: 22px;
    --gd-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--gd-text);
    background:
        linear-gradient(rgba(248,244,239,0.88), rgba(248,244,239,0.88)),
        radial-gradient(circle at top right, rgba(184,130,47,0.08), transparent 20%),
        radial-gradient(circle at bottom left, rgba(184,130,47,0.06), transparent 18%);
    background-color: var(--gd-bg);
}

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

.gd-wrap {
    width: min(calc(100% - 64px), 1220px);
    margin: 0 auto;
}

.gd-home h1,
.gd-home h2,
.gd-home h3,
.gd-home h4,
.gd-logo-word,
.gd-nav a {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0.01em;
}

/* ===== TOP BAR ===== */

.gd-topbar {
    background: rgba(23, 15, 11, 0.92);
    color: #f2e7d8;
    font-size: 13px;
}

.gd-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.gd-topbar a {
    color: inherit;
    text-decoration: none;
}

.gd-topbar-left,
.gd-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.gd-topbar-item {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.gd-topbar-right {
    justify-content: flex-end;
}

/* ===== HEADER ===== */

.gd-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(12px);
    background: rgba(248,244,239,0.96);
    border-bottom: 1px solid rgba(43, 29, 22, 0.06);
}

.gd-header-inner {
    display: grid;
    grid-template-columns: 260px 1fr auto auto;
    gap: 24px;
    align-items: center;
    min-height: 92px;
}

.gd-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gd-text);
    text-decoration: none;
}

.gd-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

.gd-brand-text {
    display: flex;
    flex-direction: column;
}

.gd-logo-word {
    font-size: 34px;
    line-height: 0.9;
    font-weight: 600;
}

.gd-logo-sub {
    display: block;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gd-muted);
    margin-top: 6px;
    font-family: "Inter", Arial, sans-serif;
}

.gd-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.gd-nav a {
    color: var(--gd-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-nav a:hover {
    color: var(--gd-gold-deep);
}

.gd-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.gd-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(43,29,22,0.12);
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
}

.gd-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gd-text);
    margin: 5px 0;
    border-radius: 2px;
}

.gd-mobile-menu {
    display: none;
    border-top: 1px solid rgba(43,29,22,0.08);
    background: rgba(248,244,239,0.98);
}

.gd-mobile-menu.is-open {
    display: block;
}

.gd-mobile-nav {
    width: min(calc(100% - 24px), var(--gd-container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 22px;
}

.gd-mobile-nav a {
    color: var(--gd-text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(43,29,22,0.08);
}

.gd-mobile-nav a:last-child {
    border-bottom: 0;
}

.gd-mobile-book-btn {
    margin-top: 10px;
    justify-content: center;
}

/* ===== BUTTONS ===== */

.gd-btn,
.gd-btn-outline,
.gd-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.gd-btn {
    background: linear-gradient(135deg, var(--gd-gold), #d49b42);
    color: #fff;
    box-shadow: 0 14px 35px rgba(184,130,47,0.20);
}

.gd-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.gd-btn-outline {
    border-color: rgba(43, 29, 22, 0.12);
    color: var(--gd-text);
    background: rgba(255,255,255,0.74);
}

.gd-btn-outline:hover {
    background: #fff;
}

.gd-whatsapp-btn {
    background: linear-gradient(135deg, #22884b, var(--gd-green));
    color: #fff;
    box-shadow: 0 16px 34px rgba(31,107,67,0.18);
}

/* ===== HERO ===== */

.gd-hero {
    position: relative;
    overflow: hidden;
    background: #120b09;
}

.gd-hero-media,
.gd-hero-overlay {
    position: absolute;
    inset: 0;
}

.gd-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gd-hero-refined-copy {
    max-width: 560px;
    color: #fff;
    padding-left: 56px;
}

.gd-hero-refined .gd-hero-overlay {
    background:
        linear-gradient(90deg, rgba(17,10,8,0.58) 0%, rgba(17,10,8,0.26) 38%, rgba(17,10,8,0.10) 100%),
        linear-gradient(180deg, rgba(17,10,8,0.06) 0%, rgba(17,10,8,0.26) 100%);
}

.gd-hero-refined-inner {
    position: relative;
    z-index: 2;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 88px 0 126px;
}

.gd-hero-refined-copy {
    max-width: 520px;
    color: #fff;
    padding-left: 44px;
}


.gd-hero-refined-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(46px, 5.2vw, 72px);
    line-height: 0.94;
    color: #fff;
}

.gd-hero-refined-copy p {
    margin: 0;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(255,255,255,0.9);
}

/* ===== BOOKING HERO STRIP ===== */

.gd-booking-shell {
    position: relative;
    margin-top: -48px;
    z-index: 8;
}

.gd-booking-shell-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: center;
}

.gd-booking-lux-card {
    background: rgba(255,252,248,0.98);
    border: 1px solid rgba(43,29,22,0.08);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(20,10,5,0.10);
    padding: 18px;
}

.gd-booking-lux-card h2 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1;
    color: var(--gd-text);
}

.gd-booking-lux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gd-booking-lux-grid + .gd-booking-lux-grid {
    margin-top: 12px;
}

.gd-field {
    display: block;
}

.gd-field label {
    display: block;
    font-size: 12px;
    color: var(--gd-muted);
    margin-bottom: 7px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gd-booking-lux-form .gd-field label {
    font-size: 11px;
    margin-bottom: 6px;
    letter-spacing: 0.06em;
}

.gd-field input,
.gd-field select,
.gd-field textarea {
    width: 100%;
    border: 1px solid rgba(43,29,22,0.12);
    background: #fff;
    color: var(--gd-text);
    border-radius: 12px;
    padding: 13px 15px;
    min-height: 50px;
    font: inherit;
}

.gd-booking-lux-form .gd-field input,
.gd-booking-lux-form .gd-field select {
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 10px;
    border: 1px solid rgba(43,29,22,0.10);
    background: #fff;
}

.gd-field textarea {
    min-height: 92px;
    resize: vertical;
}

.gd-booking-lux-form .gd-field textarea {
    min-height: 72px;
    padding: 11px 13px;
    border-radius: 10px;
    border: 1px solid rgba(43,29,22,0.10);
    background: #fff;
}

.gd-field-full {
    margin-top: 12px;
}

.gd-booking-submit {
    width: 100%;
    margin-top: 16px;
    border: 0;
    min-height: 54px;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gd-booking-submit-lux {
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    border: 0;
    font: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gd-whatsapp-lux-inline {
    min-height: 56px;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 12px 28px rgba(20,10,5,0.10);
    border: 1px solid rgba(43,29,22,0.08);
}

.gd-whatsapp-lux-inline-left {
    background: linear-gradient(135deg, #2b8a4c, #1d6d3d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
}

.gd-whatsapp-lux-inline-right {
    background: rgba(255,252,248,0.98);
    color: var(--gd-text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 700;
    font-size: 15px;
}

/* ===== GENERAL SECTIONS ===== */

.gd-section {
    padding: 90px 0;
}

.gd-section-sm {
    padding: 72px 0;
}

.gd-section-head {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.gd-section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.98;
}

.gd-section-head p {
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: var(--gd-muted);
    max-width: 820px;
}

.gd-center-btn {
    margin-top: 22px;
}

.gd-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* ===== CARDS / ROOMS / LOCATIONS / FEATURES ===== */

.gd-room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.gd-room-card,
.gd-location-card,
.gd-feature-card,
.gd-faq-item {
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(43,29,22,0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(20,10,5,0.06);
}

.gd-room-thumb {
    aspect-ratio: 1.15 / 0.82;
    overflow: hidden;
}

.gd-room-thumb img,
.gd-location-thumb img,
.gd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gd-room-body,
.gd-location-body,
.gd-feature-body {
    padding: 22px;
}

.gd-room-body h3,
.gd-location-body h3,
.gd-feature-body h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.08;
}

.gd-room-body p,
.gd-location-body p,
.gd-feature-body p {
    margin: 0 0 16px;
    color: var(--gd-muted);
    line-height: 1.7;
    font-size: 15px;
}

.gd-location-grid {
    display: grid;
    gap: 22px;
}

.gd-location-grid-five {
    grid-template-columns: repeat(5, 1fr);
}

.gd-location-thumb {
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
}

.gd-location-meta {
    display: block;
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--gd-gold-deep);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gd-best-for {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gd-text);
    margin-bottom: 16px;
}

.gd-location-actions {
    margin-top: auto;
}

.gd-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gd-feature-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.gd-feature-card {
    border-radius: 18px;
}

.gd-feature-body h3 {
    font-size: 22px;
}

/* ===== DINING SECTION ===== */

.gd-dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.gd-card-image {
    min-height: 420px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--gd-shadow);
}

.gd-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 0.98;
}

.gd-copy p {
    color: var(--gd-muted);
    line-height: 1.82;
    font-size: 16px;
    margin: 0 0 14px;
}

/* ===== FAQ ===== */

.gd-faq {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.gd-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gd-text);
}

.gd-faq-item summary::-webkit-details-marker {
    display: none;
}

.gd-faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: var(--gd-gold-deep);
}

.gd-faq-item[open] summary::after {
    content: "−";
}

.gd-faq-content {
    padding: 0 24px 22px;
    color: var(--gd-muted);
    line-height: 1.8;
}



/* ===== FLOATING WHATSAPP ===== */

.gd-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1f8a4a, #196a39);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(31,107,67,0.30);
    font-size: 28px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1280px) {
    .gd-location-grid-five {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1180px) {
    .gd-header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .gd-nav {
        display: none;
    }

    .gd-mobile-toggle {
        display: inline-block;
    }

    .gd-dining-grid {
        grid-template-columns: 1fr;
    }

    .gd-booking-shell-grid {
        grid-template-columns: 1fr;
    }

    .gd-room-grid,
    .gd-feature-grid,
    .gd-footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .gd-hero-refined-copy {
        padding-left: 20px;
    }
}

@media (max-width: 780px) {
    .gd-wrap {
    width: min(calc(100% - 28px), 1220px);
}

    .gd-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gd-topbar-left,
    .gd-topbar-right {
        gap: 8px 14px;
    }

    .gd-topbar-item {
        white-space: normal;
    }

    .gd-header-inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
        min-height: 82px;
        padding: 10px 0;
    }

    .gd-header-actions {
        display: none;
    }

    .gd-brand img {
        width: 54px;
        height: 54px;
    }

    .gd-logo-word {
        font-size: 28px;
    }

    .gd-logo-sub {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .gd-hero-refined {
        min-height: 500px;
    }

    .gd-hero-refined-inner {
        min-height: 500px;
        padding: 64px 0 94px;
    }

    .gd-hero-refined-copy {
        padding-left: 0;
        max-width: 100%;
    }

    .gd-hero-refined-copy h1 {
        font-size: 48px;
    }

    .gd-hero-refined-copy p {
        font-size: 16px;
    }

    .gd-booking-shell {
        margin-top: -36px;
    }

    .gd-booking-lux-grid,
    .gd-room-grid,
    .gd-location-grid-five,
    .gd-feature-grid,
    .gd-feature-grid-four,
    .gd-footer-cols,
    .gd-footer-links-wrap {
        grid-template-columns: 1fr;
    }

    .gd-whatsapp-lux-inline {
        grid-template-columns: 1fr;
    }

    .gd-whatsapp-lux-inline-left,
    .gd-whatsapp-lux-inline-right {
        justify-content: flex-start;
    }

    .gd-section {
        padding: 64px 0;
    }

    .gd-card-image {
        min-height: 280px;
    }

    .gd-footer {
        padding: 64px 0 22px;
    }

    .gd-footer-desc {
        max-width: 100%;
    }

    .gd-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gd-hero-small {
    padding: 80px 0 50px;
    background: #f6f1ea;
    text-align: center;
}

.gd-hero-small h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.gd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.gd-image-stack img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.gd-location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gd-location-card img {
    width: 100%;
    border-radius: 12px;
}

.gd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gd-gallery-item img {
    width: 100%;
    border-radius: 12px;
}

.gd-contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gd-contact-card input,
.gd-contact-card textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.gd-location-pill {
    background: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    display: inline-block;
    margin: 6px;
    font-size: 14px;
}

.gd-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gd-nav .gd-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.gd-nav .gd-menu li {
    margin: 0;
    padding: 0;
}

.gd-nav .gd-menu a {
    color: var(--gd-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    font-family: "Cormorant Garamond", Georgia, serif;
    transition: color 0.25s ease;
}

.gd-nav .gd-menu a:hover,
.gd-nav .gd-menu .current-menu-item > a,
.gd-nav .gd-menu .current_page_item > a {
    color: var(--gd-gold-deep);
}

.gd-mobile-nav .gd-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gd-mobile-nav .gd-mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.gd-mobile-nav .gd-mobile-menu-list a {
    display: block;
    color: var(--gd-text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(43,29,22,0.08);
}

/* ===== INNER PAGE HERO ===== */

.gd-hero-small {
    padding: 90px 0 70px;
    background:
        linear-gradient(rgba(248,244,239,0.92), rgba(248,244,239,0.92)),
        radial-gradient(circle at top right, rgba(184,130,47,0.08), transparent 20%);
    text-align: center;
}

.gd-hero-small h1 {
    margin: 0 0 12px;
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1;
    color: var(--gd-text);
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-hero-small p {
    margin: 0;
    color: var(--gd-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ===== INNER PAGE CONTENT LAYOUT ===== */

.gd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.gd-grid-2 h2 {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1;
    color: var(--gd-text);
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-grid-2 p {
    color: var(--gd-muted);
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 16px;
}

/* ===== IMAGE STACK ===== */

.gd-image-stack {
    display: grid;
    gap: 22px;
}

.gd-image-stack img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(20,10,5,0.10);
    display: block;
    background: #eee;
}

/* ===== ALT SECTION ===== */

.gd-section-alt {
    padding: 80px 0;
    background: rgba(255,255,255,0.32);
}

.gd-center {
    text-align: center;
}

.gd-section-alt h2,
.gd-center h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 52px);
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1;
}

/* ===== LOCATION PILLS ===== */

.gd-locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.gd-location-pill {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(43,29,22,0.08);
    padding: 14px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gd-text);
    box-shadow: 0 8px 20px rgba(20,10,5,0.04);
}

/* ===== LOCATION PAGE CARDS ===== */

.gd-location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gd-location-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(43,29,22,0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(20,10,5,0.06);
}

.gd-location-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gd-card-body {
    padding: 22px;
}

.gd-card-body h3 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-card-body p {
    margin: 0 0 16px;
    color: var(--gd-muted);
    line-height: 1.7;
}

/* ===== GALLERY PAGE ===== */

.gd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gd-gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(20,10,5,0.08);
    background: #f0ece6;
}

.gd-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gd-gallery-item:hover img {
    transform: scale(1.04);
}

/* ===== CONTACT PAGE ===== */

.gd-contact-card {
    background: rgba(255,255,255,0.86);
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(20,10,5,0.08);
    border: 1px solid rgba(43,29,22,0.08);
}

.gd-contact-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-contact-card input,
.gd-contact-card textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(43,29,22,0.12);
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

.gd-contact-card textarea {
    min-height: 140px;
    resize: vertical;
}

/* ===== BUTTON ALIASES ===== */

.gd-btn-primary,
.gd-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.gd-btn-primary,
.gd-btn-secondary {
    background: linear-gradient(135deg, var(--gd-gold), #d49b42);
    color: #fff;
    box-shadow: 0 14px 35px rgba(184,130,47,0.20);
}

.gd-btn-primary:hover,
.gd-btn-secondary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1180px) {
    .gd-grid-2,
    .gd-location-cards,
    .gd-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gd-grid-2 {
        gap: 36px;
    }
}

@media (max-width: 780px) {
    .gd-hero-small {
        padding: 70px 0 50px;
    }

    .gd-grid-2,
    .gd-location-cards,
    .gd-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gd-image-stack img {
        height: 240px;
    }

    .gd-gallery-item img {
        height: 220px;
    }

    .gd-locations-grid {
        justify-content: flex-start;
    }
}

/* ===== FINAL FOOTER ===== */

.gd-footer {
    background:
        radial-gradient(circle at top left, rgba(184,130,47,0.10), transparent 20%),
        linear-gradient(180deg, #140c08 0%, #0d0806 100%);
    color: #f5ead9;
    padding: 64px 0 22px;
    margin-top: 30px;
}

.gd-footer .gd-wrap {
    width: min(calc(100% - 64px), 1220px);
    margin: 0 auto;
}

.gd-footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 28px;
}

.gd-footer-brand {
    max-width: 430px;
}

.gd-brand-footer {
    color: #f5ead9;
    text-decoration: none;
}

.gd-brand-footer .gd-logo-word {
    color: #f5ead9;
}

.gd-brand-footer .gd-logo-sub {
    color: rgba(245,234,217,0.58);
}

.gd-footer-desc {
    margin: 18px 0 18px;
    max-width: 420px;
    color: rgba(245,234,217,0.74);
    line-height: 1.8;
    font-size: 14px;
}

.gd-footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.gd-footer-contact-mini a {
    color: rgba(245,234,217,0.82);
    text-decoration: none;
    font-size: 14px;
}

.gd-footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.gd-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #f5ead9;
    border: 1px solid rgba(245,234,217,0.14);
    background: rgba(255,255,255,0.04);
    font-size: 14px;
    transition: 0.25s ease;
}

.gd-footer-socials a:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-1px);
}

.gd-footer-links-wrap {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.25fr;
    gap: 34px;
}

.gd-footer-col h3 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #f5ead9;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.gd-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gd-footer-col li {
    margin-bottom: 10px;
    color: rgba(245,234,217,0.74);
    line-height: 1.7;
    font-size: 14px;
}

.gd-footer-col a {
    color: rgba(245,234,217,0.78);
    text-decoration: none;
}

.gd-footer-col a:hover {
    color: #fff;
}

.gd-footer-branches li {
    margin-bottom: 14px;
}

.gd-footer-branches li strong {
    display: inline-block;
    color: #fff;
    margin-bottom: 3px;
    font-size: 14px;
}

.gd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(245,234,217,0.52);
    font-size: 12px;
}

@media (max-width: 1180px) {
    .gd-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gd-footer-links-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .gd-footer-branches {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .gd-footer {
        padding: 52px 0 20px;
    }

    .gd-footer .gd-wrap {
        width: min(calc(100% - 28px), 1220px);
    }

    .gd-footer-links-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gd-footer-desc {
        max-width: 100%;
    }

    .gd-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gd-album-content {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--gd-muted);
    line-height: 1.9;
}

.gd-album-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.gd-album-content .wp-block-gallery {
    margin-top: 30px;
    margin-bottom: 30px;
}

.gd-album-content .wp-block-image img,
.gd-album-content .blocks-gallery-item img,
.gd-album-content .wp-block-gallery img {
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(20,10,5,0.08);
}

.gd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.gd-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 18px;
}

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

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

/* ===== FINAL MOBILE HEADER FIX ===== */

@media (max-width: 780px) {
    .gd-topbar {
        font-size: 11px;
    }

    .gd-topbar-inner {
        padding: 7px 0;
        gap: 4px;
    }

    .gd-topbar-left,
    .gd-topbar-right {
        width: 100%;
        gap: 4px 10px;
        line-height: 1.4;
    }

    .gd-topbar-item {
        font-size: 11px;
        white-space: normal;
    }

    .gd-header {
        background: rgba(20, 14, 10, 0.96);
    }

    .gd-header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        min-height: 76px;
        padding: 10px 0;
    }

    .gd-brand {
        min-width: 0;
        max-width: 240px;
    }

    .gd-brand img {
        width: 52px;
        height: 52px;
        flex: 0 0 auto;
    }

    .gd-brand-text {
        min-width: 0;
    }

    .gd-logo-word {
        font-size: 30px;
        line-height: 0.9;
        color: #f5ead9;
    }

    .gd-logo-sub {
        font-size: 10px;
        letter-spacing: 0.16em;
        color: rgba(245,234,217,0.65);
    }

    .gd-nav,
    .gd-header-actions {
        display: none !important;
    }

    .gd-mobile-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(245,234,217,0.16);
    }

    .gd-mobile-toggle span {
        background: #f5ead9;
    }

    .gd-mobile-menu {
        background: rgba(20, 14, 10, 0.98);
    }

    .gd-mobile-nav a,
    .gd-mobile-nav .gd-mobile-menu-list a {
        color: #f5ead9;
        border-bottom-color: rgba(245,234,217,0.12);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 22px;
    }
}

/* ===== PREMIUM MOBILE HEADER REFINEMENT ===== */

@media (max-width: 780px) {
    .gd-topbar {
        background: #241711;
        color: rgba(245,234,217,0.88);
    }

    .gd-header {
        background: rgba(248,244,239,0.96);
        border-bottom: 1px solid rgba(43,29,22,0.08);
    }

    .gd-logo-word {
        color: var(--gd-text);
        font-size: 30px;
    }

    .gd-logo-sub {
        color: var(--gd-muted);
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .gd-mobile-toggle {
        display: inline-flex !important;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gd-gold), #d49b42);
        border: 0;
        box-shadow: 0 12px 28px rgba(184,130,47,0.24);
    }

    .gd-mobile-toggle span {
        background: #fff;
        height: 2px;
        width: 20px;
        margin: 3px 0;
    }

    .gd-mobile-menu {
        background: rgba(248,244,239,0.98);
        border-top: 1px solid rgba(43,29,22,0.08);
    }

    .gd-mobile-nav a,
    .gd-mobile-nav .gd-mobile-menu-list a {
        color: var(--gd-text);
        font-size: 23px;
        font-family: "Cormorant Garamond", Georgia, serif;
        border-bottom: 1px solid rgba(43,29,22,0.08);
    }

    .gd-mobile-nav a:hover,
    .gd-mobile-nav .gd-mobile-menu-list a:hover {
        color: var(--gd-gold-deep);
    }

    .gd-hero-refined-copy h1 {
        font-size: 44px;
        line-height: 0.95;
    }

    .gd-hero-refined-copy p {
        font-size: 16px;
        line-height: 1.6;
    }
}


/* FORCE MOBILE NAV FIX */
@media (max-width: 980px) {
    .gd-nav,
    .gd-header-actions {
        display: none !important;
        visibility: hidden !important;
    }

    .gd-mobile-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .gd-header-inner {
        grid-template-columns: 1fr auto !important;
    }

    .gd-brand {
        max-width: 75vw;
        overflow: hidden;
    }
}