/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 1/6 — TOKENS.CSS
   Design tokens: colour palette, typography, spacing, radii, shadows,
   z-index and motion values. All components consume these variables,
   which keeps the whole system consistent and themeable.

   Palette direction
   -----------------
   Base   : Pure white surfaces with a whisper-warm paper tone for
            alternating sections (replacing the previous skin tone).
   Accent : Saffron gold family — the hotel's signature colour.
   Ink    : Warm charcoal text colours (never pure black).
   Lines  : Warm neutral hairlines with a soft gold undertone.

   Index
   -----
   01. Colour tokens
   02. Typography tokens
   03. Spacing scale
   04. Radii, borders
   05. Shadows
   06. Z-index scale
   07. Motion tokens
   08. Layout tokens
   ========================================================================== */

:root {

    /* ------------------------------------------------------------------
       01. COLOUR TOKENS
       ------------------------------------------------------------------ */

    /* Surfaces */
    --white: #FFFFFF;
    /* primary page background          */
    --paper: #FBFBF8;
    /* alternating section background   */
    --ivory: #F7F4EC;
    /* soft warm tint for wells/tints   */
    --sand: #EFEAE0;
    /* deeper warm tint for chips       */

    /* Gold family (brand accent) */
    --gold: #B08D1E;
    /* dark saffron gold — primary accent */
    --gold-deep: #6F5510;
    /* deepest gold for hover text      */
    --gold-dark: #8C6B14;
    /* readable gold on white           */
    --gold-light: #DCC26B;
    /* light gold for dark surfaces     */
    --gold-soft: #F4E9C6;
    /* pastel gold for fills            */
    --gold-mist: #FBF6E9;
    /* near-white gold wash             */

    /* Ink (text) */
    --ink: #211D16;
    /* primary text — warm charcoal     */
    --ink-2: #4E473A;
    /* secondary text                   */
    --ink-3: #6C6454;
    /* tertiary / captions              */
    --muted: #8B8272;
    /* muted text                       */

    /* Lines */
    --line: #EAE5D8;
    /* default hairline                 */
    --line-strong: #DCD5C4;
    /* emphasised hairline              */
    --line-gold: rgba(176, 141, 30, .34);
    /* gold hairline    */
    --line-gold-soft: rgba(176, 141, 30, .16);
    /* soft gold line   */
    --line-gold-strong: rgba(176, 141, 30, .55);
    /* strong gold line */

    /* Dark surfaces */
    --charcoal: #191613;
    /* near-black warm                  */
    --charcoal-2: #221E18;
    /* lifted charcoal                  */
    --charcoal-3: #2C2720;
    /* card surface on dark             */

    /* Semantic */
    --success: #3E7D4E;
    --error: #B3402F;
    --on-gold: #FFFFFF;
    /* text on gold                     */
    --on-dark: #F5F1E8;
    /* text on charcoal                 */
    --on-dark-2: rgba(245, 241, 232, .72);
    --on-dark-3: rgba(245, 241, 232, .50);

    /* Hero overlays */
    --veil-hero: linear-gradient(180deg,
            rgba(18, 15, 10, .62) 0%,
            rgba(18, 15, 10, .28) 40%,
            rgba(18, 15, 10, .30) 60%,
            rgba(18, 15, 10, .72) 100%);
    --veil-page: linear-gradient(180deg,
            rgba(18, 15, 10, .66) 0%,
            rgba(18, 15, 10, .48) 100%);
    --veil-card: linear-gradient(to top,
            rgba(18, 15, 10, .55), transparent 58%);

    /* ------------------------------------------------------------------
       02. TYPOGRAPHY TOKENS
       ------------------------------------------------------------------ */

    --font-serif: "Playfair Display", "Cormorant Garamond", "Georgia", serif;
    --font-sans: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --text-xs: 11px;
    --text-sm: 12.5px;
    --text-base: 15px;
    --text-md: 16.5px;
    --text-lg: 19px;
    --text-xl: 24px;
    --text-2xl: 30px;
    --text-3xl: 38px;
    --text-4xl: 48px;
    --text-5xl: 60px;

    --leading-tight: 1.18;
    --leading-snug: 1.35;
    --leading-normal: 1.65;
    --leading-loose: 1.85;

    --tracking-wide: .06em;
    --tracking-wider: .12em;
    --tracking-widest: .22em;
    --tracking-huge: .34em;

    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* ------------------------------------------------------------------
       03. SPACING SCALE
       ------------------------------------------------------------------ */

    --space-3xs: 2px;
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 48px;
    --space-4xl: 64px;
    --space-5xl: 80px;
    --space-6xl: 96px;
    --space-7xl: 120px;

    /* ------------------------------------------------------------------
       04. RADII & BORDERS
       ------------------------------------------------------------------ */

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-pill: 999px;

    --border-hair: 1px solid var(--line);
    --border-hair-gold: 1px solid var(--line-gold-soft);
    --border-accent: 2px solid var(--gold);

    /* ------------------------------------------------------------------
       05. SHADOWS
       ------------------------------------------------------------------ */

    --shadow-2xs: 0 1px 2px rgba(33, 29, 22, .05);
    --shadow-xs: 0 2px 6px rgba(33, 29, 22, .06);
    --shadow-sm: 0 6px 18px -8px rgba(33, 29, 22, .14);
    --shadow-md: 0 14px 34px -12px rgba(33, 29, 22, .22);
    --shadow-lg: 0 26px 60px -18px rgba(33, 29, 22, .30);
    --shadow-xl: 0 40px 90px -24px rgba(20, 16, 10, .42);
    --shadow-gold: 0 10px 26px -10px rgba(176, 141, 30, .55);
    --shadow-gold-lg: 0 18px 44px -12px rgba(176, 141, 30, .65);
    --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, .6);

    /* ------------------------------------------------------------------
       06. Z-INDEX SCALE
       ------------------------------------------------------------------ */

    --z-base: 1;
    --z-raised: 2;
    --z-sticky: 40;
    --z-header: 50;
    --z-mega: 55;
    --z-topbar: 60;
    --z-overlay: 65;
    --z-mobile-nav: 70;
    --z-lightbox: 90;
    --z-toast: 100;

    /* ------------------------------------------------------------------
       07. MOTION TOKENS
       ------------------------------------------------------------------ */

    --ease-out: cubic-bezier(.22, .61, .36, 1);
    --ease-in-out: cubic-bezier(.65, .05, .36, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);

    --dur-fast: .18s;
    --dur-base: .28s;
    --dur-slow: .45s;
    --dur-slower: .7s;
    --dur-hero: 1.35s;

    /* ------------------------------------------------------------------
       08. LAYOUT TOKENS
       ------------------------------------------------------------------ */

    --container-max: 1240px;
    --container-wide: 1360px;
    --container-narrow: 860px;
    --gutter: 28px;

    --header-height: 86px;
    --topbar-height: 40px;
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 2/6 — BASE.CSS
   Modern reset, document defaults, typography, containers, sections,
   utilities and the button system.

   Index
   -----
   01. Modern reset
   02. Document defaults
   03. Selection & scrollbar
   04. Typography
   05. Links & lists
   06. Media elements
   07. Form normalisation
   08. Container & section primitives
   09. Layout utilities
   10. Text utilities
   11. Section headers (kicker / sec-head)
   12. Button system
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. MODERN RESET
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
    color: var(--ink);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

main {
    display: block;
}

/* --------------------------------------------------------------------------
   02. DOCUMENT DEFAULTS
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-tight);
    color: var(--ink);
    letter-spacing: .01em;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

strong,
b {
    font-weight: var(--weight-semibold);
}

small {
    font-size: var(--text-sm);
}

hr {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: var(--space-2xl) 0;
}

blockquote {
    position: relative;
    padding: var(--space-lg) var(--space-2xl);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-lg);
    color: var(--ink-2);
}

blockquote::before {
    content: "\201C";
    position: absolute;
    top: 0;
    left: 6px;
    font-size: 64px;
    line-height: 1;
    color: var(--gold);
    font-family: var(--font-serif);
}

address {
    font-style: normal;
}

mark {
    background: var(--gold-soft);
    color: var(--ink);
    padding: 0 4px;
    border-radius: 3px;
}

/* --------------------------------------------------------------------------
   03. SELECTION & SCROLLBAR
   -------------------------------------------------------------------------- */

::selection {
    background: var(--gold);
    color: var(--on-gold);
}

::-moz-selection {
    background: var(--gold);
    color: var(--on-gold);
}

/* Subtle themed scrollbar (WebKit) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: #D6CDB6;
    border-radius: var(--radius-pill);
    border: 3px solid var(--paper);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --------------------------------------------------------------------------
   04. TYPOGRAPHY
   -------------------------------------------------------------------------- */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

.lead {
    font-size: var(--text-md);
    font-weight: var(--weight-light);
    color: var(--ink-2);
    line-height: var(--leading-loose);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-huge);
    text-transform: uppercase;
    color: var(--gold-dark);
}

.text-serif {
    font-family: var(--font-serif);
}

.text-italic {
    font-style: italic;
}

.text-gold {
    color: var(--gold-dark);
}

.text-gold-gradient {
    background: linear-gradient(120deg, var(--gold-dark), var(--gold) 55%, var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --------------------------------------------------------------------------
   05. LINKS & LISTS
   -------------------------------------------------------------------------- */

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--dur-fast) var(--ease-out),
        opacity var(--dur-fast) var(--ease-out);
}

a:hover {
    color: var(--gold-dark);
}

ul,
ol {
    list-style: none;
}

.list-styled {
    padding-left: 20px;
}

.list-styled li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}

.list-styled li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* --------------------------------------------------------------------------
   06. MEDIA ELEMENTS
   -------------------------------------------------------------------------- */

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

svg:not(.ico) {
    max-width: 100%;
}

.ico {
    display: block;
    flex-shrink: 0;
    max-width: none;
    overflow: visible;
}

.ico-whatsapp,
.ico-instagram,
.ico-facebook,
.ico-tripadvisor {
    fill: currentColor;
    stroke: none;
}

