/* ===========================================================================
   Hotel Buddha Land — site styles
   Palette: Himalayan twilight, monastic saffron & maroon, parchment, pine.
   Type: Fraunces (display) + Hanken Grotesk (body)
   Signature: mountain "ridge" divider + prayer-flag motif
   =========================================================================== */
:root {
  --ink:        #1d2a35;   /* twilight slate */
  --ink-deep:   #14202a;
  --saffron:    #d98a2b;   /* marigold / monk offering */
  --saffron-lt: #e9a94e;
  --maroon:     #7c352f;   /* robe red */
  --maroon-dk:  #5f2723;
  --pine:       #34504a;
  --parchment:  #f6f0e4;
  --parchment-2:#efe6d4;
  --cloud:      #fffdf8;
  --text:       #2b2820;
  --muted:      #6f685a;
  --line:       #e2d8c4;
  --shadow:     0 18px 40px -22px rgba(29,42,53,.45);
  --radius:     14px;
  --maxw:       1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: var(--parchment);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--maroon); text-decoration: none; }
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.12; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---- type helpers -------------------------------------------------------- */
.eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--maroon); margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--saffron-lt); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.section-title--light { color: var(--cloud); }
.section-title--sm { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 1rem; }

.link-arrow { font-weight: 600; color: var(--maroon); white-space: nowrap; border-bottom: 1px solid transparent; transition: border-color .2s; }
.link-arrow:hover { border-color: var(--maroon); }
.link-arrow--light { color: var(--saffron-lt); }
.link-arrow--light:hover { border-color: var(--saffron-lt); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: .98rem;
  padding: .82rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--maroon); color: #fff; }
