:root {
    --forest-950: #071c17;
    --forest-900: #0b2b22;
    --forest-800: #123d30;
    --forest-700: #1b5642;
    --gold-600: #b9883e;
    --gold-500: #d1a657;
    --gold-300: #ead2a1;
    --ivory: #fbf8f2;
    --sand: #f1e9dc;
    --white: #ffffff;
    --ink: #17211d;
    --muted: #64716b;
    --line: rgba(18, 61, 48, .14);
    --shadow-sm: 0 12px 35px rgba(7, 28, 23, .08);
    --shadow-lg: 0 28px 80px rgba(7, 28, 23, .16);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", system-ui, sans-serif;
    --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.nav-open, body.popup-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; left: 16px; top: -100px; z-index: 99999;
    background: var(--white); color: var(--forest-900); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.announcement-bar { background: var(--forest-950); color: rgba(255,255,255,.92); font-size: 12px; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement-marquee { flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.announcement-track { display: flex; width: max-content; animation: announcement-scroll 26s linear infinite; }
.announcement-track span { display: inline-flex; align-items: center; gap: 8px; padding-right: 70px; white-space: nowrap; }
.announcement-inner > a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; font-weight: 700; }
.announcement-inner i { color: var(--gold-500); }
@keyframes announcement-scroll { to { transform: translateX(-50%); } }

.site-header {
    position: sticky; top: 0; z-index: 1000; background: rgba(251,248,242,.94);
    border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7,28,23,.09); }
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(185,136,62,.42); }
.brand span { display: grid; gap: 5px; }
.brand strong { font-family: var(--serif); color: var(--forest-900); font-size: 26px; letter-spacing: .08em; text-transform: uppercase; }
.brand small { color: var(--gold-600); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav > a, .nav-dropdown > button {
    border: 0; background: none; color: var(--forest-900); padding: 28px 0 25px;
    font-size: 13px; font-weight: 700; position: relative;
}
.primary-nav > a:not(.nav-book)::after, .nav-dropdown > button::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 1px;
    background: var(--gold-600); transition: right .25s ease;
}
.primary-nav > a:hover::after, .primary-nav > a.active::after,
.nav-dropdown > button:hover::after, .nav-dropdown > button.active::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown button i { margin-left: 6px; font-size: 9px; transition: transform .2s ease; }
.nav-dropdown.open button i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% - 12px); left: 50%; width: 280px; padding: 10px;
    background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: grid; gap: 1px; padding: 11px 13px; border-radius: 9px; }
.nav-dropdown-menu a:hover { background: var(--sand); }
.nav-dropdown-menu span { color: var(--forest-900); font-size: 13px; font-weight: 700; }
.nav-dropdown-menu small { color: var(--muted); font-size: 10px; }
.primary-nav .nav-book {
    background: var(--forest-900); color: var(--white); padding: 12px 18px; border-radius: 999px;
    transition: background .2s ease, transform .2s ease;
}
.primary-nav .nav-book:hover { background: var(--gold-600); transform: translateY(-2px); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; padding: 11px; }
.nav-toggle > span:not(.sr-only) { display: block; height: 1px; background: var(--forest-900); margin: 5px 0; transition: .25s ease; }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px;
    padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-size: 13px;
    font-weight: 700; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest-900); }
.button-primary:hover { background: var(--gold-600); }
.button-gold { color: var(--forest-950); background: var(--gold-500); }
.button-gold:hover { background: var(--gold-300); }
.button-light { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.button-light:hover { background: var(--white); color: var(--forest-900); }
.button-outline { color: var(--forest-900); border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--gold-600); color: var(--gold-600); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--forest-800); font-size: 13px; font-weight: 700; }
.text-link i { font-size: 11px; transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

.home-hero { position: relative; min-height: 720px; color: var(--white); display: grid; align-items: center; overflow: hidden; }
.hero-slider, .hero-slide, .hero-media { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity 1.1s ease, visibility 1.1s ease, transform 7s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-media { object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,24,18,.91) 0%, rgba(5,27,21,.68) 48%, rgba(5,27,21,.18) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.65) .5px, transparent .5px); background-size: 6px 6px; }
.hero-inner { position: relative; z-index: 2; padding: 105px 0 170px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-300); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 35px; height: 1px; background: currentColor; }
.display-title { max-width: 850px; margin: 22px 0 18px; font-family: var(--serif); font-size: clamp(60px, 7.2vw, 108px); font-weight: 600; letter-spacing: -.045em; line-height: .88; }
.display-title em { color: var(--gold-300); font-weight: 500; }
.hero-copy { max-width: 610px; color: rgba(255,255,255,.78); font-size: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-destinations { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 36px; }
.hero-destinations a { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 700; backdrop-filter: blur(10px); }
.hero-destinations a:hover { border-color: var(--gold-300); background: rgba(234,210,161,.13); }
.hero-destinations i { color: var(--gold-300); }
.hero-slider-controls { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.hero-slider-controls > button { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.07); color: var(--white); }
.hero-slider-controls > button:hover { border-color: var(--gold-300); color: var(--gold-300); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.44); transition: width .25s ease, background .25s ease; }
.hero-dots button.is-active { width: 25px; background: var(--gold-300); }