.ico-whatsapp path,
.ico-instagram path,
.ico-facebook path,
.ico-tripadvisor path {
    fill: currentColor;
    stroke: none;
}

img {
    height: auto;
}

figure {
    margin: 0;
}

figcaption {
    font-size: var(--text-sm);
    color: var(--muted);
    padding-top: var(--space-xs);
}

.ratio {
    position: relative;
    overflow: hidden;
}

.ratio>img,
.ratio>video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ratio-4-3 {
    aspect-ratio: 4 / 3;
}

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

.ratio-3-2 {
    aspect-ratio: 3 / 2;
}

.ratio-1-1 {
    aspect-ratio: 1 / 1;
}

/* --------------------------------------------------------------------------
   07. FORM NORMALISATION
   -------------------------------------------------------------------------- */

button {
    font-family: var(--font-sans);
    font-size: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    color: inherit;
}

input,
select,
textarea {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--ink);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
    opacity: 1;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

fieldset {
    border: 0;
}

legend {
    font-weight: var(--weight-semibold);
}

label {
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   08. CONTAINER & SECTION PRIMITIVES
   -------------------------------------------------------------------------- */

.container {
    width: min(var(--container-max), 100% - (var(--gutter) * 2));
    margin-inline: auto;
}

.container-wide {
    width: min(var(--container-wide), 100% - (var(--gutter) * 2));
    margin-inline: auto;
}

.container-narrow {
    width: min(var(--container-narrow), 100% - (var(--gutter) * 2));
    margin-inline: auto;
}

.section {
    padding-block: var(--space-7xl);
    position: relative;
}

.section-sm {
    padding-block: var(--space-4xl);
}

.section-lg {
    padding-block: 160px;
}

/* Render-on-demand: the browser skips layout and paint of off-screen
   sections entirely, which removes scroll jank on long pages. */
.section,
.usp-strip,
.stats-band,
.cta-band,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

/* Above-the-fold regions must render immediately */
.hero,
.booking-wrap,
.page-hero {
    content-visibility: visible;
    contain: none;
}

.section-white {
    background: var(--white);
}

/* Legacy "cream" section remapped to near-white paper */
.section-cream,
.section-paper {
    background: var(--paper);
}

.section-ivory {
    background: var(--ivory);
}

.section-dark {
    background: var(--charcoal);
    color: var(--on-dark);
}

.section-dark .sec-title,
.section-dark h2,
.section-dark h3 {
    color: var(--on-dark);
}

.section-dark .sec-sub {
    color: var(--on-dark-2);
}

/* Gold hairline separators between alternating sections */
.section-white+.section-cream,
.section-white+.section-paper {
    border-top: var(--border-hair-gold);
}

/* --------------------------------------------------------------------------
   09. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */

.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

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

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

.grid-center {
    align-items: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-xs {
    gap: var(--space-xs);
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.gap-2xl {
    gap: var(--space-2xl);
}

/* Spacing utilities */
.mt-xs {
    margin-top: var(--space-xs);
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mt-2xl {
    margin-top: var(--space-2xl);
}

.mt-3xl {
    margin-top: var(--space-3xl);
}

.mt-4xl {
    margin-top: var(--space-4xl);
}

.mt-5xl {
    margin-top: var(--space-5xl);
}

.mb-xs {
    margin-bottom: var(--space-xs);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mb-2xl {
    margin-bottom: var(--space-2xl);
}

.mb-3xl {
    margin-bottom: var(--space-3xl);
}

.mb-4xl {
    margin-bottom: var(--space-4xl);
}

.mb-5xl {
    margin-bottom: var(--space-5xl);
}

.p-xs {
    padding: var(--space-xs);
}

.p-sm {
    padding: var(--space-sm);
}

.p-md {
    padding: var(--space-md);
}

.p-lg {
    padding: var(--space-lg);
}

.p-xl {
    padding: var(--space-xl);
}

.p-2xl {
    padding: var(--space-2xl);
}

.p-3xl {
    padding: var(--space-3xl);
}

/* --------------------------------------------------------------------------
   10. TEXT UTILITIES
   -------------------------------------------------------------------------- */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-md {
    font-size: var(--text-md);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.fw-light {
    font-weight: var(--weight-light);
}

.fw-regular {
    font-weight: var(--weight-regular);
}

.fw-medium {
    font-weight: var(--weight-medium);
}

.fw-semibold {
    font-weight: var(--weight-semibold);
}

.fw-bold {
    font-weight: var(--weight-bold);
}

.text-muted {
    color: var(--muted);
}

.text-ink-2 {
    color: var(--ink-2);
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.tracking-wide {
    letter-spacing: var(--tracking-wide);
}

.tracking-wider {
    letter-spacing: var(--tracking-wider);
}

.tracking-widest {
    letter-spacing: var(--tracking-widest);
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.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;
}

/* --------------------------------------------------------------------------
   11. SECTION HEADERS (kicker / sec-head)
   -------------------------------------------------------------------------- */

.kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-huge);
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
}

.kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.kicker.center::after {
    content: "";
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.kicker.on-dark {
    color: var(--gold-light);
}

.kicker.on-dark::before {
    background: linear-gradient(90deg, transparent, var(--gold-light));
}

.kicker.on-dark.center::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.sec-head {
    max-width: 720px;
    margin-bottom: var(--space-4xl);
}

.sec-head.center {
    margin-inline: auto;
    text-align: center;
}

.sec-head.center .kicker {
    justify-content: center;
}

.sec-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-semibold);
    color: var(--ink);
    margin-bottom: var(--space-md);
    line-height: var(--leading-tight);
}

.sec-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.sec-sub {
    font-size: var(--text-md);
    font-weight: var(--weight-light);
    color: var(--ink-2);
    line-height: var(--leading-loose);
}

/* Ornamental diamond divider */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--gold);
    font-size: 10px;
}

.ornament::before,
.ornament::after {
    content: "";
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold));
}

.ornament::after {
    background: linear-gradient(90deg, var(--line-gold), transparent);
}

/* --------------------------------------------------------------------------
   12. BUTTON SYSTEM
   -------------------------------------------------------------------------- */

/* en() ile eklenen dil sarmalayicisi butonlarda flex ogesi olup 10px'lik
   gap kadar fazladan bosluk aciyordu ("BOOKING.COM ’DA INCELE"). Kutu
   uretmesin; yalnizca buyuk harf kurali icin dil bilgisini tasisin. */
.btn > span[lang] {
    display: contents;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition:
        background var(--dur-base) var(--ease-out),
        color var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out);
}

/* Primary — gold */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--on-gold);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-deep) 100%);
    color: var(--on-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: var(--shadow-gold);
}

/* Secondary — white outline (for dark surfaces) */
.btn-outline {
    border-color: rgba(255, 255, 255, .85);
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.btn-outline:hover {
    background: #fff;
    color: var(--ink);
    transform: translateY(-2px);
}

/* Secondary — gold outline */
.btn-outline-gold {
    border-color: var(--line-gold-strong);
    color: var(--gold-dark);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--on-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Secondary — ink outline */
.btn-outline-ink {
    border-color: var(--ink-3);
    color: var(--ink-2);
    background: transparent;
}

.btn-outline-ink:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--ivory);
}

/* Tertiary — text button */
.btn-text {
    padding: 8px 4px;
    letter-spacing: var(--tracking-wide);
    color: var(--gold-dark);
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    color: var(--gold-deep);
    border-bottom-color: var(--gold);
}

/* Sizes */
.btn-sm {
    padding: 12px 24px;
    font-size: 10.5px;
    letter-spacing: var(--tracking-wide);
}

.btn-lg {
    padding: 19px 44px;
    font-size: 13px;
    letter-spacing: var(--tracking-wider);
}

.btn-block {
    width: 100%;
}

/* Arrow nudge on hover */
.btn .arr {
    display: inline-block;
    transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover .arr {
    transform: translateX(4px);
}

/* Disabled state */
.btn[disabled],
.btn.is-disabled {
    opacity: .45;
    pointer-events: none;
    filter: grayscale(.4);
}

/* Focus ring for buttons */
.btn:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 3/6 — LAYOUT.CSS
   Global chrome: topbar, sticky header with mega menu, mobile navigation,
   hero slider, booking widget, page heroes, stats, CTA band and footer.

   Index
   -----
   01. Topbar
   02. Header
   03. Brand
   04. Main navigation
   05. Mega menu — rooms
   06. Mega menu — explore
   07. Header CTA
   08. Mobile navigation
   09. Hero slider
   10. Hero content
   11. Booking widget
   12. Page hero (subpages)
   13. Breadcrumbs
   14. Stats band
   15. CTA band
   16. Footer
   17. Footer bottom
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOPBAR
   -------------------------------------------------------------------------- */

.topbar {
    display: none;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 22px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.topbar-left a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--on-dark-2);
    transition: color var(--dur-fast) var(--ease-out);
}

.topbar-left a:hover {
    color: var(--gold-light);
}

.topbar-left .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.topbar-right .sep {
    width: 1px;
    height: 14px;
    background: rgba(245, 241, 232, .22);
}

.social-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(245, 241, 232, .32);
    color: var(--on-dark-2);
    transition: all var(--dur-base) var(--ease-out);
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--on-gold);
    transform: translateY(-2px);
}

.social-row svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
}

.lang-switch a {
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 4px 10px;
    border: 1px solid rgba(232, 206, 122, .45);
    border-radius: var(--radius-pill);
    transition: all var(--dur-base) var(--ease-out);
}

.lang-switch a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--on-gold);
}

/* --------------------------------------------------------------------------
   02. HEADER
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line-gold-soft);
    transition:
        box-shadow var(--dur-base) var(--ease-out),
        background var(--dur-base) var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 12px 32px -18px rgba(33, 29, 22, .28);
    background: rgba(255, 255, 255, .98);
}

.site-header,
.header-inner,
.main-nav,
.main-nav > li {
    overflow: visible;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    height: var(--header-height);
}

/* --------------------------------------------------------------------------
   03. BRAND
   -------------------------------------------------------------------------- */

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition:
        transform var(--dur-base) var(--ease-spring),
        opacity var(--dur-fast) var(--ease-out);
}