.btn--primary:hover { background: var(--maroon-dk); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }
.btn--small { padding: .55rem 1.2rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

/* ---- header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,240,228,.0); backdrop-filter: blur(0px);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.is-stuck { background: rgba(246,240,228,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-mark { font-size: 1.7rem; color: var(--saffron); line-height: 1; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: "Fraunces", serif; font-size: 1.22rem; font-weight: 600; line-height: 1.05; color: var(--ink); }
.brand-loc { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
/* on transparent hero, lift brand color */
.site-header:not(.is-stuck) .brand-name { color: var(--cloud); }
.site-header:not(.is-stuck) .brand-loc { color: rgba(255,255,255,.75); }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: .98rem; border-bottom: 1.5px solid transparent; padding-bottom: 2px; }
.site-nav a:hover, .site-nav a.is-active { border-color: var(--saffron); }
.site-header:not(.is-stuck) .site-nav a { color: rgba(255,255,255,.92); }
.nav-cta { background: var(--saffron); color: var(--ink) !important; padding: .55rem 1.25rem !important; border-radius: 999px; border: none !important; font-weight: 600; }
.nav-cta:hover { background: var(--saffron-lt); }
.site-header:not(.is-stuck) .nav-cta { color: var(--ink) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.site-header:not(.is-stuck) .nav-toggle span { background: #fff; }

/* ---- hero ---------------------------------------------------------------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; margin-top: -76px; padding-top: 76px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.hero-bg--fallback {
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(217,138,43,.25), transparent 55%),
    linear-gradient(160deg, #243846 0%, #1d2a35 45%, #14202a 100%);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,32,42,.82) 0%, rgba(20,32,42,.55) 45%, rgba(20,32,42,.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 4vh; padding-bottom: 8vh; }
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.4rem); color: var(--cloud); font-weight: 500; }
.hero-sub { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin: 1.2rem 0 2rem; max-width: 38ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 7vh; left: 0; right: 0; z-index: 3; display: flex; gap: .6rem; justify-content: center; }
.hero-dot { width: 34px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s; padding: 0; }
.hero-dot.is-active { background: var(--saffron); }

/* ---- ridge signature ----------------------------------------------------- */
.ridge { line-height: 0; background: var(--ink-deep); margin-top: -1px; }
.ridge svg { width: 100%; height: 56px; display: block; fill: var(--parchment); }

/* ---- sections ------------------------------------------------------------ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--parchment-2); }
.section--dark { background: var(--ink); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }

/* intro */
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.intro-body p { font-size: 1.12rem; color: #423d33; }

/* ---- cards grid ---------------------------------------------------------- */
.card-grid { display: grid; gap: 1.6rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* room cards */
.room-card { background: var(--cloud); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s; }
.room-card:hover { transform: translateY(-4px); }
.room-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.room-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-card-img { transform: scale(1.05); }
.room-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.room-card-body h3 { font-size: 1.35rem; }
.room-card-body h3 a { color: var(--ink); }
.room-card-desc { color: var(--muted); font-size: .98rem; margin: 0; flex: 1; }
.room-card-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: .4rem; }
.price { font-family: "Fraunces", serif; font-size: 1.35rem; color: var(--maroon); font-weight: 600; }
.price--light { color: var(--saffron-lt); }
.price-unit { font-family: "Hanken Grotesk", sans-serif; font-size: .8rem; color: var(--muted); font-weight: 500; margin-left: .3rem; }
.cap { font-size: .85rem; color: var(--muted); }

.tag { position: absolute; top: 12px; left: 12px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .35rem .7rem; border-radius: 999px; text-transform: uppercase; }
.tag--saffron { background: var(--saffron); color: var(--ink); }
.tag--maroon { background: var(--maroon); color: #fff; }

/* ---- amenities ----------------------------------------------------------- */
.amenity-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.amenity-grid--page { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.amenity { display: flex; gap: 1rem; align-items: flex-start; background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.amenity-icon { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.amenity h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.amenity p { font-size: .9rem; color: var(--muted); margin: 0; }
.amenity-grid + .center { margin-top: 2.2rem; }

/* ---- packages ------------------------------------------------------------ */
.pkg-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.8rem 1.6rem; position: relative; display: flex; flex-direction: column; gap: .5rem; }
.pkg-card--featured { background: rgba(217,138,43,.12); border-color: rgba(217,138,43,.5); }
.pkg-card h3 { color: var(--cloud); font-size: 1.5rem; }
.pkg-card .tag { position: static; align-self: flex-start; margin-bottom: .6rem; }
.pkg-duration { color: var(--saffron-lt); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.pkg-desc { color: rgba(255,255,255,.82); margin: .4rem 0 .8rem; }
.pkg-includes { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.pkg-includes li { color: rgba(255,255,255,.8); font-size: .92rem; padding-left: 1.4rem; position: relative; }
.pkg-includes li::before { content: "☸"; position: absolute; left: 0; color: var(--saffron); font-size: .85rem; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .6rem; }

/* ---- masonry gallery ----------------------------------------------------- */
.masonry { columns: 4 220px; column-gap: 1rem; }
.masonry--page { columns: 4 240px; }
.masonry-item { break-inside: avoid; margin: 0 0 1rem; border-radius: 12px; overflow: hidden; background: var(--parchment-2); position: relative; }
.masonry-img { width: 100%; height: auto; object-fit: cover; display: block; }
.masonry-item--tall .masonry-img { min-height: 280px; }
.masonry-item figcaption { font-size: .82rem; color: var(--muted); padding: .5rem .7rem; }
.masonry-item.is-hidden { display: none; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.gallery-filter { background: var(--cloud); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1.1rem; font-family: inherit; font-size: .9rem; cursor: pointer; color: var(--text); transition: .2s; }
.gallery-filter:hover { border-color: var(--saffron); }
.gallery-filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--cloud); border: 1px solid var(--line); border-radius: 12px; padding: .3rem 1.3rem; }
.faq-item summary { font-family: "Fraunces", serif; font-size: 1.12rem; color: var(--ink); padding: 1rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--saffron); font-family: sans-serif; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 1.1rem; margin: 0; }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band { background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%); color: #fff; padding: clamp(3rem,6vw,4.5rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.92); margin: .4rem 0 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--ink); }
.cta-band .btn--primary:hover { background: var(--ink-deep); }
.cta-band .btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,.8); }
.cta-band .btn--ghost-dark:hover { background: #fff; color: var(--maroon); }

/* ---- footer -------------------------------------------------------------- */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.78); padding-bottom: 2rem; }
.prayer-flags { display: flex; height: 14px; }
.prayer-flags span { flex: 1; }
.prayer-flags span:nth-child(5n+1) { background: #2f6f8f; }
.prayer-flags span:nth-child(5n+2) { background: #e6e6e6; }
.prayer-flags span:nth-child(5n+3) { background: var(--maroon); }
.prayer-flags span:nth-child(5n+4) { background: var(--pine); }
.prayer-flags span:nth-child(5n+5) { background: var(--saffron); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }
.footer-brand .brand-mark { font-size: 2rem; }
.footer-brand h3 { color: #fff; font-size: 1.4rem; margin: .4rem 0 .6rem; }
.footer-brand p { font-size: .92rem; max-width: 30ch; }
.footer-col h4 { color: var(--saffron-lt); font-family: "Hanken Grotesk", sans-serif; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 .9rem; }
.footer-col p, .footer-col a { font-size: .94rem; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--saffron-lt); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-social { display: flex; gap: 1rem; margin-top: .6rem; }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; }
.footer-base p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }

/* ---- page heads ---------------------------------------------------------- */
.page-head { background: var(--ink); color: #fff; padding: calc(76px + 3.5rem) 0 3.2rem; margin-top: -76px;
  background-image: radial-gradient(120% 90% at 85% 0%, rgba(217,138,43,.22), transparent 55%); }
.page-head .eyebrow { color: var(--saffron-lt); }
.page-title { color: var(--cloud); font-size: clamp(2rem, 4.5vw, 3.3rem); }
.page-lead { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: .9rem; font-size: 1.1rem; }

/* ---- room list (rooms page) --------------------------------------------- */
.room-list { display: flex; flex-direction: column; gap: 2rem; }
.room-row { display: grid; grid-template-columns: 0.9fr 1.1fr; background: var(--cloud); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.room-row-media { min-height: 260px; }
.room-row-img { width: 100%; height: 100%; object-fit: cover; }
.room-row-body { padding: 1.8rem 2rem; }
.room-row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.room-row-head h2 { font-size: 1.7rem; }
.room-row-desc { color: var(--muted); margin: .7rem 0 1rem; }
.chip-row { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0 0 1.4rem; }
.chip { background: var(--parchment-2); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; color: #5a5446; }
.room-row-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* ---- single room --------------------------------------------------------- */
.room-hero { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 60vh; }
.room-hero-media { background: var(--parchment-2); }
.room-hero-img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.room-hero-panel { background: var(--ink); color: #fff; padding: clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.back-link { color: var(--saffron-lt); font-size: .9rem; }
.room-hero-panel h1 { color: var(--cloud); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.room-hero-price { color: var(--saffron-lt); font-family: "Fraunces", serif; font-size: 1.5rem; }
.room-hero-price span { font-family: "Hanken Grotesk", sans-serif; font-size: .9rem; color: rgba(255,255,255,.7); }
.room-hero-desc { color: rgba(255,255,255,.85); }
.room-hero-panel .btn { align-self: flex-start; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.tick-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.tick-list li { padding-left: 1.8rem; position: relative; color: #423d33; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pine); font-weight: 700; }

/* ---- packages page ------------------------------------------------------- */
.pkg-page-grid { display: flex; flex-direction: column; gap: 2rem; }
.pkg-page-card { display: grid; grid-template-columns: 0.8fr 1.2fr; background: var(--cloud); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pkg-page-card.is-featured { outline: 2px solid var(--saffron); }
.pkg-page-media { position: relative; min-height: 240px; }
.pkg-page-img { width: 100%; height: 100%; object-fit: cover; }
.pkg-page-body { padding: 2rem; }
.pkg-page-body h2 { font-size: 1.7rem; }
.pkg-page-body .pkg-desc { color: var(--muted); }
.pkg-page-body .pkg-duration { color: var(--maroon); margin-bottom: .6rem; }
.pkg-page-body .tick-list { margin: 1rem 0 1.4rem; }
.pkg-page-body .pkg-foot { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.pkg-page-body .price { font-size: 1.6rem; }

/* ---- about --------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.about-lead { font-size: 1.2rem; color: #3c372d; }
.about-prose h2 { margin-top: 2rem; }
.about-facts { background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; position: sticky; top: 100px; }
.about-facts h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.fact-list { margin: 0 0 1.4rem; }
.fact-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--muted); font-size: .9rem; }
.fact-list dd { margin: 0; font-weight: 600; text-align: right; font-size: .92rem; }

/* ---- contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.form-card { background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.field > span { font-size: .85rem; font-weight: 600; color: #4a463b; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; padding: .7rem .85rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--text); width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(217,138,43,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row .field--narrow { grid-column: auto; }
.form-note { font-size: .8rem; color: var(--muted); margin: .9rem 0 0; text-align: center; }
.contact-side { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1.8rem; }
.contact-card h3 { color: #fff; margin-bottom: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; flex-direction: column; gap: .1rem; }
.contact-list span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--saffron-lt); }
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--saffron-lt); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--parchment-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.notice { border-radius: 12px; padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; }
.notice strong { display: block; margin-bottom: .2rem; }
.notice p { margin: 0; font-size: .92rem; }
.notice--success { background: #e7f0e4; border: 1px solid #b9d3ad; color: #2e5226; }
.notice--error { background: #f6e2df; border: 1px solid #e0a9a1; color: #7c352f; }

/* ---- photo placeholder --------------------------------------------------- */
.photo-empty {
  width: 100%; height: 100%; min-height: 180px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .4rem; color: #a99e85;
  background:
    repeating-linear-gradient(45deg, #ece2cf, #ece2cf 12px, #e7dcc6 12px, #e7dcc6 24px);
}
.photo-empty-mark { font-size: 1.8rem; opacity: .6; }
.photo-empty-label { font-size: .82rem; letter-spacing: .03em; }

.error-section { padding: 7rem 0; }

/* ---- responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid, .amenity-grid--page { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .room-detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .room-hero, .room-row, .pkg-page-card { grid-template-columns: 1fr; }
  .about-facts { position: static; }
  .masonry, .masonry--page { columns: 2 160px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(20,32,42,.97); padding: 1.2rem 24px 1.6rem; gap: 0;
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { color: #fff !important; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 86vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .amenity-grid, .amenity-grid--page { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- accessibility ------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