.booking-wrap { position: relative; z-index: 5; margin-top: -94px; }
.booking-panel { background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px; }
.booking-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 8px 13px; }
.booking-panel-head strong { color: var(--forest-900); font-family: var(--serif); font-size: 24px; }
.booking-panel-head span { color: var(--muted); font-size: 11px; }
.booking-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr .9fr auto; gap: 10px; }
.field { position: relative; display: grid; gap: 5px; }
.field > label { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field-control { position: relative; }
.field-control i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gold-600); font-size: 13px; pointer-events: none; }
.field input, .field select, .field textarea {
    width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 10px; background: var(--ivory);
    color: var(--ink); padding: 12px 14px; outline: 0; transition: border .2s ease, box-shadow .2s ease;
}
.field-control input, .field-control select { padding-left: 38px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-600); box-shadow: 0 0 0 3px rgba(185,136,62,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.booking-submit { align-self: end; min-height: 52px; border: 0; white-space: nowrap; }

.section { padding: 110px 0; }
.section-soft { background: var(--sand); }
.section-dark { color: var(--white); background: var(--forest-950); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-header > div { max-width: 760px; }
.kicker { color: var(--gold-600); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.section-title { margin: 10px 0 0; color: var(--forest-900); font-family: var(--serif); font-size: clamp(43px, 5vw, 70px); font-weight: 600; letter-spacing: -.035em; line-height: .95; }
.section-dark .section-title { color: var(--white); }
.section-title em { color: var(--gold-600); font-weight: 500; }
.section-lead { max-width: 570px; margin: 16px 0 0; color: var(--muted); }
.section-dark .section-lead { color: rgba(255,255,255,.66); }

.resort-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resort-card { position: relative; min-height: 560px; border-radius: 18px; overflow: hidden; background: var(--forest-900); box-shadow: var(--shadow-sm); }
.resort-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.resort-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,23,.05) 25%, rgba(7,28,23,.92) 100%); }
.resort-card:hover img { transform: scale(1.055); }
.resort-card-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 32px; color: var(--white); }
.resort-card-index { position: absolute; top: 22px; right: 24px; z-index: 2; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 22px; }
.resort-card small { color: var(--gold-300); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.resort-card h3 { margin: 8px 0 7px; font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; }
.resort-card p { margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.card-actions { display: flex; gap: 18px; align-items: center; }
.card-actions a { font-size: 11px; font-weight: 700; }
.card-actions a:first-child { display: inline-flex; gap: 8px; align-items: center; color: var(--gold-300); }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.experience-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.experience-card-media { height: 320px; overflow: hidden; }
.experience-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card:hover img { transform: scale(1.04); }
.experience-card-body { padding: 28px; }
.experience-card .number { color: var(--gold-600); font-family: var(--serif); font-size: 18px; }
.experience-card h3 { margin: 6px 0 9px; color: var(--forest-900); font-family: var(--serif); font-size: 34px; line-height: 1; }
.experience-card p { margin: 0; color: var(--muted); font-size: 13px; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-media { position: relative; height: 285px; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-media img { transform: scale(1.04); }
.room-location { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: rgba(7,28,23,.82); color: var(--white); border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.room-body { padding: 25px; }
.room-body h3 { margin: 0 0 7px; color: var(--forest-900); font-family: var(--serif); font-size: 32px; line-height: 1; }
.room-body > p { min-height: 44px; margin: 0; color: var(--muted); font-size: 13px; }
.room-meta { display: flex; flex-wrap: wrap; gap: 9px 16px; margin: 19px 0; padding: 15px 0; border-block: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.room-meta span { display: inline-flex; align-items: center; gap: 7px; }
.room-meta i { color: var(--gold-600); }
.room-footer { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.room-price { color: var(--forest-900); font-size: 12px; font-weight: 700; }

.split-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 660px; background: var(--forest-900); color: var(--white); }
.split-media { min-height: 520px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content { padding: clamp(55px, 7vw, 105px); display: flex; flex-direction: column; justify-content: center; }
.split-content h2 { margin: 15px 0; font-family: var(--serif); font-size: clamp(48px, 5vw, 76px); font-weight: 600; letter-spacing: -.04em; line-height: .94; }
.split-content p { color: rgba(255,255,255,.7); }
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 30px; }
.split-list span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 12px; }
.split-list i { color: var(--gold-500); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 13px; }
.gallery-item { position: relative; grid-column: span 4; border-radius: 14px; overflow: hidden; cursor: pointer; background: var(--sand); }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 35px 18px 15px; color: var(--white); background: linear-gradient(transparent, rgba(7,28,23,.8)); font-size: 11px; font-weight: 700; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.gallery-filters button { border: 1px solid var(--line); background: transparent; color: var(--forest-900); padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.gallery-filters button.active, .gallery-filters button:hover { background: var(--forest-900); color: var(--white); }
.gallery-item.is-hidden { display: none; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; }
.benefit { padding: 32px; border-right: 1px solid rgba(255,255,255,.12); }
.benefit:last-child { border-right: 0; }
.benefit i { color: var(--gold-500); font-size: 20px; }
.benefit h3 { margin: 14px 0 5px; font-family: var(--serif); font-size: 25px; }
.benefit p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }

.page-hero { position: relative; min-height: 570px; display: grid; align-items: end; color: var(--white); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,27,21,.15), rgba(5,27,21,.86)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; padding: 95px 0 70px; }
.page-hero h1 { max-width: 920px; margin: 16px 0 13px; font-family: var(--serif); font-size: clamp(54px, 7vw, 94px); font-weight: 600; letter-spacing: -.045em; line-height: .9; }
.page-hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.76); font-size: 16px; }
.breadcrumbs { display: flex; gap: 7px; align-items: center; color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumbs a:hover { color: var(--gold-300); }

.property-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.property-intro .section-title { margin-top: 7px; }
.property-copy p { color: var(--muted); }
.about-approach-section { overflow: hidden; }
.about-approach-head { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(45px, 7vw, 105px); align-items: end; }
.about-approach-head .section-title { margin-top: 7px; }
.about-approach-head .property-copy { max-width: 560px; padding-bottom: 8px; }
.about-destination-collage { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); gap: 16px; height: 650px; margin-top: 62px; }
.about-destination-collage figure { margin: 0; }
.about-collage-main, .about-destination-photo { position: relative; overflow: hidden; border-radius: 18px; background: var(--forest-900); }
.about-collage-main { box-shadow: var(--shadow-lg); }
.about-collage-main::after, .about-destination-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(5,27,21,.86) 100%); pointer-events: none; }
.about-collage-main img, .about-destination-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.about-collage-main:hover img, .about-destination-photo:hover img { transform: scale(1.045); }
.about-collage-main figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; gap: 2px; padding: 40px 34px 28px; color: var(--white); }
.about-collage-main figcaption span { font-family: var(--serif); font-size: 31px; font-weight: 600; line-height: 1; }
.about-collage-main figcaption small, .about-destination-photo span small { color: var(--gold-300); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-collage-destinations { display: grid; grid-template-rows: repeat(3, 1fr); gap: 16px; }
.about-destination-photo { display: block; min-height: 0; box-shadow: var(--shadow-sm); }
.about-destination-photo span { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 28px 22px 18px; color: var(--white); font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1; }
.about-destination-photo span small { grid-column: 1 / -1; margin-bottom: 5px; font-family: var(--sans); }
.about-destination-photo span i { color: var(--gold-300); font-size: 12px; transition: transform .25s ease; }
.about-destination-photo:hover span i { transform: translateX(4px); }
.property-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fact-card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.fact-card i { color: var(--gold-600); }
.fact-card small { display: block; margin-top: 10px; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.fact-card strong { display: block; color: var(--forest-900); font-size: 13px; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amenity { display: flex; align-items: center; gap: 14px; padding: 19px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-size: 12px; font-weight: 700; }
.amenity i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--sand); color: var(--gold-600); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 55px; align-items: start; }
.prose { color: var(--muted); }
.prose h2, .prose h3 { color: var(--forest-900); font-family: var(--serif); line-height: 1; }
.prose h2 { font-size: 43px; }
.prose h3 { font-size: 30px; }
.prose p { margin: 0 0 18px; }
.prose ul { padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 22px; margin: 8px 0; }
.prose li::before { content: ""; position: absolute; left: 0; top: .8em; width: 9px; height: 1px; background: var(--gold-600); }
.sticky-card { position: sticky; top: 120px; padding: 28px; border-radius: 16px; background: var(--forest-900); color: var(--white); box-shadow: var(--shadow-lg); }
.sticky-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 35px; line-height: 1; }
.sticky-card p { color: rgba(255,255,255,.66); font-size: 12px; }
.sticky-card .button { width: 100%; margin-top: 10px; }