.brand:hover .brand-logo {
    transform: translateY(-1px);
    opacity: .88;
}

.brand-logo-sm {
    height: 48px;
    max-width: 170px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    display: block;
    height: 78px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 14px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    box-shadow: 0 5px 14px rgba(33, 29, 22, .16);
    transition: transform var(--dur-base) var(--ease-spring);
}

.brand-monogram {
    font-family: var(--font-serif);
    font-size: 29px;
    font-weight: var(--weight-medium);
    line-height: 1;
    color: var(--gold-light);
    transform: translateY(-1px);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: var(--weight-bold);
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: .01em;
}

.brand-name small {
    display: block;
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 3px;
}

/* --------------------------------------------------------------------------
   04. MAIN NAVIGATION
   -------------------------------------------------------------------------- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav>li {
    position: relative;
}

/* Invisible hover bridge: covers the tiny gap between the nav link and
   the mega panel so the menu never closes while the cursor travels
   downwards (fixes the "menu disappears on hover" bug). */
.main-nav>li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    z-index: var(--z-mega);
    pointer-events: auto;
}

.main-nav>li>a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: var(--weight-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    border-radius: var(--radius-pill);
    transition:
        color var(--dur-base) var(--ease-out),
        background var(--dur-base) var(--ease-out);
}

/* Animated gold underline */
.main-nav>li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: translateX(-50%);
    transition: width var(--dur-base) var(--ease-in-out);
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
    color: var(--gold-dark);
}

.main-nav>li>a:hover::after,
.main-nav>li.active>a::after {
    width: 34%;
}

.main-nav>li>a .caret {
    width: 8px;
    height: 8px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--dur-base) var(--ease-out);
}

.main-nav>li:hover>a .caret,
.main-nav>li:focus-within>a .caret {
    transform: rotate(-135deg) translateY(-2px);
}

/* --------------------------------------------------------------------------
   05. MEGA MENU — ROOMS
   -------------------------------------------------------------------------- */

.mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: min(940px, 92vw);
    background: var(--white);
    border: var(--border-hair-gold);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    /* pointer-events kullanilmiyor: visibility zaten kapaliyken tiklamayi
       engelliyor. Anlik "none" ise solma suresince paneli erisilmez yapip
       imlec komsu menu ogesinin uzerinden gecerse geri donusu imkansiz
       kiliyordu. Boylece 0.3sn'lik bir tolerans olusuyor. */
    transition:
        opacity var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-out),
        visibility 0s linear var(--dur-base);
    z-index: var(--z-mega);
}

/* Connector arrow */
.mega::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-left: 1px solid var(--line-gold-soft);
    border-top: 1px solid var(--line-gold-soft);
    transform: translateX(-50%) rotate(45deg);
}

.mega.mega-rooms {
    width: min(1080px, 90vw);
}

/* Hover koprusu: tetikleyici ile panel arasindaki 12px bosluk imlec gecerken
   li:hover'i dusuruyor ve mega menu aninda kapaniyordu. Gorunmez, tiklanamaz
   bir serit bu boslugu panelin tam genisliginde kapatir. */
.mega::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px;
}

/* Keep the "Odalar" panel (left-of-centre trigger) fully on screen */
.main-nav>li:nth-child(2) .mega {
    left: 50%;
    transform: translateX(-46%);
}

.main-nav>li:nth-child(2):hover .mega,
.main-nav>li:nth-child(2):focus-within .mega {
    transform: translate(-46%, 4px);
}

.main-nav li:hover .mega,
.main-nav li:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 4px);
    transition-delay: 0s;
}

.mega-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-hair-gold);
}

.mega-head h4 {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-dark);
}

.mega-head .link-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--ink-2);
}

.mega-head .link-all:hover {
    color: var(--gold-dark);
}

.mega-rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.mega-room-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border-hair-gold);
    background: var(--white);
    min-height: 0;
    transition:
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out);
}

.mega-room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.mega-room-card .thumb {
    position: relative;
    display: block;
    flex: 0 0 120px;
    height: 120px;
    overflow: hidden;
    background: var(--sand);
}

.mega-room-card .thumb img {
    width: 100%;
    height: 120px;
    max-height: 120px;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.mega-room-card:hover .thumb img {
    transform: scale(1.09);
}

.mega-room-card .thumb .cap {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: rgba(25, 22, 19, .82);
    color: var(--gold-light);
    font-size: 9.5px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.mega-room-card .meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 0 auto;
    padding: 12px 12px 13px;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.mega-room-card .meta .name {
    display: block;
    font-family: var(--font-serif);
    font-size: 14.5px;
    font-weight: var(--weight-semibold);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: .01em;
}

.mega-room-card .meta .info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--ink-3);
    letter-spacing: .04em;
}

.mega-room-card .meta .info .ico {
    color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   06. MEGA MENU — EXPLORE
   -------------------------------------------------------------------------- */

/* 6 kisa baglanti icin 940px cok genisti: panelin sag ucunda buyuk bir bos
   beyaz alan kaliyordu. Genislik icerige gore daraltildi. */
.mega.mega-explore {
    width: max-content;
    max-width: 92vw;
}

.mega-explore {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-xl);
}

.mega-explore .feat {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 216px;
    box-shadow: var(--shadow-sm);
}

.mega-explore .feat img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.mega-explore .feat:hover img {
    transform: scale(1.07);
}

.mega-explore .feat .veil {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(20, 17, 13, .85), rgba(20, 17, 13, .05) 70%);
}

.mega-explore .feat .veil span {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    color: var(--on-dark);
}

.mega-explore .links {
    display: grid;
    /* sabit 1fr sutunlar en uzun etikete gore degil panele gore genisliyordu;
       max-content ile sutunlar metne oturur, panel de icerigi kadar kalir.
       5 dilde etiket uzunluklari farkli oldugu icin bu sekilde kendi kendine
       ayarlaniyor. */
    /* 4 baglanti icin iki sutun panelin sag yarisini bos birakiyordu; tek
       sutun hem okuma sirasini net tutuyor hem paneli icerige oturtuyor. */
    grid-template-columns: minmax(150px, max-content);
    gap: 4px 24px;
    /* gorsel 216px; baglantilar 3 satir. Ustten hizalayinca alt tarafta bosluk
       kaliyordu, ortalayinca iki sutun dengeli duruyor. */
    align-content: center;
}

.mega-explore .links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 11px 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: var(--weight-medium);
    color: var(--ink-2);
    transition:
        background var(--dur-fast) var(--ease-out),
        color var(--dur-fast) var(--ease-out),
        padding-left var(--dur-fast) var(--ease-out);
}

.mega-explore .links a:hover {
    background: var(--gold-mist);
    color: var(--gold-dark);
    padding-left: 16px;
}

.mega-explore .links a .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   07. HEADER CTA
   -------------------------------------------------------------------------- */

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-cta .btn {
    padding: 13px 26px;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid var(--line-gold-strong);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-3);
    background: var(--white);
}

.lang-chip a {
    color: inherit;
    padding: 4px 0;
}

.lang-chip .lang-sep {
    width: 1px;
    height: 12px;
    background: var(--line-gold-strong);
}

.lang-chip a.on {
    color: var(--gold-dark);
}

.lang-chip a:hover {
    color: var(--gold-dark);
}

/* 5 dilli secici: kompakt buton + acilir liste */
.lang-pick {
    position: relative;
}

.lang-pick .lang-chip {
    gap: 6px;
    padding: 0 12px;
    font-family: inherit;
    cursor: pointer;
}

.lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .7;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 60;
    min-width: 170px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid var(--line-gold-strong);
    border-radius: var(--radius-md, 12px);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.lang-menu::after {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.lang-pick:hover .lang-menu,
.lang-pick:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink-2, var(--ink-3));
}

.lang-menu a:hover {
    background: var(--sand, rgba(176, 141, 30, .08));
    color: var(--gold-dark);
}

.lang-menu a.on {
    color: var(--gold-dark);
    font-weight: var(--weight-semibold);
}

.lang-menu .lang-code {
    min-width: 22px;
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: .1em;
    opacity: .7;
}

/* --------------------------------------------------------------------------
   08. MOBILE NAVIGATION
   -------------------------------------------------------------------------- */

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--line-gold-strong);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all var(--dur-base) var(--ease-out);
}

.nav-toggle:hover {
    background: var(--gold-mist);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-dark);
    transition: all var(--dur-base) var(--ease-in-out);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.2);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-mobile-nav);
    background: var(--white);
    overflow-y: auto;
    padding: 20px 6% 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-out);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-hair-gold);
}

.mobile-nav ul.main {
    border-top: var(--border-hair);
}

.mobile-nav ul.main>li {
    border-bottom: var(--border-hair);
}

.mobile-nav ul.main>li>a,
.mobile-nav ul.main>li>button.acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 4px;
    font-size: 14px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--ink);
    text-align: left;
}

.mobile-nav ul.main>li>a:hover {
    color: var(--gold-dark);
}

.mobile-nav .acc-btn .caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    transform: rotate(45deg);
    transition: transform var(--dur-base) var(--ease-out);
}

.mobile-nav .acc-btn.open .caret {
    transform: rotate(-135deg);
}

.mobile-nav .acc-panel {
    display: none;
    padding: 4px 4px 18px;
}

.mobile-nav .acc-panel.open {
    display: block;
    animation: accordionDown var(--dur-base) var(--ease-out);
}

.mobile-nav .acc-panel a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 9px 6px;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: var(--weight-regular);
}

.mobile-nav .acc-panel a:hover {
    color: var(--gold-dark);
    padding-left: 12px;
}

.mobile-nav .acc-panel img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: var(--radius-xs);
    border: 1px solid var(--line);
}

.mobile-nav .lang-m {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.mobile-nav .lang-m a {
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-gold-strong);
    font-size: 12px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--gold-dark);
}

.mobile-nav .lang-m a.cur {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--on-gold);
    border-color: var(--gold);
}

.mobile-nav .btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   09. HERO SLIDER
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    height: min(94vh, 880px);
    min-height: 640px;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity var(--dur-hero) var(--ease-smooth);
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

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

/* Slow ken-burns drift on the active slide */
.hero-slide.active img {
    animation: kenburns 12s var(--ease-smooth) forwards;
}

.hero-slide .veil {
    position: absolute;
    inset: 0;
    background: var(--veil-hero);
}

/* --------------------------------------------------------------------------
   10. HERO CONTENT
   -------------------------------------------------------------------------- */

.hero-content {
    position: absolute;
    inset: 0;
    z-index: var(--z-raised);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5% 96px;
    color: var(--on-dark);
}

.hero-kicker {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-huge);
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.hero-title {
    font-size: clamp(40px, 6.4vw, 80px);
    font-weight: var(--weight-semibold);
    line-height: 1.06;
    color: #fff;
    text-shadow: 0 6px 36px rgba(0, 0, 0, .5);
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-flourish {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    color: var(--gold-light);
    font-size: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.hero-flourish::before,
.hero-flourish::after {
    content: "";
    width: 64px;
    height: 1px;
}

.hero-flourish::before {
    background: linear-gradient(90deg, transparent, var(--gold-light));
}

.hero-flourish::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-sub {
    max-width: 660px;
    font-size: var(--text-md);
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-dots {
    position: absolute;
    bottom: 186px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-raised);
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, .75);
    background: transparent;
    padding: 0;
    transition: all var(--dur-base) var(--ease-out);
}

.hero-dots button:hover {
    background: rgba(255, 255, 255, .5);
}

.hero-dots button.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 28px;
}

.hero-line {
    position: absolute;
    bottom: 134px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-raised);
    width: min(740px, 88%);
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-md);
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

/* --------------------------------------------------------------------------
   11. BOOKING WIDGET
   -------------------------------------------------------------------------- */

.booking-wrap {
    position: relative;
    z-index: 12;
    margin-top: -88px;
    margin-bottom: 0;
}

.booking-card {
    position: relative;
    background: var(--white);
    border: var(--border-hair-gold);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.booking-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: 4px;
}

.booking-title .ic {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-gold);
    box-shadow: var(--shadow-gold);
}

.booking-title .ic svg {
    width: 20px;
    height: 20px;
}

.booking-title h3 {
    font-size: 22px;
    color: var(--ink);
}

.booking-sub {
    font-size: var(--text-sm);
    color: var(--muted);
    margin-bottom: var(--space-md);
}

.booking-fields {
    display: grid;
    grid-template-columns: minmax(10rem, 1.3fr) minmax(10rem, 1.3fr) minmax(5.8rem, .75fr) minmax(7rem, .9fr) minmax(11rem, auto);
    gap: var(--space-sm);
    align-items: end;
}

.field {
    min-width: 0;
}

.field.search .btn {
    width: 100%;
    white-space: nowrap;
    padding: 13px 14px;
    font-size: 12px;
}

.field input[type="date"] {
    min-height: 48px;
    font-size: 13px;
    color-scheme: light;
}

.field label {
    display: block;
    font-size: 10.5px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 7px;
}

.field input,
.field select {
    width: 100%;
    padding: 13px 12px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition:
        border-color var(--dur-fast) var(--ease-out),
        background var(--dur-fast) var(--ease-out),
        box-shadow var(--dur-fast) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%),
        linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%);
    background-position:
        calc(100% - 16px) 55%,
        calc(100% - 11px) 55%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 30px;
    cursor: pointer;
}

.field input:hover,
.field select:hover {
    border-color: var(--gold);
}

.field input:focus,
.field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-mist);
}

.booking-note {
    grid-column: 1 / -1;
    font-size: var(--text-sm);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-note svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold-dark);
    fill: none;
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   12. PAGE HERO (SUBPAGES)
   -------------------------------------------------------------------------- */

.page-hero {
    position: relative;
    height: 46vh;
    min-height: 340px;
    max-height: 520px;
    overflow: hidden;
    background: var(--charcoal);
}

.page-hero>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .veil {
    position: absolute;
    inset: 0;
    background: var(--veil-page);
}

.page-hero .inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--on-dark);
    padding-inline: 5%;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    color: #fff;
    text-shadow: 0 4px 26px rgba(0, 0, 0, .5);
}

.page-hero p {
    max-width: 660px;
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, .9);
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.page-hero .flourish {
    margin-top: var(--space-lg);
}

/* --------------------------------------------------------------------------
   13. BREADCRUMBS
   -------------------------------------------------------------------------- */

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--gold-light);
}

.breadcrumbs a {
    color: var(--gold-light);
    transition: color var(--dur-fast) var(--ease-out);
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs .sep {
    opacity: .55;
}

/* --------------------------------------------------------------------------
   14. STATS BAND
   -------------------------------------------------------------------------- */

.stats-band {
    position: relative;
    background:
        linear-gradient(rgba(20, 17, 13, .9), rgba(20, 17, 13, .9)),
        url('/images/slider/slider-facade-night.webp') center / cover no-repeat;
    color: var(--on-dark);
    padding-block: 76px;
    border-block: 1px solid rgba(176, 141, 30, .3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    text-align: center;
}

.stat {
    position: relative;
    padding: var(--space-md);
}

.stat+.stat::before {
    content: "";
    position: absolute;
    left: calc(var(--space-2xl) / -2);
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(176, 141, 30, .5), transparent);
}

.stat b {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: var(--weight-semibold);
    color: var(--gold-light);
    line-height: 1.08;
    margin-bottom: 6px;
}

.stat span {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--on-dark-2);
}

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */

.cta-band {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-block: 120px;
    color: var(--on-dark);
    background:
        linear-gradient(rgba(20, 17, 13, .84), rgba(20, 17, 13, .84)),
        url('/images/slider/slider-balcony-balloons.webp') center / cover no-repeat;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(176, 141, 30, .35);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.cta-band .inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: 5%;
}

.cta-band h2 {
    font-size: clamp(30px, 4.4vw, 50px);
    color: #fff;
    margin-bottom: var(--space-md);
}

.cta-band p {
    color: var(--on-dark-2);
    margin-bottom: var(--space-2xl);
    font-weight: var(--weight-light);
    font-size: var(--text-md);
}

.cta-band .ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
    position: relative;
    background:
        linear-gradient(rgba(20, 17, 13, .96), rgba(20, 17, 13, .97)),
        url('/images/slider/slider-facade-night.webp') center / cover no-repeat;
    color: var(--on-dark-2);
    padding-top: var(--space-6xl);
    border-top: 3px solid var(--gold);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-4xl);
    border-bottom: 1px solid rgba(176, 141, 30, .22);
}

.footer-brand .brand-name {
    color: var(--on-dark);
}

.footer-brand p {
    margin-top: var(--space-lg);
    font-size: 14px;
    line-height: var(--leading-loose);
    color: var(--on-dark-2);
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(176, 141, 30, .55);
    color: var(--gold-light);
    transition: all var(--dur-base) var(--ease-spring);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--on-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-xl);
}

.footer-col h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul a {
    font-size: 14.5px;
    color: var(--on-dark-2);
    transition:
        color var(--dur-fast) var(--ease-out),
        padding-left var(--dur-fast) var(--ease-out);
}

.footer-col ul a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 14px;
    color: var(--on-dark-2);
    align-items: flex-start;
    line-height: var(--leading-snug);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-light);
    fill: none;
    flex: 0 0 auto;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--on-dark-2);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   17. FOOTER BOTTOM
   -------------------------------------------------------------------------- */

.footer-bottom {
    padding-block: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--on-dark-3);
}

.footer-bottom .note {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom .note svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold-light);
    fill: none;
    flex: 0 0 auto;
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 4a/6 — COMPONENTS-A.CSS
   USP strip, room cards, experience split, awards, gallery and lightbox.

   Index
   -----
   01. USP strip
   02. Room cards & grids
   03. Experience split
   04. Awards & ratings
   05. Gallery grid & filters
   06. Lightbox
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. USP STRIP
   -------------------------------------------------------------------------- */

.usp-strip {
    background: var(--white);
    border-bottom: var(--border-hair-gold);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding-block: var(--space-4xl);
}

.usp-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.usp-ic {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1.5px solid var(--line-gold-strong);
    background: var(--gold-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    box-shadow: var(--shadow-2xs);
    transition:
        background var(--dur-base) var(--ease-out),
        color var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out);
}

.usp-item:hover .usp-ic {
    background: var(--gold);
    color: var(--on-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.usp-ic svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usp-item h4 {
    font-size: 17.5px;
    margin-bottom: 6px;
    color: var(--ink);
}

.usp-item p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   02. ROOM CARDS & GRIDS
   -------------------------------------------------------------------------- */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.rooms-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.room-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out);
}

.room-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line-gold);
}

.room-card .thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--ivory);
}

.room-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.room-card:hover .thumb img {
    transform: scale(1.08);
}

.room-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 15, 10, .4), transparent 45%);
    opacity: .85;
    transition: opacity var(--dur-base) var(--ease-out);
}

.room-card:hover .thumb::after {
    opacity: 1;
}

.room-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--on-gold);
    font-size: 10px;
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-gold);
}

.room-card .badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation: pulseSoft 2.2s var(--ease-in-out) infinite;
}

.room-card .body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--space-xl);
}

.room-card .cap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 9px;
}

.room-card .cap::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.room-card h3 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
    color: var(--ink);
    transition: color var(--dur-fast) var(--ease-out);
}

.room-card:hover h3 {
    color: var(--gold-dark);
}

.room-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-lg);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-card .foot {
    display: flex;
    gap: var(--space-sm);
}

.room-card .foot .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 10.5px;
    letter-spacing: var(--tracking-wide);
}

.rooms-grid.cols-2 .room-card .thumb {
    height: 320px;
}

.rooms-grid.cols-2 .room-card .body {
    padding: var(--space-2xl);
}

.rooms-grid.cols-2 .room-card h3 {
    font-size: 26px;
}

/* --------------------------------------------------------------------------
   03. EXPERIENCE SPLIT
   -------------------------------------------------------------------------- */

.exp-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-6xl);
    align-items: center;
}

.exp-media {
    position: relative;
    padding: 12px 28px 40px 36px;
}