.enquiry-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 55px; align-items: start; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-card h2 { margin: 0 0 6px; color: var(--forest-900); font-family: var(--serif); font-size: 42px; line-height: 1; }
.form-card > p { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid .field > label { font-size: 10px; }
.required-mark { color: #a23b32; }
.form-note { margin: 16px 0; color: var(--muted); font-size: 10px; }
.check-field { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 11px; }
.check-field input { margin-top: 5px; accent-color: var(--forest-900); }
.form-errors { margin: 0 0 22px; padding: 16px 18px; border-radius: 10px; background: #fff1ef; color: #812d27; font-size: 12px; }
.form-errors ul { margin: 0; padding-left: 18px; }
.success-card { padding: 22px; border: 1px solid rgba(27,86,66,.2); border-radius: 12px; background: #edf8f3; color: var(--forest-800); margin-bottom: 22px; }
.success-card strong { display: block; font-family: var(--serif); font-size: 26px; }
.contact-card { padding: 30px; border-radius: 18px; background: var(--forest-900); color: var(--white); }
.contact-card h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 35px; }
.contact-card > p { color: rgba(255,255,255,.66); font-size: 12px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-line i { color: var(--gold-500); margin-top: 5px; }
.contact-line small { display: block; color: rgba(255,255,255,.52); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.contact-line strong { font-size: 12px; }

.legal-shell { max-width: 850px; }
.legal-shell h1 { color: var(--forest-900); font-family: var(--serif); font-size: clamp(52px, 7vw, 80px); line-height: .95; }
.legal-shell h2 { margin-top: 40px; color: var(--forest-900); font-family: var(--serif); font-size: 32px; }
.legal-shell p, .legal-shell li { color: var(--muted); }

.empty-state { padding: 45px; border: 1px dashed var(--line); border-radius: 16px; text-align: center; color: var(--muted); }
.db-notice { padding: 12px 16px; border-radius: 10px; background: #fff6dc; color: #715718; font-size: 11px; margin-bottom: 18px; }
.installer-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0 26px; }
.installer-check { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 9px; background: var(--ivory); color: var(--muted); font-size: 11px; }
.installer-check.is-ready i { color: #278259; }
.installer-check.is-missing { background: #fff1ef; color: #812d27; }

.site-footer { padding: 80px 0 22px; background: var(--forest-950); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.2fr; gap: 55px; }
.brand-light strong { color: var(--white); }
.footer-brand > p { max-width: 370px; font-size: 12px; }
.site-footer h2 { margin: 4px 0 18px; color: var(--gold-300); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer li a { font-size: 12px; }
.site-footer a:hover { color: var(--gold-300); }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.footer-contact { display: grid; align-content: start; gap: 8px; }
.footer-contact > a:not(.footer-cta), .footer-contact > span { display: flex; gap: 10px; align-items: flex-start; font-size: 11px; }
.footer-contact i { color: var(--gold-500); margin-top: 4px; }
.footer-cta { display: inline-flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; color: var(--white); font-size: 11px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.footer-bottom div { display: flex; gap: 20px; }
.whatsapp-button { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #1fbf61; color: var(--white); box-shadow: 0 14px 35px rgba(8,45,30,.25); font-size: 26px; }
.whatsapp-button:hover { transform: translateY(-3px); }
.back-to-top { position: fixed; z-index: 890; right: 28px; bottom: 90px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: var(--forest-900); color: var(--white); box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-600); }

.notification-popup { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 20px; }
.notification-popup[hidden] { display: none; }
.notification-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(3,18,14,.76); backdrop-filter: blur(7px); }
.notification-card { position: relative; width: min(100%, 520px); padding: 44px; overflow: hidden; border: 1px solid rgba(209,166,87,.34); border-radius: 24px; background: linear-gradient(145deg, #fff 0%, #fbf6ec 100%); box-shadow: 0 35px 110px rgba(3,18,14,.38); animation: popup-enter .45s cubic-bezier(.2,.8,.2,1); }
.notification-card::before { content: ""; position: absolute; right: -80px; top: -90px; width: 220px; height: 220px; border-radius: 50%; background: rgba(209,166,87,.12); }
.notification-close { position: absolute; z-index: 2; right: 17px; top: 17px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.75); color: var(--forest-900); }
.notification-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 22px; border-radius: 18px; background: var(--forest-900); color: var(--gold-300); font-size: 21px; transform: rotate(-4deg); }
.notification-card h2 { margin: 8px 0 12px; color: var(--forest-900); font-family: var(--serif); font-size: 44px; line-height: .95; }
.notification-card p { margin: 0; color: var(--muted); font-size: 14px; }
.notification-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.notification-whatsapp { display: inline-flex; align-items: center; gap: 8px; color: #137c42; font-size: 13px; font-weight: 700; }
@keyframes popup-enter { from { opacity: 0; transform: translateY(22px) scale(.97); } }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .primary-nav { gap: 17px; }
    .primary-nav > a, .nav-dropdown > button { font-size: 12px; }
    .booking-grid { grid-template-columns: 1.3fr 1fr 1fr .9fr; }
    .booking-submit { grid-column: 1 / -1; width: 100%; }
    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .announcement-inner > a { display: none; }
    .nav-shell { min-height: 74px; }
    .brand img { width: 52px; height: 52px; }
    .brand strong { font-size: 22px; }
    .nav-toggle { display: block; position: relative; z-index: 3; }
    .primary-nav {
        position: fixed; inset: 0 0 0 18%; z-index: 2; padding: 110px 28px 35px;
        display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--ivory);
        transform: translateX(105%); transition: transform .3s ease; box-shadow: var(--shadow-lg); overflow-y: auto;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav > a, .nav-dropdown > button { display: flex; width: 100%; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; font-weight: 600; text-align: left; }
    .primary-nav > a::after, .nav-dropdown > button::after { display: none; }
    .primary-nav .nav-book { margin-top: 20px; justify-content: center; padding: 14px 20px; color: var(--white); font-family: var(--sans); font-size: 12px; }
    .nav-dropdown-menu { position: static; width: 100%; padding: 5px 0 8px 14px; border: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; display: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; transform: none; }
    .nav-dropdown:hover .nav-dropdown-menu:not(:focus-within) { display: none; }
    .nav-dropdown.open:hover .nav-dropdown-menu { display: block; }
    .home-hero { min-height: 680px; }
    .hero-inner { padding: 95px 0 155px; }
    .booking-grid { grid-template-columns: 1fr 1fr; }
    .booking-submit { grid-column: 1 / -1; }
    .section { padding: 85px 0; }
    .section-header { align-items: start; flex-direction: column; gap: 20px; }
    .resort-grid, .experience-grid { grid-template-columns: 1fr; }
    .resort-card { min-height: 520px; }
    .experience-card { display: grid; grid-template-columns: .9fr 1.1fr; }
    .experience-card-media { height: 100%; min-height: 280px; }
    .split-feature { grid-template-columns: 1fr; }
    .split-media { min-height: 480px; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }
    .benefit:nth-child(2) { border-right: 0; }
    .benefit:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
    .property-intro, .content-grid, .enquiry-layout, .about-approach-head { grid-template-columns: 1fr; gap: 40px; }
    .about-approach-head .property-copy { max-width: 680px; }
    .about-destination-collage { grid-template-columns: 1fr; height: auto; }
    .about-collage-main { height: 520px; }
    .about-collage-destinations { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
    .about-destination-photo { height: 230px; }
    .sticky-card { position: static; }
    .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .announcement-inner { min-height: 34px; font-size: 10px; }
    .brand span { display: none; }
    .display-title { font-size: clamp(52px, 17vw, 72px); }
    .hero-overlay { background: linear-gradient(90deg, rgba(4,24,18,.9), rgba(5,27,21,.5)); }
    .hero-copy { font-size: 14px; }
    .hero-actions .button { width: 100%; }
    .hero-destinations { display: grid; grid-template-columns: 1fr; width: max-content; }
    .booking-wrap { margin-top: -72px; }
    .booking-panel { padding: 14px; border-radius: 14px; }
    .booking-panel-head { display: block; }
    .booking-panel-head span { display: block; margin-top: 3px; }
    .booking-grid, .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: auto; }
    .section { padding: 70px 0; }
    .section-title { font-size: 46px; }
    .resort-card { min-height: 470px; }
    .resort-card-content { padding: 24px; }
    .resort-card h3 { font-size: 38px; }
    .experience-card { display: block; }
    .experience-card-media { height: 270px; }
    .room-grid { grid-template-columns: 1fr; }
    .split-media { min-height: 360px; }
    .split-content { padding: 48px 24px; }
    .split-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 210px; }
    .gallery-item, .gallery-item:nth-child(n) { grid-column: 1 / -1; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .benefit:last-child { border-bottom: 0; }
    .page-hero { min-height: 500px; }
    .page-hero h1 { font-size: 55px; }
    .property-facts, .amenity-grid { grid-template-columns: 1fr; }
    .about-destination-collage { margin-top: 42px; }
    .about-collage-main { height: 390px; }
    .about-collage-main figcaption { padding: 34px 22px 20px; }
    .about-collage-destinations { grid-template-columns: 1fr; }
    .about-destination-photo { height: 215px; }
    .form-card { padding: 24px; }
    .installer-checks { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand { grid-column: auto; }
    .footer-contact { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .whatsapp-button { width: 50px; height: 50px; right: 15px; bottom: 15px; }
    .back-to-top { right: 19px; bottom: 76px; }
    .notification-card { padding: 35px 25px 30px; border-radius: 19px; }
    .notification-card h2 { padding-right: 20px; font-size: 38px; }
    .notification-actions { align-items: stretch; flex-direction: column; gap: 14px; }
    .notification-actions .button { width: 100%; }
    .notification-whatsapp { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Resort stay pages — premium rooms & stay layout
   ========================================================= */
.stay-page {
    --stay-paper: #f8f4ec;
    --stay-panel: #fffdf9;
    --stay-ink: #10271f;
    --stay-muted: #58645f;
    --stay-accent: #b9883e;
    --stay-accent-soft: #f5ead2;
    --stay-line: rgba(17, 53, 41, .13);
    background: var(--stay-paper);
}

.stay-page--araku-valley {
    --stay-paper: #f4f1e7;
    --stay-panel: #fffdf7;
    --stay-ink: #263b2d;
    --stay-muted: #626b5d;
    --stay-accent: #a76532;
    --stay-accent-soft: #efe1d1;
}

.stay-page--chirala {
    --stay-paper: #f1f7f6;
    --stay-panel: #fbffff;
    --stay-ink: #123a3f;
    --stay-muted: #587075;
    --stay-accent: #287d86;
    --stay-accent-soft: #dceff0;
}

.stay-page--kalaburagi {
    --stay-paper: #f7f1e8;
    --stay-panel: #fffaf3;
    --stay-ink: #312f40;
    --stay-muted: #6b6571;
    --stay-accent: #8b6a3f;
    --stay-accent-soft: #eee2cf;
}


.stay-hero {
    position: relative;
    min-height: 570px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
    background: #10271f;
}

.stay-hero__image,
.stay-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.stay-hero__image {
    object-fit: cover;
}

.stay-page--chirala .stay-hero__image {
    object-position: center 58%;
}

.stay-page--araku-valley .stay-hero__image {
    object-position: center 48%;
}

.stay-hero__shade {
    background:
        linear-gradient(90deg, rgba(3, 20, 15, .86) 0%, rgba(3, 20, 15, .55) 46%, rgba(3, 20, 15, .10) 100%),
        linear-gradient(0deg, rgba(3, 20, 15, .42), transparent 62%);
}

.stay-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 118px;
}

.stay-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .83);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stay-breadcrumbs a:hover {
    color: var(--gold-300);
}

.stay-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(64px, 7vw, 94px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: .82;
}

.stay-hero h1 span {
    display: block;
    margin-top: 18px;
    font-size: .48em;
    letter-spacing: -.02em;
    line-height: 1;
}

.stay-hero__content > p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    line-height: 1.55;
}

.stay-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.stay-button {
    display: inline-flex;
    min-height: 48px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.stay-button:hover {
    transform: translateY(-2px);
}

.stay-button--gold {
    background: linear-gradient(135deg, #d9ad4f, #b98218);
    color: #fff;
    box-shadow: 0 10px 24px rgba(185, 130, 24, .22);
}

.stay-button--glass {
    border-color: rgba(255, 255, 255, .66);
    background: rgba(3, 20, 15, .22);
    color: #fff;
    backdrop-filter: blur(10px);
}

.stay-button--glass:hover {
    background: #fff;
    color: var(--forest-900);
}

.stay-button--outline {
    min-height: 43px;
    border-color: rgba(12, 51, 39, .52);
    background: transparent;
    color: var(--forest-900);
}

.stay-button--whatsapp {
    min-height: 42px;
    border-color: #174d3c;
    background: transparent;
    color: #123d30;
}

.stay-button--whatsapp i {
    color: #159447;
    font-size: 17px;
}

.stay-booking-wrap {
    position: relative;
    z-index: 5;
    margin-top: -62px;
}

.stay-booking {
    padding: 24px;
    border: 1px solid rgba(18, 61, 48, .08);
    border-radius: 17px;
    background: rgba(255, 253, 249, .98);
    box-shadow: 0 24px 60px rgba(14, 45, 35, .16);
}

.stay-booking__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.stay-booking__head strong {
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.stay-booking__head span {
    color: var(--stay-muted);
    font-size: 9px;
}

.stay-booking__fields {
    display: grid;
    grid-template-columns: 1fr 1fr .85fr;
    gap: 13px;
}

.stay-field {
    display: grid;
    gap: 7px;
}

.stay-field > span:first-child {
    color: #45534d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stay-field__control {
    position: relative;
    display: block;
}

.stay-field__control input,
.stay-field__control select {
    width: 100%;
    min-height: 48px;
    padding: 10px 42px 10px 14px;
    border: 1px solid rgba(18, 61, 48, .15);
    border-radius: 9px;
    outline: 0;
    background: #fffdf9;
    color: #17211d;
    font-size: 13px;
}

.stay-field__control select {
    padding-left: 42px;
    appearance: auto;
}

.stay-field__control > i:not(.stay-field__leading) {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #142d24;
    transform: translateY(-50%);
    pointer-events: none;
}

.stay-field__control .stay-field__leading {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 14px;
    color: #142d24;
    transform: translateY(-50%);
    pointer-events: none;
}

.stay-field__control input:focus,
.stay-field__control select:focus {
    border-color: var(--stay-gold);
    box-shadow: 0 0 0 3px rgba(198, 151, 63, .12);
}

.stay-booking__submit {
    grid-column: 1 / -1;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: #062d21;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.stay-booking__submit:hover {
    background: #0f4938;
    transform: translateY(-1px);
}

.stay-section {
    padding: 36px 0;
}

.stay-section--rooms {
    padding-top: 55px;
}

.stay-section__header {
    margin-bottom: 28px;
    text-align: center;
}

.stay-section__header > span,
.stay-gallery-card__copy > span,
.stay-getting-card__copy > span {
    color: #8c6a2e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.stay-section__header h2 {
    margin: 8px 0 5px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: clamp(37px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1;
}

.stay-section__header p {
    margin: 0;
    color: var(--stay-muted);
    font-size: 12px;
}

.stay-room-grid {
    display: grid;
    gap: 18px;
}

.stay-room-grid--chirala {
    width: min(100%, 940px);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stay-room-grid--araku {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.stay-room-grid--generic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-room-card {
    overflow: hidden;
    border: 1px solid rgba(18, 61, 48, .08);
    border-radius: 12px;
    background: rgba(255, 253, 249, .98);
    box-shadow: 0 10px 30px rgba(13, 45, 34, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.stay-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(13, 45, 34, .14);
}

.stay-room-card__media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #e9e2d7;
}

.stay-room-grid--araku .stay-room-card__media {
    height: 210px;
}

.stay-room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.stay-room-card:hover .stay-room-card__media img {
    transform: scale(1.045);
}

.stay-room-card__badge {
    position: absolute;
    left: 16px;
    bottom: -17px;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 4px solid #fffdf9;
    border-radius: 50%;
    background: #fff4dc;
    color: #a9771e;
    font-size: 14px;
}

.stay-room-grid--araku .stay-room-card__badge {
    left: 12px;
    bottom: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    background: rgba(114, 128, 64, .82);
    color: #fff;
    font-size: 11px;
    backdrop-filter: blur(6px);
}

.stay-room-card__body {
    padding: 22px 20px 18px;
}

.stay-room-grid--araku .stay-room-card__body {
    padding: 17px 14px 15px;
}

.stay-room-card h3 {
    margin: 0 0 7px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.05;
}

.stay-room-grid--araku .stay-room-card h3 {
    min-height: 48px;
    font-size: 20px;
}

.stay-room-card h3 > span {
    font-size: .73em;
}

.stay-room-card__body > p {
    min-height: 42px;
    margin: 0;
    color: #5e6964;
    font-size: 11px;
    line-height: 1.55;
}

.stay-room-grid--araku .stay-room-card__body > p {
    min-height: 70px;
    font-size: 10px;
}

.stay-room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin-top: 16px;
    color: #415048;
    font-size: 10px;
}

.stay-room-grid--araku .stay-room-card__meta {
    display: grid;
    gap: 5px;
    margin-top: 14px;
}

.stay-room-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.stay-room-card__meta i {
    color: #956b22;
}

.stay-section--experiences {
    padding-top: 12px;
}

.stay-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(18, 61, 48, .07);
    border-radius: 13px;
    background: rgba(255, 253, 249, .86);
    box-shadow: 0 9px 28px rgba(13, 45, 34, .07);
}

.stay-experience {
    position: relative;
    padding: 27px 18px 24px;
    text-align: center;
}

.stay-experience:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;
    background: rgba(18, 61, 48, .10);
}

.stay-experience > i {
    min-height: 42px;
    color: #b47f20;
    font-size: 34px;
}

.stay-experience h3 {
    margin: 9px 0 7px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.05;
}

.stay-experience p {
    margin: 0;
    color: #5f6a64;
    font-size: 9px;
    line-height: 1.55;
}

.stay-section--gallery {
    padding-top: 12px;
}

.stay-gallery-card {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(18, 61, 48, .08);
    border-radius: 13px;
    background: rgba(255, 253, 249, .9);
    box-shadow: 0 9px 28px rgba(13, 45, 34, .07);
}

.stay-gallery-card__copy {
    padding: 22px 10px 18px;
    align-self: center;
}

.stay-gallery-card__copy h2 {
    margin: 10px 0 24px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: clamp(35px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: .95;
}

.stay-gallery-card__images {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    min-height: 300px;
}

.stay-gallery-card__image {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.stay-gallery-card__image--1 {
    grid-row: 1 / 3;
}

.stay-gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-section--getting {
    padding-top: 12px;
    padding-bottom: 38px;
}

.stay-getting-card {
    display: grid;
    grid-template-columns: 1fr .92fr;
    overflow: hidden;
    border: 1px solid rgba(18, 61, 48, .08);
    border-radius: 13px;
    background: rgba(255, 253, 249, .9);
    box-shadow: 0 9px 28px rgba(13, 45, 34, .07);
}

.stay-getting-card__copy {
    padding: 31px;
    align-self: center;
}

.stay-getting-card__copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stay-getting-card__copy h2 {
    margin: 11px 0 10px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 600;
    line-height: 1.05;
}

.stay-getting-card__copy p {
    max-width: 560px;
    margin: 0 0 20px;
    color: #48564f;
    font-size: 11px;
    line-height: 1.65;
}

.stay-getting-card__media {
    min-height: 255px;
    margin: 0;
}

.stay-getting-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-page .site-footer {
    margin-top: 0;
}

.stay-page .notification-popup {
    display: none !important;
}

@media (max-width: 1100px) {
    .stay-room-grid--araku {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stay-room-grid--araku .stay-room-card__body > p {
        min-height: 48px;
    }

    .stay-room-grid--generic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .stay-hero {
        min-height: 540px;
    }

    .stay-hero__content {
        padding-bottom: 108px;
    }

    .stay-booking__fields {
        grid-template-columns: 1fr 1fr;
    }

    .stay-field:nth-of-type(3),
    .stay-booking__submit {
        grid-column: 1 / -1;
    }

    .stay-room-grid--chirala,
    .stay-room-grid--araku,
    .stay-room-grid--generic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stay-room-grid--araku .stay-room-card__body > p {
        min-height: 55px;
    }

    .stay-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stay-experience:nth-child(2)::after {
        display: none;
    }

    .stay-experience:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(18, 61, 48, .10);
    }

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

    .stay-gallery-card__copy {
        padding: 12px 5px;
    }

    .stay-getting-card {
        grid-template-columns: 1fr;
    }

    .stay-getting-card__media {
        min-height: 300px;
    }
}

@media (max-width: 620px) {





    .stay-hero {
        min-height: 520px;
    }

    .stay-hero__shade {
        background: linear-gradient(90deg, rgba(3, 20, 15, .88), rgba(3, 20, 15, .35));
    }

    .stay-hero__content {
        padding-bottom: 92px;
    }

    .stay-breadcrumbs {
        margin-bottom: 18px;
        font-size: 8px;
    }

    .stay-hero h1 {
        font-size: clamp(54px, 17vw, 70px);
    }

    .stay-hero__content > p {
        margin-top: 20px;
        font-size: 14px;
    }

    .stay-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 290px);
    }

    .stay-booking-wrap {
        margin-top: -55px;
    }

    .stay-booking {
        padding: 18px 15px;
        border-radius: 14px;
    }

    .stay-booking__head {
        display: block;
    }

    .stay-booking__head strong {
        font-size: 24px;
    }

    .stay-booking__head span {
        display: block;
        margin-top: 6px;
    }

    .stay-booking__fields {
        grid-template-columns: 1fr;
    }

    .stay-field:nth-of-type(3),
    .stay-booking__submit {
        grid-column: auto;
    }

    .stay-section--rooms {
        padding-top: 45px;
    }

    .stay-room-grid--chirala,
    .stay-room-grid--araku,
    .stay-room-grid--generic {
        grid-template-columns: 1fr;
    }

    .stay-room-card__media,
    .stay-room-grid--araku .stay-room-card__media {
        height: 235px;
    }

    .stay-room-grid--araku .stay-room-card h3,
    .stay-room-card h3 {
        min-height: 0;
        font-size: 25px;
    }

    .stay-room-grid--araku .stay-room-card__body > p,
    .stay-room-card__body > p {
        min-height: 0;
        font-size: 11px;
    }

    .stay-room-grid--araku .stay-room-card__meta {
        display: flex;
    }

    .stay-experience-grid {
        grid-template-columns: 1fr;
    }

    .stay-experience:not(:last-child)::after {
        top: auto;
        right: 18px;
        bottom: 0;
        left: 18px;
        width: auto;
        height: 1px;
    }

    .stay-experience:nth-child(-n + 2) {
        border-bottom: 0;
    }

    .stay-gallery-card {
        padding: 15px;
    }

    .stay-gallery-card__images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 130px;
        min-height: 0;
    }

    .stay-gallery-card__image--1 {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .stay-getting-card__copy {
        padding: 25px 21px;
    }

    .stay-getting-card__media {
        min-height: 230px;
    }
}


/* =========================================================
   Production refinements: shared navigation, property themes,
   media disclosures, gallery lightbox and compact footer
   ========================================================= */
.stay-page .site-header {
    position: sticky;
    background: rgba(251, 248, 242, .96);
    backdrop-filter: blur(18px);
}

.stay-page .nav-toggle { display: none; }
.stay-page .primary-nav { display: flex; }

.stay-page--araku-valley .stay-hero__shade {
    background: linear-gradient(90deg, rgba(24, 43, 28, .90), rgba(40, 61, 40, .55) 50%, rgba(40, 61, 40, .10)), linear-gradient(0deg, rgba(24, 43, 28, .42), transparent 62%);
}
.stay-page--chirala .stay-hero__shade {
    background: linear-gradient(90deg, rgba(8, 42, 48, .90), rgba(24, 78, 84, .52) 50%, rgba(24, 78, 84, .08)), linear-gradient(0deg, rgba(8, 42, 48, .40), transparent 62%);
}
.stay-page--kalaburagi .stay-hero__shade {
    background: linear-gradient(90deg, rgba(28, 25, 39, .90), rgba(63, 51, 51, .54) 50%, rgba(63, 51, 51, .08)), linear-gradient(0deg, rgba(28, 25, 39, .42), transparent 62%);
}

.stay-button--gold,
.stay-booking__submit {
    background: var(--stay-accent);
}
.stay-button--gold:hover,
.stay-booking__submit:hover { filter: brightness(.92); }
.stay-button--outline { color: var(--stay-ink); border-color: var(--stay-line); }
.stay-button--outline:hover { color: var(--stay-accent); border-color: var(--stay-accent); }
.stay-room-card__badge { background: var(--stay-accent-soft); color: var(--stay-accent); }
.stay-room-card__meta i,
.stay-experience > i { color: var(--stay-accent); }

.media-disclosure {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(6, 22, 18, .72);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.stay-hero__media-label { right: 20px; bottom: 20px; }
.stay-room-card__media-label { right: 10px; bottom: 10px; }
.stay-room-grid--araku .stay-room-card__media-label { bottom: 10px; }

.stay-section--intro { padding: 70px 0 18px; }
.stay-property-intro {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
    padding: 36px;
    border: 1px solid var(--stay-line);
    border-radius: 18px;
    background: var(--stay-panel);
    box-shadow: 0 14px 42px rgba(13,45,34,.07);
}
.stay-property-intro__copy > span {
    color: var(--stay-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.stay-property-intro__copy h2 {
    margin: 10px 0 16px;
    color: var(--stay-ink);
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .95;
}
.stay-property-intro__copy p { margin: 0 0 12px; color: var(--stay-muted); font-size: 13px; }
.stay-property-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stay-property-facts > div {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 88px;
    padding: 16px;
    border: 1px solid var(--stay-line);
    border-radius: 13px;
    background: color-mix(in srgb, var(--stay-accent-soft) 45%, #fff);
}
.stay-property-facts i { color: var(--stay-accent); }
.stay-property-facts span { display: grid; color: var(--stay-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.stay-property-facts strong { color: var(--stay-ink); font-size: 12px; letter-spacing: 0; text-transform: none; }

.stay-room-grid--kalaburagi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stay-room-card__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    margin: 16px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--stay-line);
    list-style: none;
}
.stay-room-card__amenities li { position: relative; padding-left: 13px; color: var(--stay-muted); font-size: 9px; line-height: 1.45; }
.stay-room-card__amenities li::before { content: ""; position: absolute; left: 0; top: .55em; width: 4px; height: 4px; border-radius: 50%; background: var(--stay-accent); }
.stay-room-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; }
.stay-room-card__footer strong { color: var(--stay-ink); font-size: 10px; }
.stay-room-card__footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--stay-accent); font-size: 10px; font-weight: 800; }

.stay-section--amenities { padding-top: 18px; }
.stay-amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stay-amenity-grid > div { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border: 1px solid var(--stay-line); border-radius: 12px; background: var(--stay-panel); color: var(--stay-ink); font-size: 11px; }
.stay-amenity-grid i { display: grid; place-items: center; width: 25px; height: 25px; flex: 0 0 auto; border-radius: 50%; background: var(--stay-accent-soft); color: var(--stay-accent); font-size: 9px; }

.stay-gallery-card__copy p { margin: -10px 0 22px; color: var(--stay-muted); font-size: 11px; }
.stay-gallery-card__image,
.stay-getting-card__media { position: relative; }
.stay-getting-card__actions { display: flex; flex-wrap: wrap; gap: 9px; }

/* Gallery interaction */
.gallery-item { cursor: default; }
.gallery-item__button { position: relative; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; }
.gallery-item__button:focus-visible { outline: 3px solid var(--gold-500); outline-offset: -3px; }
.gallery-item__button img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover .gallery-item__button img { transform: scale(1.045); }
.gallery-meta { position: absolute; left: 16px; top: 14px; z-index: 2; display: inline-flex; gap: 6px; align-items: center; padding: 5px 8px; border-radius: 999px; background: rgba(7,28,23,.68); color: #fff; font-size: 8px; font-weight: 700; text-transform: uppercase; backdrop-filter: blur(7px); }
.gallery-caption small { display: block; margin-top: 2px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 600; text-transform: uppercase; }
.gallery-filters button[aria-pressed="true"] { background: var(--forest-900); color: var(--white); }
.gallery-note { margin: 0 0 24px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(209,166,87,.09); color: var(--muted); font-size: 11px; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 6000; display: grid; place-items: center; padding: 24px; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(3,18,14,.88); backdrop-filter: blur(8px); }
.gallery-lightbox__dialog { position: relative; z-index: 1; width: min(100%, 1100px); max-height: calc(100vh - 48px); overflow: auto; border-radius: 18px; background: #071c17; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.gallery-lightbox__dialog img { width: 100%; max-height: calc(100vh - 150px); object-fit: contain; background: #061510; }
.gallery-lightbox__caption { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; color: #fff; font-size: 12px; }
.gallery-lightbox__caption small { color: rgba(255,255,255,.62); }
.gallery-lightbox__close { position: absolute; z-index: 2; right: 12px; top: 12px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(7,28,23,.82); color: #fff; }

/* Footer rules moved from inline markup */
.section-dark { background: radial-gradient(circle at 12% 8%, rgba(209,166,87,.10), transparent 32%), linear-gradient(135deg, #174b3a 0%, #10392d 52%, #0b2b22 100%); box-shadow: inset 0 1px rgba(255,255,255,.05), inset 0 -1px rgba(234,210,161,.10); }
.home-direct-section { padding-bottom: 55px; }
.site-footer { padding: 48px 0 16px; border-top: 1px solid rgba(234,210,161,.18); background: #031510; }
.site-footer .footer-grid { gap: 36px; align-items: start; }
.site-footer .footer-brand > p { margin: 12px 0 0; max-width: 390px; font-size: 11px; line-height: 1.65; }
.site-footer h2 { margin: 3px 0 13px; font-size: 10px; }
.site-footer li { margin: 6px 0; line-height: 1.5; }
.site-footer li a, .site-footer .footer-contact > a:not(.footer-cta), .site-footer .footer-contact > span { font-size: 11px; line-height: 1.5; }
.site-footer .social-links { margin-top: 12px; }
.site-footer .footer-contact { gap: 6px; }
.site-footer .footer-cta { min-height: 42px; margin-top: 8px; padding: 9px 13px; font-size: 10px; }
.site-footer .footer-bottom { margin-top: 24px; padding-top: 12px; font-size: 9px; }

@media (max-width: 1100px) {
    .stay-room-grid--kalaburagi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .stay-page .nav-toggle { display: block; position: relative; z-index: 3; }
    .stay-page .primary-nav {
        position: fixed; inset: 0 0 0 18%; z-index: 2; padding: 110px 28px 35px;
        display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--ivory);
        transform: translateX(105%); transition: transform .3s ease; box-shadow: var(--shadow-lg); overflow-y: auto;
    }
    .stay-page .primary-nav.open { transform: translateX(0); }
    .stay-page .primary-nav > a, .stay-page .nav-dropdown > button { display: flex; width: 100%; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; font-weight: 600; text-align: left; }
    .stay-page .primary-nav > a::after, .stay-page .nav-dropdown > button::after { display: none; }
    .stay-page .primary-nav .nav-book { margin-top: 20px; justify-content: center; padding: 14px 20px; color: var(--white); font-family: var(--sans); font-size: 12px; }
    .stay-property-intro { grid-template-columns: 1fr; }
    .stay-amenity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .stay-hero__media-label { right: 12px; bottom: 12px; }
    .stay-section--intro { padding-top: 48px; }
    .stay-property-intro { gap: 28px; padding: 24px 20px; }
    .stay-property-facts, .stay-amenity-grid { grid-template-columns: 1fr; }
    .stay-room-grid--kalaburagi { grid-template-columns: 1fr; }
    .stay-room-card__amenities { grid-template-columns: 1fr; }
    .gallery-lightbox { padding: 10px; }
    .gallery-lightbox__dialog { max-height: calc(100vh - 20px); border-radius: 12px; }
    .gallery-lightbox__caption { flex-direction: column; gap: 4px; }
    .site-footer { padding: 38px 0 14px; }
}

/* Room-card readability overrides */
.stay-room-grid--araku { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stay-room-grid--chirala { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stay-room-grid--araku .stay-room-card__media { height: 250px; }
.stay-room-grid--araku .stay-room-card__badge { left: 16px; bottom: -17px; width: 39px; height: 39px; border: 4px solid var(--stay-panel); background: var(--stay-accent-soft); color: var(--stay-accent); font-size: 14px; }
.stay-room-grid--araku .stay-room-card__body { padding: 22px 20px 18px; }
.stay-room-grid--araku .stay-room-card h3 { min-height: 0; font-size: 27px; }
.stay-room-grid--araku .stay-room-card__body > p { min-height: 42px; font-size: 11px; }
.stay-room-grid--araku .stay-room-card__meta { display: flex; gap: 7px 18px; margin-top: 16px; }

@media (max-width: 1100px) {
    .stay-room-grid--araku { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .stay-room-grid--araku,
    .stay-room-grid--chirala { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact Us page
   ========================================================= */
.contact-page-hero {
    min-height: 600px;
}
.contact-page-hero::after {
    background:
        linear-gradient(90deg, rgba(4, 24, 18, .90) 0%, rgba(5, 27, 21, .64) 52%, rgba(5, 27, 21, .24) 100%),
        linear-gradient(180deg, rgba(5, 27, 21, .08), rgba(5, 27, 21, .68));
}
.contact-page-hero .page-hero-content { padding-bottom: 110px; }
.contact-page-hero .eyebrow { margin-top: 18px; }
.contact-page-hero h1 { max-width: 880px; font-size: clamp(55px, 6.5vw, 88px); }

.contact-quick-strip {
    position: relative;
    z-index: 5;
    margin-top: -58px;
    padding-bottom: 18px;
}
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.contact-quick-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    min-height: 118px;
    padding: 24px 22px;
    border-right: 1px solid var(--line);
    background: var(--white);
    transition: background .25s ease, transform .25s ease;
}
.contact-quick-card:last-child { border-right: 0; }
a.contact-quick-card:hover { background: #f7f0e4; }
.contact-quick-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 14px;
    background: var(--forest-900);
    color: var(--gold-300);
    font-size: 16px;
}
.contact-quick-card > span:nth-child(2) { min-width: 0; }
.contact-quick-card small {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.contact-quick-card strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--forest-900);
    font-size: 12px;
    line-height: 1.45;
}
.contact-quick-arrow { color: var(--gold-600); font-size: 10px; }


.contact-enquiry-section {
    scroll-margin-top: 105px;
    padding-top: 96px;
    background:
        radial-gradient(circle at 8% 12%, rgba(209, 166, 87, .12), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
}
.contact-enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: 64px;
    align-items: start;
}
.contact-enquiry-intro {
    position: sticky;
    top: 120px;
    padding: 12px 0;
}
.contact-enquiry-intro .section-title {
    max-width: 520px;
    margin-bottom: 20px;
}
.contact-enquiry-points {
    display: grid;
    gap: 0;
    margin: 34px 0 28px;
    border-top: 1px solid var(--line);
}
.contact-enquiry-points > div {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.contact-enquiry-points > div > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--forest-900);
    color: var(--gold-300);
}
.contact-enquiry-points p {
    margin: 1px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}
.contact-enquiry-points strong {
    display: block;
    margin-bottom: 2px;
    color: var(--forest-900);
    font-size: 13px;
}
.contact-form-card {
    position: relative;
    padding: 44px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 26px 75px rgba(7, 28, 23, .13);
}
.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--forest-800), var(--gold-500), #277b8a);
}
.contact-form-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--gold-600);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.contact-form-card h2 { font-size: clamp(41px, 5vw, 55px); }
.contact-form-card > p { max-width: 650px; line-height: 1.65; }
.contact-form-grid { gap: 20px 18px; }
.contact-form-grid .field > label { color: var(--forest-800); }
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea { background: #fffdfa; }
.contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 3px;
    padding-top: 21px;
    border-top: 1px solid var(--line);
}
.contact-form-submit .button {
    min-width: 205px;
    border: 0;
    cursor: pointer;
}
.contact-form-submit p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
    text-align: right;
}
.contact-form-submit p i { margin-right: 5px; color: var(--gold-600); }

.contact-help-section { padding-top: 88px; }
.contact-help-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 80px;
    align-items: start;
}
.contact-help-copy { position: sticky; top: 120px; }
.contact-help-copy .section-title { max-width: 500px; }
.contact-response-note {
    display: flex;
    gap: 13px;
    margin-top: 30px;
    padding: 18px;
    border: 1px solid rgba(185, 136, 62, .28);
    border-radius: 14px;
    background: #fffaf0;
}
.contact-response-note i { margin-top: 5px; color: var(--gold-600); }
.contact-response-note p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-response-note strong { color: var(--forest-900); }
.contact-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.contact-service-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-service-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(209, 166, 87, .10);
    transition: transform .35s ease;
}
.contact-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 136, 62, .38);
    box-shadow: 0 22px 60px rgba(7, 28, 23, .12);
}
.contact-service-card:hover::after { transform: scale(1.2); }
.contact-service-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(18, 61, 48, .12);
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}
.contact-service-card > i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 15px;
    background: var(--forest-900);
    color: var(--gold-300);
}
.contact-service-card h3 {
    margin: 0 0 8px;
    color: var(--forest-900);
    font-family: var(--serif);
    font-size: 31px;
    line-height: 1;
}
.contact-service-card p { margin: 0 0 22px; color: var(--muted); font-size: 12px; }
.contact-service-card > span:last-child {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--forest-800);
    font-size: 12px;
    font-weight: 700;
}

.contact-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.contact-destination-card {
    --contact-property-accent: #b9883e;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.contact-destination-card--araku-valley { --contact-property-accent: #a76532; }
.contact-destination-card--chirala { --contact-property-accent: #277b8a; }
.contact-destination-card--kalaburagi { --contact-property-accent: #9b7132; }
.contact-destination-media {
    position: relative;
    height: 255px;
    overflow: hidden;
    color: var(--white);
}
.contact-destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}
.contact-destination-card:hover .contact-destination-media img { transform: scale(1.045); }
.contact-destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 27, 21, .06), rgba(5, 27, 21, .88));
}
.contact-destination-media > span,
.contact-destination-media > h3 { position: absolute; z-index: 1; left: 25px; }
.contact-destination-media > span {
    bottom: 67px;
    color: var(--gold-300);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.contact-destination-media > h3 {
    bottom: 21px;
    margin: 0;
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
}
.contact-destination-body { padding: 26px; }
.contact-destination-body > p {
    min-height: 48px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
}
.contact-destination-details {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 19px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}
.contact-destination-details li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: var(--muted);
    font-size: 10px;
}
.contact-destination-details i { margin-top: 3px; color: var(--contact-property-accent); }
.contact-destination-details a:hover { color: var(--contact-property-accent); }
.contact-destination-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}
.contact-destination-actions .button { min-height: 44px; padding: 10px 13px; font-size: 10px; }
.contact-destination-links {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    font-size: 10px;
    font-weight: 700;
}
.contact-destination-links a { color: var(--forest-800); }
.contact-destination-links a:hover { color: var(--contact-property-accent); }

.contact-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.contact-process-grid article {
    min-height: 245px;
    padding: 38px 34px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}
.contact-process-grid article:last-child { border-right: 0; }
.contact-process-grid span {
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}
.contact-process-grid h3 {
    margin: 22px 0 11px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}
.contact-process-grid p { margin: 0; color: rgba(255, 255, 255, .65); font-size: 12px; }

.contact-final-card {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 48px 52px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 10%, rgba(209, 166, 87, .20), transparent 30%),
        linear-gradient(135deg, var(--forest-900), var(--forest-950));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.contact-final-card h2 {
    max-width: 720px;
    margin: 8px 0 8px;
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 61px);
    line-height: .96;
}
.contact-final-card p { margin: 0; color: rgba(255, 255, 255, .65); font-size: 12px; }
.contact-final-actions { display: flex; flex: 0 0 auto; gap: 10px; flex-wrap: wrap; }

@media (max-width: 1100px) {
    .contact-enquiry-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-enquiry-intro { position: static; }
    .contact-enquiry-intro .section-title { max-width: 720px; }
    .contact-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-quick-card:nth-child(2) { border-right: 0; }
    .contact-quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .contact-help-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-help-copy { position: static; }
    .contact-destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-final-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
    .contact-page-hero { min-height: 540px; }
    .contact-page-hero .page-hero-content { padding-bottom: 95px; }
    .contact-destination-grid { grid-template-columns: 1fr; }
    .contact-process-grid { grid-template-columns: 1fr; }
    .contact-process-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
    .contact-process-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
    .contact-enquiry-section { padding-top: 74px; }
    .contact-form-card { padding: 30px 22px; border-radius: 19px; }
    .contact-form-submit { align-items: stretch; flex-direction: column; }
    .contact-form-submit .button { width: 100%; }
    .contact-form-submit p { max-width: none; text-align: left; }
    .contact-quick-strip { margin-top: -46px; }
    .contact-quick-grid { grid-template-columns: 1fr; }
    .contact-quick-card,
    .contact-quick-card:nth-child(2) { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
    .contact-quick-card:last-child { border-bottom: 0; }
    .contact-service-grid { grid-template-columns: 1fr; }
    .contact-service-card { min-height: 245px; padding: 26px; }
    .contact-destination-media { height: 225px; }
    .contact-destination-body { padding: 22px; }
    .contact-destination-actions { grid-template-columns: 1fr; }
    .contact-destination-links { align-items: flex-start; flex-direction: column; }
    .contact-final-card { padding: 38px 25px; }
    .contact-final-actions { width: 100%; }
    .contact-final-actions .button { width: 100%; }
}