.exp-media .main-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    outline: 1px solid var(--line-gold-soft);
}

.exp-media .main-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.exp-media:hover .main-img img {
    transform: scale(1.04);
}

.exp-media .float-img {
    position: absolute;
    bottom: -36px;
    right: 0;
    width: 46%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--paper);
    box-shadow: var(--shadow-lg);
}

.exp-media .float-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.exp-media .stamp {
    position: absolute;
    top: 26px;
    left: 0;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--on-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold-lg);
    border: 4px solid var(--paper);
    font-family: var(--font-serif);
    animation: floatY 5s var(--ease-in-out) infinite;
}

.exp-media .stamp b {
    font-size: 26px;
    line-height: 1;
}

.exp-media .stamp span {
    font-size: 8.5px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-top: 4px;
}

.exp-copy p {
    color: var(--ink-2);
    font-size: 15.5px;
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-lg);
}

.exp-copy .btn {
    margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   04. AWARDS & RATINGS
   -------------------------------------------------------------------------- */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.award-card {
    position: relative;
    background: var(--charcoal-2);
    border: 1px solid rgba(176, 141, 30, .32);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    overflow: hidden;
    transition:
        transform var(--dur-base) var(--ease-spring),
        border-color var(--dur-base) var(--ease-out),
        background var(--dur-base) var(--ease-out);
}

.award-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out);
}

.award-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    background: var(--charcoal-3);
}

.award-card:hover::before {
    opacity: 1;
}

.award-stars {
    color: var(--gold-light);
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 6px;
}

.award-card .score {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: var(--weight-semibold);
    color: var(--gold-light);
    line-height: 1.15;
}

.award-card .score small {
    font-size: 20px;
    color: var(--on-dark-3);
}

.award-card h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin: var(--space-sm) 0 6px;
    color: var(--on-dark);
}

.award-card p {
    font-size: var(--text-sm);
    color: var(--on-dark-2);
    line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   05. GALLERY GRID & FILTERS
   -------------------------------------------------------------------------- */

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.filter-btn {
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--line-gold-strong);
    background: var(--white);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    transition: all var(--dur-base) var(--ease-out);
}

.filter-btn:hover {
    background: var(--gold-mist);
    border-color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--on-gold);
    box-shadow: var(--shadow-gold);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.gal-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: var(--shadow-2xs);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.gal-item:hover img {
    transform: scale(1.09);
}

.gal-item .veil {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(18, 15, 10, .62), transparent 55%);
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out);
}

.gal-item:hover .veil {
    opacity: 1;
}

.gal-item .veil span {
    color: #fff;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: .3px;
    transform: translateY(8px);
    transition: transform var(--dur-base) var(--ease-out);
}

.gal-item:hover .veil span {
    transform: translateY(0);
}

.gal-item::after {
    content: "\271A";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--gold-dark);
    font-size: 13px;
    opacity: 0;
    transform: scale(.6);
    transition: all var(--dur-base) var(--ease-spring);
}

.gal-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* --------------------------------------------------------------------------
   06. LIGHTBOX
   -------------------------------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-lightbox);
    background: rgba(15, 12, 8, .96);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5vh 5%;
}

.lightbox.open {
    display: flex;
    animation: lightboxIn var(--dur-base) var(--ease-out);
}

.lightbox img {
    max-width: 92vw;
    max-height: 78vh;
    border-radius: var(--radius-md);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .65);
    border: 1px solid rgba(176, 141, 30, .45);
    animation: lightboxImg var(--dur-base) var(--ease-out);
}

.lightbox .lb-cap {
    color: var(--on-dark-2);
    margin-top: var(--space-md);
    font-size: 13.5px;
    letter-spacing: .4px;
    text-align: center;
    max-width: 80vw;
}

.lightbox .lb-close,
.lightbox .lb-nav {
    position: absolute;
    background: rgba(245, 241, 232, .08);
    color: var(--gold-light);
    border: 1px solid rgba(176, 141, 30, .55);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur-base) var(--ease-out);
    z-index: 2;
}

.lightbox .lb-close:hover,
.lightbox .lb-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--on-gold);
    transform: scale(1.08);
}

.lightbox .lb-close {
    top: 26px;
    right: 26px;
}

.lightbox .lb-prev {
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .lb-prev:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox .lb-next {
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .lb-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox .lb-count {
    position: absolute;
    top: 38px;
    left: 38px;
    color: var(--on-dark-3);
    font-size: 13px;
    letter-spacing: var(--tracking-wide);
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 4b/6 — COMPONENTS-B.CSS
   Services, breakfast band, transfer note, things-to-do, facts,
   locations, room detail, amenities, contact and map embed.

   Index
   -----
   07. Services
   08. Breakfast feature band
   09. Transfer note
   10. Things-to-do
   11. Facts band
   12. Locations list
   13. Room detail — gallery
   14. Room detail — sidebar
   15. Room detail — navigation
   16. Amenities
   17. Contact
   18. Map embed
   19. Chips
   20. Content split helper
   ========================================================================== */

/* --------------------------------------------------------------------------
   07. SERVICES
   -------------------------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition:
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out);
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: width var(--dur-base) var(--ease-in-out);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-gold);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    width: 100%;
}

.service-card .ic {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--gold-mist);
    border: 1.5px solid var(--line-gold-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: var(--space-lg);
    transition: all var(--dur-base) var(--ease-out);
}

.service-card:hover .ic {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--on-gold);
    box-shadow: var(--shadow-gold);
    transform: rotate(-6deg);
}

.service-card .ic svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   08. BREAKFAST FEATURE BAND
   -------------------------------------------------------------------------- */

.breakfast-hero-band {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line-gold-soft);
}

.breakfast-hero-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.breakfast-hero-band:hover img {
    transform: scale(1.04);
}

.breakfast-hero-band .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 15, 10, .88), rgba(18, 15, 10, .1) 60%);
}

.breakfast-hero-band .copy {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl);
    color: var(--on-dark);
    max-width: 660px;
}

.breakfast-hero-band .copy .kicker {
    color: var(--gold-light);
}

.breakfast-hero-band .copy .kicker::before {
    background: linear-gradient(90deg, transparent, var(--gold-light));
}

.breakfast-hero-band h3 {
    font-size: clamp(26px, 3.6vw, 42px);
    color: #fff;
    margin-bottom: var(--space-sm);
}

.breakfast-hero-band p {
    color: var(--on-dark-2);
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
}

/* --------------------------------------------------------------------------
   09. TRANSFER NOTE
   -------------------------------------------------------------------------- */

.transfer-note {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--gold-mist);
    border: 1px dashed var(--line-gold-strong);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin-top: var(--space-3xl);
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: var(--leading-snug);
}

.transfer-note svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-dark);
    fill: none;
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   10. THINGS-TO-DO
   -------------------------------------------------------------------------- */

.things-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.thing-card {
    position: relative;
    display: flex;
    gap: var(--space-lg);
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out);
}

.thing-card:hover {
    border-color: var(--line-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.thing-card .num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 42px;
    font-weight: var(--weight-semibold);
    color: var(--gold);
    line-height: 1;
    flex: 0 0 auto;
    min-width: 46px;
}

.thing-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.thing-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   10b. TOURS & ACTIVITIES
   Editorial splits for hotel-organised tours; mosaic for regional
   experiences. Radius and elevation follow hierarchy: feature media
   uses --radius-xl, tiles use --radius-sm, the org chip is --radius-xs.
   -------------------------------------------------------------------------- */

.act-feature {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.act-feature + .act-feature {
    margin-top: var(--space-6xl);
    padding-top: var(--space-6xl);
    border-top: var(--border-hair);
}

.act-feature.is-reverse {
    grid-template-columns: 1fr 1.08fr;
}

.act-feature.is-reverse .act-media {
    order: 2;
}

.act-media {
    margin: 0;
}

.act-media img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 6px solid var(--white);
    outline: 1px solid var(--line-gold-soft);
    box-shadow: var(--shadow-lg);
}

#horse .act-media img {
    object-position: center 70%;
}

.act-media figcaption,
.act-tile-credit {
    margin-top: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--muted);
    letter-spacing: 0.02em;
}

.act-media figcaption a,
.act-tile-credit a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.act-media figcaption a:hover,
.act-tile-credit a:hover {
    color: var(--gold-dark);
}

.act-copy h3 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin-bottom: var(--space-lg);
    color: var(--ink);
}

.act-copy p {
    color: var(--ink-2);
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-xl);
    max-width: 38em;
}

.act-mark {
    display: inline-block;
    margin-bottom: var(--space-md);
    padding: var(--space-2xs) var(--space-sm);
    background: var(--gold-mist);
    color: var(--gold-deep);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-xs);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
}

.act-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-xl) var(--space-2xl);
}

.act-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.act-tile.is-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
}

.act-tile img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.act-tile.is-wide img {
    height: 100%;
    min-height: 320px;
}

.act-tile-copy {
    padding: var(--space-xl);
}

.act-tile-copy h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.act-tile.is-wide .act-tile-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
}

.act-tile.is-wide .act-tile-copy h3 {
    font-size: var(--text-2xl);
}

.act-tile-copy p {
    font-size: var(--text-base);
    color: var(--ink-2);
    font-weight: var(--weight-light);
    line-height: var(--leading-normal);
}

.act-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.act-inline-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: var(--space-sm);
    color: var(--gold-dark);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
}

.act-inline-link:hover {
    color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   11. FACTS BAND
   -------------------------------------------------------------------------- */

.facts-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-4xl);
}

.fact-card {
    background: var(--charcoal-2);
    border: 1px solid rgba(176, 141, 30, .38);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    color: var(--on-dark);
    transition:
        transform var(--dur-base) var(--ease-spring),
        border-color var(--dur-base) var(--ease-out);
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.fact-card .ic {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
    color: var(--gold-light);
}

.fact-card .ic svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
}

.fact-card p {
    font-size: 14.5px;
    color: var(--on-dark-2);
    line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   12. LOCATIONS LIST
   -------------------------------------------------------------------------- */

.loc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.loc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-md);
    padding: 17px 22px;
    transition:
        border-color var(--dur-base) var(--ease-out),
        box-shadow var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring);
}

.loc-item:hover {
    border-color: var(--line-gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.loc-item .name {
    font-weight: var(--weight-medium);
    font-size: 15px;
    color: var(--ink);
}

.loc-item .dist {
    flex: 0 0 auto;
    background: var(--gold-mist);
    border: 1px solid var(--line-gold-strong);
    color: var(--gold-dark);
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    font-size: 12.5px;
    font-weight: var(--weight-semibold);
    letter-spacing: .4px;
}

/* --------------------------------------------------------------------------
   13. ROOM DETAIL — GALLERY
   -------------------------------------------------------------------------- */

.room-layout {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.room-gallery {
    position: relative;
}

.room-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: 1px solid var(--line-gold-soft);
}

.room-gallery-main img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    transition: transform var(--dur-slower) var(--ease-out);
}

.room-gallery-main:hover img {
    transform: scale(1.03);
}

.room-gallery-main::after {
    content: "\271A  Zoom";
    position: absolute;
    bottom: 18px;
    right: 18px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(25, 22, 19, .8);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--dur-base) var(--ease-out);
}

.room-gallery-main:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.room-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.room-gallery-thumbs .thumb-btn,
.room-gallery-thumbs img {
    border-radius: var(--radius-sm);
    height: 90px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .72;
    padding: 0;
    overflow: hidden;
    background: var(--ivory);
    transition:
        opacity var(--dur-base) var(--ease-out),
        border-color var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring);
}

.room-gallery-thumbs .thumb-btn img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
    border: 0;
    border-radius: 0;
}

.room-gallery-thumbs .thumb-btn.active,
.room-gallery-thumbs .thumb-btn:hover,
.room-gallery-thumbs img.active,
.room-gallery-thumbs img:hover {
    border-color: var(--gold);
    opacity: 1;
}

.room-gallery-thumbs .thumb-btn:hover,
.room-gallery-thumbs img:hover {
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   14. ROOM DETAIL — SIDEBAR
   -------------------------------------------------------------------------- */

.room-side {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.room-side .card {
    background: var(--white);
    border: var(--border-hair-gold);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.room-side .card h3 {
    font-size: 25px;
    margin-bottom: 6px;
}

.room-side .cap-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.room-side .desc {
    font-size: 14px;
    color: var(--ink-2);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-lg);
    padding-block: var(--space-md);
    border-top: var(--border-hair-gold);
}

.room-side .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
}

.room-side .trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--muted);
    margin-top: var(--space-md);
    text-align: center;
    line-height: var(--leading-snug);
}

.room-side .trust svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold-dark);
    fill: none;
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   15. ROOM DETAIL — NAVIGATION
   -------------------------------------------------------------------------- */

.room-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
    padding-top: var(--space-lg);
    border-top: var(--border-hair-gold);
}

.room-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-pill);
    padding: 13px 26px;
    font-size: 11.5px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--ink-2);
    transition: all var(--dur-base) var(--ease-out);
}

.room-nav a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. AMENITIES
   -------------------------------------------------------------------------- */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.amenity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-sm);
    padding: 15px 18px;
    font-size: 14px;
    font-weight: var(--weight-medium);
    color: var(--ink-2);
    transition:
        border-color var(--dur-base) var(--ease-out),
        background var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring);
}

.amenity:hover {
    border-color: var(--line-gold);
    background: var(--gold-mist);
    transform: translateY(-2px);
}

.amenity svg {
    width: 19px;
    height: 19px;
    stroke: var(--gold-dark);
    fill: none;
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   17. CONTACT
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-2xl);
}

.contact-cards {
    display: grid;
    gap: var(--space-md);
    align-content: start;
}

/* Iletisim formu kaldirildi (sunucudan mail gonderilemiyordu). Kartlar artik
   sayfanin tam genisligini kullaniyor; rezervasyon karti tam satir. */
.contact-cards-wide {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.contact-cards-wide .contact-card-social,
.contact-cards-wide .contact-card-book {
    grid-column: 1 / -1;
}

.contact-card {
    display: flex;
    gap: var(--space-lg);
    background: var(--white);
    border: var(--border-hair);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition:
        border-color var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out);
}

.contact-card:hover {
    border-color: var(--line-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.contact-card .ic {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold-mist);
    border: 1.5px solid var(--line-gold-strong);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .ic svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card .ic .ico-whatsapp {
    fill: currentColor;
    stroke: none;
}

.contact-card h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.contact-card p,
.contact-card a.ct {
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: var(--leading-snug);
}

.contact-card a.ct:hover {
    color: var(--gold-dark);
}

/* --------------------------------------------------------------------------
   18. MAP EMBED
   -------------------------------------------------------------------------- */

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-hair-gold);
    height: 100%;
    min-height: 480px;
    background: var(--ivory);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   19. CHIPS
   -------------------------------------------------------------------------- */

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-mist);
    border: 1px solid var(--line-gold-strong);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   20. CONTENT SPLIT HELPER
   -------------------------------------------------------------------------- */

.content-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.content-media img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 470px;
    object-fit: cover;
    border: 6px solid var(--white);
    outline: 1px solid var(--line-gold-soft);
    transition: transform var(--dur-slower) var(--ease-out);
}

.content-media:hover img {
    transform: scale(1.02);
}

.content-copy h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    margin-bottom: var(--space-lg);
    color: var(--ink);
}

.content-copy p {
    color: var(--ink-2);
    font-weight: var(--weight-light);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 5/6 — MOTION.CSS
   Keyframe library, scroll-reveal system, micro-interactions,
   reduced-motion support and print styles.

   Index
   -----
   01. Keyframes — entrances
   02. Keyframes — ambient motion
   03. Keyframes — attention
   04. Scroll reveal system
   05. Hover micro-interactions
   06. Reduced motion
   07. Print styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. KEYFRAMES — ENTRANCES
   -------------------------------------------------------------------------- */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lightboxIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lightboxImg {
    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   02. KEYFRAMES — AMBIENT MOTION
   -------------------------------------------------------------------------- */

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-1.4%, -1%);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(.6deg);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(6px, -8px);
    }

    66% {
        transform: translate(-5px, 5px);
    }
}

/* --------------------------------------------------------------------------
   03. KEYFRAMES — ATTENTION
   -------------------------------------------------------------------------- */

@keyframes pulseSoft {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.72);
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(176, 141, 30, .55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(176, 141, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(176, 141, 30, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes shineSweep {
    0% {
        transform: translateX(-130%) skewX(-18deg);
    }

    60% {
        transform: translateX(230%) skewX(-18deg);
    }

    100% {
        transform: translateX(230%) skewX(-18deg);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.55);
    }

    55% {
        opacity: 1;
        transform: scale(1.06);
    }

    75% {
        transform: scale(.97);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(-4deg);
    }

    40% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-2deg);
    }

    80% {
        transform: rotate(2deg);
    }
}

/* --------------------------------------------------------------------------
   04. SCROLL REVEAL SYSTEM
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .8s var(--ease-out),
        transform .8s var(--ease-out);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

.reveal.d5 {
    transition-delay: .40s;
}

.reveal.d6 {
    transition-delay: .48s;
}

/* Reveal direction variants (add next to .reveal) */
.reveal-up {
    transform: translateY(46px);
}

.reveal-down {
    transform: translateY(-46px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-zoom {
    transform: scale(.9);
}

.reveal-up.visible,
.reveal-down.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
    transform: none;
}

/* --------------------------------------------------------------------------
   05. HOVER MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */

.hover-lift {
    transition: transform var(--dur-base) var(--ease-spring),
        box-shadow var(--dur-base) var(--ease-out);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform var(--dur-slower) var(--ease-out);
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

/* Shine sweep on primary CTAs */
.btn-gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.btn-gold:hover::after {
    opacity: 1;
    animation: shineSweep .9s var(--ease-out) forwards;
}

/* Pulsing ring on hero CTA */
.btn-pulse {
    animation: pulseRing 2.6s var(--ease-out) infinite;
}

/* Shimmer text (awards headline) */
.text-shimmer {
    background: linear-gradient(110deg, var(--gold-dark) 20%, var(--gold-light) 40%, var(--gold-dark) 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 5s linear infinite;
}

/* --------------------------------------------------------------------------
   06. REDUCED MOTION
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-slide.active img {
        animation: none;
    }

    .exp-media .stamp {
        animation: none;
    }

    .btn-gold::after {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   07. PRINT STYLES
   -------------------------------------------------------------------------- */

@media print {

    .topbar,
    .site-header,
    .mobile-nav,
    .hero-dots,
    .booking-wrap,
    .cta-band,
    .site-footer,
    .lightbox,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero,
    .page-hero {
        height: auto;
        min-height: 0;
        background: none;
    }

    .hero-slide {
        position: static;
        opacity: 1;
    }

    .hero-slide img,
    .page-hero img {
        max-height: 260px;
        object-fit: cover;
    }

    .hero-content,
    .page-hero .inner {
        position: static;
        color: #000;
        padding: 20px 0;
    }

    .hero-title,
    .page-hero h1 {
        color: #000;
        text-shadow: none;
    }

    .section {
        padding: 24px 0;
    }

    .room-card,
    .service-card,
    .award-card,
    .thing-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   JACOB'S CAVE SUITES — DESIGN SYSTEM
   --------------------------------------------------------------------------
   File 6/6 — RESPONSIVE.CSS
   Breakpoint-driven adaptations for every component.
   Strategy: mobile-first additions layered from wide screens down.

   Breakpoint map
   --------------
   1280px  — 4K / wide laptops          : container, mega menu widths
   1150px  —  small laptops             : grids collapse, nav compresses
   1024px  —  tablets landscape         : nav spacing, hero scale
   900px   —  tablets portrait          : NAV SWITCHES TO MOBILE PATTERN
   768px   —  large phones              : single-column content
   680px   —  small phones landscape    : grids re-flow
   620px   —  phones portrait           : hero, booking, footer stack
   480px   —  small phones              : typography floor, spacing floor
   400px   —  very small phones         : ultra-narrow fixes
   360px   —  minimum supported width   : safety floor
   ========================================================================== */

/* --------------------------------------------------------------------------
   <= 1280px — WIDE LAPTOPS
   -------------------------------------------------------------------------- */

@media (max-width: 1280px) {

    .container {
        width: min(var(--container-max), 94% - (var(--gutter) * 2));
    }

    .main-nav>li>a {
        padding: 12px 12px;
        letter-spacing: .05em;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-logo {
        height: 58px;
        max-width: 190px;
    }

    /* 94vw + tetikleyiciye gore -%46 kaydirma, ~1000px genislikte paneli
       ekranin solundan disari tasiriyordu. */
    .mega.mega-rooms {
        width: min(1020px, 86vw);
    }

    .main-nav>li:nth-child(2) .mega {
        transform: translateX(-40%);
    }

    .main-nav>li:nth-child(2):hover .mega,
    .main-nav>li:nth-child(2):focus-within .mega {
        transform: translate(-40%, 4px);
    }

    .exp-grid {
        gap: var(--space-4xl);
    }

    .exp-media .main-img img {
        height: 480px;
    }

    .room-gallery-main img {
        height: 460px;
    }
}

/* --------------------------------------------------------------------------
   <= 1150px — SMALL LAPTOPS
   -------------------------------------------------------------------------- */

@media (max-width: 1150px) {

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

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

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

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

    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mega-room-card .thumb,
    .mega-room-card .thumb img {
        height: 100px;
        max-height: 100px;
        flex-basis: 100px;
    }

    .mega-room-card .meta .name {
        font-size: 13px;
    }

    .footer-top {
        grid-template-columns: 1.2fr 1fr 1.1fr;
        gap: var(--space-2xl);
    }

    .booking-card {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .booking-fields {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-fields .field.search {
        grid-column: 1 / -1;
        justify-self: start;
        width: min(220px, 100%);
    }

    .stats-grid {
        gap: var(--space-lg);
    }

    .header-cta .btn {
        padding: 12px 20px;
    }

    .hero-title {
        font-size: clamp(38px, 5.6vw, 64px);
    }
}

/* --------------------------------------------------------------------------
   <= 1024px — TABLETS LANDSCAPE
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {

    :root {
        --header-height: 76px;
    }

    .header-cta .btn-outline-gold {
        display: none;
    }

    .main-nav>li>a {
        font-size: 11px;
        padding: 11px 9px;
    }

    .topbar {
        font-size: 12px;
    }

    .topbar-left {
        gap: var(--space-md);
    }

    .hero {
        height: min(88vh, 780px);
        min-height: 580px;
    }

    .hero-dots {
        bottom: 168px;
    }

    .hero-line {
        bottom: 120px;
    }

    .booking-wrap {
        margin-top: -70px;
        margin-bottom: 0;
    }

    .content-grid,
    .exp-grid,
    .act-feature,
    .act-feature.is-reverse,
    .act-tile.is-wide {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .act-feature.is-reverse .act-media {
        order: 0;
    }

    .act-media img,
    .act-tile.is-wide img {
        height: 360px;
        min-height: 0;
    }

    .exp-media .main-img img {
        height: 440px;
    }

    .exp-media .float-img {
        right: 10px;
        bottom: -24px;
    }

    .exp-media .stamp {
        left: 10px;
        top: 16px;
    }

    .room-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .room-side {
        position: static;
        top: auto;
    }

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

    .map-embed,
    .map-embed iframe {
        min-height: 400px;
    }

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

    .mega-explore {
        grid-template-columns: 1fr;
    }

    .mega-explore .feat {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cta-band {
        padding-block: 96px;
    }

    .award-card .score {
        font-size: 38px;
    }
}

/* --------------------------------------------------------------------------
   <= 900px — TABLETS PORTRAIT
   --------------------------------------------------------------------------
   Navigation switches to the mobile hamburger pattern. All desktop
   navigation chrome is hidden and the slide-down mobile drawer
   becomes the primary navigation surface.                             */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .header-cta .header-book {
        display: inline-flex;
        padding: 11px 16px;
        font-size: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .mega {
        display: none;
    }

    .topbar .mail {
        display: none;
    }

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

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

    .section {
        padding-block: var(--space-5xl);
    }

    .hero {
        height: min(86vh, 720px);
    }

    .hero-sub {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .stat+.stat::before {
        display: none;
    }

    .facts-band {
        grid-template-columns: 1fr;
    }

    .loc-list {
        grid-template-columns: 1fr;
    }

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

    .booking-card {
        padding: 26px;
    }

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

    .booking-fields .field.search {
        grid-column: 1 / -1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: auto;
    }

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

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

    .room-gallery-thumbs img {
        height: 80px;
    }

    .breakfast-hero-band {
        min-height: 380px;
    }

    .breakfast-hero-band .copy {
        padding: var(--space-2xl);
    }

    .hero-line {
        display: none;
    }

    .hero-dots {
        bottom: 148px;
    }
}

/* --------------------------------------------------------------------------
   <= 768px — LARGE PHONES
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

    .contact-cards-wide {
        grid-template-columns: 1fr;
    }

    :root {
        --gutter: 20px;
    }

    .topbar .container {
        justify-content: space-between;
    }

    .topbar-left .mail,
    .topbar-left .top-rating {
        display: none;
    }

    .topbar-right {
        gap: var(--space-md);
    }

    .topbar-right .sep {
        display: none;
    }

    .sec-title {
        font-size: var(--text-2xl);
    }

    .hero {
        min-height: 540px;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 52px);
    }

    .hero-kicker {
        letter-spacing: var(--tracking-widest);
        font-size: 10.5px;
    }

    .hero-content {
        padding-bottom: 120px;
    }

    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero h1 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .page-hero p {
        font-size: 14px;
    }

    .rooms-grid,
    .rooms-grid.cols-3,
    .rooms-grid.cols-2 {
        grid-template-columns: 1fr;
    }

    .rooms-grid.cols-2 .room-card .thumb {
        height: 250px;
    }

    .rooms-grid.cols-2 .room-card .body {
        padding: var(--space-xl);
    }

    .rooms-grid.cols-2 .room-card h3 {
        font-size: 22px;
    }

    .things-grid,
    .act-mosaic {
        grid-template-columns: 1fr;
    }

    .act-tile.is-wide {
        grid-column: auto;
    }

    .act-tile.is-wide .act-tile-copy {
        padding: var(--space-xl);
    }

    .act-feature + .act-feature {
        margin-top: var(--space-4xl);
        padding-top: var(--space-4xl);
    }

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

    .cta-band {
        padding-block: 84px;
    }

    .cta-band::before {
        inset: 14px;
    }

    .contact-cards {
        gap: var(--space-sm);
    }

    .contact-card {
        padding: var(--space-lg);
    }

    .room-gallery-main img {
        height: 340px;
    }

    .exp-media .main-img img,
    .content-media img {
        height: 360px;
    }

    .exp-media .float-img {
        width: 52%;
    }

    .exp-media .float-img img {
        height: 170px;
    }

    .exp-media .stamp {
        width: 84px;
        height: 84px;
    }

    .exp-media .stamp b {
        font-size: 22px;
    }

    .lightbox .lb-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .lightbox .lb-prev,
    .lightbox .lb-next {
        width: 44px;
        height: 44px;
    }

    .lightbox .lb-prev {
        left: 10px;
    }

    .lightbox .lb-next {
        right: 10px;
    }

    .lightbox .lb-count {
        top: 28px;
        left: 20px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   <= 680px — SMALL PHONES LANDSCAPE
   -------------------------------------------------------------------------- */

@media (max-width: 680px) {

    .hero {
        min-height: 520px;
    }

    .hero-ctas {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: min(320px, 100%);
    }

    .hero-flourish::before,
    .hero-flourish::after {
        width: 40px;
    }

    .hero-dots {
        bottom: 140px;
    }

    .booking-fields {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .booking-card {
        padding: 22px 18px;
        border-radius: var(--radius-lg);
    }

    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .award-card {
        padding: var(--space-lg) var(--space-md);
    }

    .award-card .score {
        font-size: 34px;
    }

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

    .gal-grid {
        gap: var(--space-sm);
    }

    .filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 10px;
    }

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

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

    .room-nav {
        flex-direction: column;
    }

    .room-nav a {
        justify-content: center;
    }

    .room-side .card {
        padding: var(--space-lg);
    }

    .breadcrumbs {
        font-size: 10px;
        gap: 7px;
    }
}

/* --------------------------------------------------------------------------
   <= 620px — PHONES PORTRAIT
   -------------------------------------------------------------------------- */

@media (max-width: 620px) {

    .section {
        padding-block: var(--space-4xl);
    }

    .sec-head {
        margin-bottom: var(--space-2xl);
    }

    .hero {
        min-height: 500px;
        height: 88vh;
    }

    .hero-kicker {
        margin-bottom: var(--space-md);
    }

    .hero-sub {
        font-size: 14px;
        line-height: var(--leading-normal);
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-name small {
        font-size: 8.5px;
        letter-spacing: .18em;
    }

    .brand-logo {
        height: 52px;
        max-width: 170px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-mark svg {
        width: 23px;
        height: 23px;
    }

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

    .usp-item {
        align-items: center;
    }

    .booking-wrap {
        margin-top: -56px;
        margin-bottom: 0;
    }

    .booking-title h3 {
        font-size: 19px;
    }

    .stats-band {
        padding-block: var(--space-4xl);
    }

    .stat b {
        font-size: 36px;
    }

    .stat span {
        font-size: 10px;
        letter-spacing: .1em;
    }

    .cta-band {
        padding-block: 72px;
    }

    .cta-band h2 {
        font-size: 28px;
    }

    .footer-top {
        padding-bottom: var(--space-2xl);
    }

    .site-footer {
        padding-top: var(--space-4xl);
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .map-embed,
    .map-embed iframe {
        min-height: 320px;
    }

    .breakfast-hero-band {
        min-height: 330px;
        border-radius: var(--radius-lg);
    }

    .breakfast-hero-band .copy {
        padding: var(--space-lg);
    }

    .breakfast-hero-band h3 {
        font-size: 24px;
    }

    .transfer-note {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: var(--space-lg);
    }

    .thing-card {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .thing-card .num {
        font-size: 34px;
    }

    .loc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .loc-item .dist {
        align-self: flex-start;
    }

    .contact-card {
        flex-direction: column;
        gap: var(--space-md);
    }

    .page-hero .inner {
        justify-content: flex-end;
        padding-bottom: 40px;
    }

    .lightbox {
        padding: 4vh 4%;
    }

    .lightbox img {
        max-width: 96vw;
        max-height: 72vh;
    }
}

/* --------------------------------------------------------------------------
   <= 480px — SMALL PHONES
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {

    :root {
        --gutter: 16px;
        --header-height: 68px;
    }

    body {
        font-size: 14.5px;
    }

    .hero {
        min-height: 470px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 40px);
    }

    .hero-ctas {
        gap: var(--space-sm);
    }

    .hero-dots {
        bottom: 128px;
        gap: 8px;
    }

    .hero-dots button.active {
        width: 22px;
    }

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

    .booking-fields .field.search {
        grid-column: auto;
        width: 100%;
    }

    .booking-note {
        font-size: 11.5px;
    }

    .sec-title {
        font-size: 26px;
    }

    .sec-sub {
        font-size: 15px;
    }

    .room-card .thumb {
        height: 220px;
    }

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

    .award-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 4px 16px;
        text-align: left;
        align-items: center;
    }

    .award-card .award-stars {
        grid-column: 1 / -1;
        text-align: left;
        margin-bottom: 2px;
    }

    .award-card .score {
        font-size: 34px;
        grid-row: span 2;
    }

    .award-card h4 {
        margin: 0;
    }

    .award-card p {
        grid-column: 2;
    }

    .gal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gal-item {
        border-radius: var(--radius-sm);
    }

    .room-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .room-gallery-thumbs img {
        height: 66px;
    }

    .room-gallery-main img {
        height: 280px;
    }

    .room-side .card {
        border-radius: var(--radius-md);
    }

    .room-side .btn {
        font-size: 11px;
    }

    .cta-band .ctas {
        flex-direction: column;
        align-items: center;
    }

    .cta-band .ctas .btn {
        width: min(320px, 100%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .mobile-nav {
        padding: 16px 6% 40px;
    }

    .topbar {
        font-size: 11px;
    }

    .social-row a {
        width: 24px;
        height: 24px;
    }

    .social-row svg {
        width: 11px;
        height: 11px;
    }
}

/* --------------------------------------------------------------------------
   <= 400px — VERY SMALL PHONES
   -------------------------------------------------------------------------- */

@media (max-width: 400px) {

    .hero {
        min-height: 450px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-flourish {
        margin: var(--space-md) 0;
    }

    .kicker {
        font-size: 10px;
        letter-spacing: .24em;
    }

    .kicker::before,
    .kicker.center::after {
        width: 30px;
    }

    .breadcrumbs {
        font-size: 9px;
    }

    .room-card .foot {
        flex-direction: column;
    }

    .stat b {
        font-size: 32px;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   <= 360px — MINIMUM SUPPORTED WIDTH
   -------------------------------------------------------------------------- */

@media (max-width: 360px) {

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

    .brand-name {
        font-size: 15px;
    }

    .brand-logo {
        height: 44px;
        max-width: 148px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .btn {
        padding: 14px 26px;
        font-size: 11px;
    }
}

/* ==========================================================================
   JACOB'S CAVE SUITES — UI REFRESH 2026-08
   Overlay header, conversion dock, contact form, layout fixes.
   ========================================================================== */

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 200;
    background: var(--gold);
    color: var(--on-gold);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: var(--weight-semibold);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.skip-link:focus {
    top: 12px;
    color: var(--on-gold);
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.top-rating {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding-left: 14px;
    border-left: 1px solid rgba(245, 241, 232, .18);
}

.section-more {
    text-align: center;
    margin-top: 46px;
}

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

.rooms-grid.cols-home .room-card .thumb {
    height: 320px;
}

.rooms-grid.cols-home .room-card h3 {
    font-size: 26px;
}

.gal-preview .gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.not-found {
    min-height: 52vh;
}

.not-found-sub {
    margin: 18px 0 30px;
}

.fax-note {
    font-size: 12.5px;
    color: var(--muted);
}

.services-grid-follow {
    margin-top: 44px;
}

.transfer-head {
    margin-top: 72px;
    margin-bottom: 36px;
}

/* Homepage overlay chrome */
body.is-home .topbar {
    display: none;
}

body.is-home .site-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    z-index: 60;
}

body.is-home .hero {
    height: 100vh;
    min-height: 680px;
    max-height: none;
}

body.is-home .booking-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: 0;
    z-index: 12;
}

body.is-home .hero-content {
    padding-bottom: 210px;
}

body.is-home .hero-dots {
    bottom: 214px;
}

body.is-home .hero-line {
    bottom: 182px;
}

body.is-home:not(.is-scrolled) .main-nav>li:not(.active)>a {
    color: #fff;
}

body.is-home:not(.is-scrolled) .main-nav>li>a {
    color: rgba(255, 255, 255, .92);
}

body.is-home:not(.is-scrolled) .main-nav>li>a:hover,
body.is-home:not(.is-scrolled) .main-nav>li.active>a {
    color: var(--gold-light);
}

body.is-home:not(.is-scrolled) .nav-toggle {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
}

body.is-home:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

body.is-home:not(.is-scrolled) .lang-chip {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
    color: rgba(255, 255, 255, .7);
}

body.is-home:not(.is-scrolled) .lang-chip .lang-sep {
    background: rgba(255, 255, 255, .4);
}

body.is-home:not(.is-scrolled) .lang-chip a.on {
    color: #fff;
}

body.is-home:not(.is-scrolled) .lang-chip a:hover {
    color: var(--gold-light);
}

body.is-home.is-scrolled .topbar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

body.is-home.is-scrolled .site-header {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line-gold-soft);
    box-shadow: 0 12px 32px -18px rgba(33, 29, 22, .28);
}

body.is-home.is-scrolled .main-nav>li>a {
    color: var(--ink);
}

body.is-home.is-scrolled .nav-toggle {
    background: var(--white);
    border-color: var(--line-gold-strong);
}

body.is-home.is-scrolled .nav-toggle span {
    background: var(--gold-dark);
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: var(--border-hair-gold);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: var(--space-sm);
}

.form-lead {
    color: var(--ink-2);
    font-size: 15px;
    margin-bottom: var(--space-xl);
    line-height: var(--leading-loose);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form .field {
    margin-bottom: var(--space-md);
}

.contact-form textarea {
    min-height: 140px;
    width: 100%;
    padding: 13px 12px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--white);
    outline: none;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-mist);
}

.contact-form .hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.form-alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    font-size: 14px;
}

.form-alert-ok {
    background: #eef6ef;
    color: var(--success);
    border: 1px solid rgba(62, 125, 78, .25);
}

.form-alert-err {
    background: #fbeeee;
    color: var(--error);
    border: 1px solid rgba(179, 64, 47, .25);
}

.contact-card-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
}

.contact-card-book .ic {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
    color: #fff;
}

.contact-card-book h4,
.contact-card-book p {
    color: #fff;
}

.contact-card-book p {
    font-size: 13.5px;
}

.btn-book-light {
    background: #fff;
    color: var(--gold-dark);
    margin-top: 12px;
}

.btn-book-light:hover {
    background: var(--gold-mist);
    color: var(--gold-deep);
}

.map-embed-wide {
    min-height: 420px;
}

.map-embed-wide iframe {
    min-height: 420px;
}

/* WhatsApp FAB */
.wa-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 75;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7);
    transition: transform var(--dur-base) var(--ease-spring);
}

.wa-fab:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.06);
}

.wa-fab svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.mobile-dock a.dock-wa {
    color: #25D366;
}

.mobile-dock a.dock-wa:hover {
    color: #6fde95;
}

/* Mobile conversion dock */
.mobile-dock {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: rgba(25, 22, 19, .96);
    border-top: 1px solid rgba(176, 141, 30, .4);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
}

.mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    border-radius: var(--radius-sm);
    color: var(--on-dark-2);
    font-size: 10px;
    font-weight: var(--weight-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mobile-dock a svg {
    width: 18px;
    height: 18px;
}

.mobile-dock a.dock-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--on-gold);
}

.mobile-dock a:hover {
    color: var(--gold-light);
}

.mobile-dock a.dock-book:hover {
    color: var(--on-gold);
}

.lightbox .lb-close svg,
.lightbox .lb-nav svg {
    width: 22px;
    height: 22px;
    display: block;
}

.mobile-nav {
    visibility: hidden;
}

.mobile-nav.open {
    visibility: visible;
}

body.nav-open .wa-fab,
body.nav-open .mobile-dock {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 901px) {
    .header-cta .nav-toggle {
        display: none;
    }
}

@media (max-width: 1150px) {
    .top-rating {
        display: none;
    }

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

    .gal-preview .gal-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .mobile-dock {
        display: grid;
    }

    .wa-fab {
        display: none;
    }

    body {
        padding-bottom: 72px;
    }

    .rooms-grid.cols-home .room-card .thumb {
        height: 250px;
    }

    .rooms-grid.cols-home .room-card h3 {
        font-size: 22px;
    }

    body.is-home .hero {
        min-height: 620px;
        height: 100vh;
    }

    body.is-home .booking-wrap {
        display: none;
    }

    body.is-home .hero-content {
        padding-bottom: 120px;
    }

    body.is-home .hero-dots {
        bottom: 88px;
    }

    body.is-home .hero-line {
        display: none;
    }

    .topbar .social-row {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: var(--space-xl);
    }

    .header-cta .header-book {
        display: none;
    }

    .rooms-grid.cols-home {
        grid-template-columns: 1fr;
    }

    body.is-home .hero {
        min-height: 560px;
    }
}

@media (max-width: 480px) {
    .rooms-grid.cols-home .room-card .thumb {
        height: 220px;
    }
}