/* ============================================================
   Stadtflucht Bremen — Demo Stylesheet
   Deep navy / warm gold / light sand palette
   Self-contained — no inheritance from main studio-chop.de CSS
   ============================================================ */

/* ---- Variables -------------------------------------------------- */
:root {
  --navy:         #1a2744;
  --navy-light:   #2a3f64;
  --navy-dark:    #0f1a2e;
  --gold:         #c8a96e;
  --gold-light:   #dcc48e;
  --gold-dark:    #a88b56;
  --sand:         #f5f0ea;
  --sand-light:   #faf8f5;
  --white:        #ffffff;
  --text:         #1c1c1e;
  --text-light:   #6b6b70;
  --text-on-dark: #e0ddd7;
  --border:       #d6cfc5;
  --shadow:       0 2px 12px rgba(26,39,68,.1);
  --shadow-lg:    0 8px 30px rgba(26,39,68,.15);
  --font:         system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-mono:    'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
  --radius:       6px;
  --radius-lg:    10px;
  --max-width:    1200px;
  --nav-height:   64px;
}

/* ---- Reset minimal --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ---- Utility --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-heading); }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.4rem; font-weight: 600; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--white); }
.btn--sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--light {
  background: var(--white); color: var(--navy); border-color: var(--white);
}
.btn--light:hover { background: var(--sand); border-color: var(--sand); color: var(--navy); }
.btn--outline-light {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn--outline-light:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ---- Badge ----------------------------------------------------- */
.badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: .2rem .6rem;
  border-radius: 3px; background: var(--gold); color: var(--white);
}
.badge--featured { background: var(--navy); }

/* ---- Demo-Notice Banner ---------------------------------------- */
.demo-notice {
  background: var(--navy); color: var(--text-on-dark); text-align: center;
  padding: .5rem 1.25rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; position: relative; z-index: 2000; line-height: 1.4;
}
.demo-notice a { color: var(--gold); text-decoration: underline; }
.demo-notice a:hover { color: var(--gold-light); }

/* ---- Navigation ------------------------------------------------ */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark); height: var(--nav-height);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-size: 1.2rem; font-weight: 700; color: var(--gold) !important;
  letter-spacing: -.01em;
}
.nav__logo:hover { color: var(--gold-light) !important; }
.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  color: var(--text-on-dark); font-size: .88rem; font-weight: 500;
  padding: .4rem .75rem; border-radius: 4px; transition: all .15s;
}
.nav__links a:hover { background: rgba(255,255,255,.08); color: var(--gold-light); }
.nav__links a.active { color: var(--gold); background: rgba(255,255,255,.08); }

/* Burger toggle — hidden on desktop */
.nav-toggle { display: none; }
.nav-burger { display: none; }

/* ---- Hero ------------------------------------------------------ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,110,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero--short { padding: 5rem 0 3rem; }
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: .75rem;
}
.hero__title {
  font-size: 3.2rem; font-weight: 700; line-height: 1.08;
  max-width: 720px; margin-bottom: 1rem;
}
.hero__text { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---- Sections -------------------------------------------------- */
.section { padding: 5rem 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--dark { background: var(--navy-dark); color: var(--text-on-dark); }
.section__eyebrow {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: .5rem;
}
.section__title { font-size: 2.4rem; font-weight: 700; margin-bottom: .5rem; }
.section__subtitle { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 600px; line-height: 1.6; }
.section--dark .section__subtitle,
.section--navy .section__subtitle { color: rgba(255,255,255,.55); }
.section__text { color: var(--text-light); line-height: 1.7; max-width: 700px; }
.section--navy .section__text { color: rgba(255,255,255,.65); }
.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ---- Room Cards ------------------------------------------------- */
.room-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room-card__image {
  aspect-ratio: 16 / 10; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--text-light); font-weight: 500;
  position: relative;
}
.room-card__image .badge { position: absolute; top: .75rem; left: .75rem; }
.room-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.room-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.room-card__meta { font-size: .85rem; color: var(--text-light); margin-bottom: .75rem; }
.room-card__desc { font-size: .9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.room-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.room-card__price { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--gold-dark); }
.room-card__price small { font-size: .7rem; font-weight: 400; color: var(--text-light); font-family: var(--font); }

/* ---- Room Detail ------------------------------------------------- */
.room-detail__header { margin-bottom: 2.5rem; }
.room-detail__title { font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.room-detail__meta { font-size: .95rem; color: var(--text-light); }
.room-detail__gallery {
  display: grid; grid-template-columns: 2fr 1fr; gap: .75rem;
  margin-bottom: 3rem; border-radius: var(--radius-lg); overflow: hidden;
}
.room-detail__gallery-main {
  aspect-ratio: 16 / 10; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-weight: 500;
}
.room-detail__gallery-side {
  display: grid; gap: .75rem;
}
.room-detail__gallery-side > div {
  aspect-ratio: 16 / 9; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: .8rem;
}
.room-detail__gallery-main,
.room-detail__gallery-side > img {
  width: 100%; object-fit: cover; display: block;
}
.room-detail__gallery-side > img { aspect-ratio: 16 / 9; }
.room-detail__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.room-detail__grid > * { min-width: 0; }
.room-detail__desc { line-height: 1.7; color: var(--text-light); }
.room-detail__desc p { margin-bottom: 1rem; }

/* ---- Room Amenities List ---------------------------------------- */
.amenities-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
  margin: 1.5rem 0;
}
.amenities-list li {
  font-size: .9rem; color: var(--text-light); padding-left: 1.3rem;
  position: relative; line-height: 1.5;
}
.amenities-list li::before {
  content: '›'; position: absolute; left: 0; color: var(--gold);
  font-weight: 700; font-size: 1.1rem;
}

/* ---- Pricing Tables --------------------------------------------- */
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
}
.price-table th {
  background: var(--navy); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-weight: 600;
  font-family: var(--font-heading); font-size: 1.05rem;
}
.price-table th:first-child { border-radius: var(--radius) 0 0 0; }
.price-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.price-table td {
  padding: .85rem 1rem; border-bottom: 1px solid var(--border);
}
.price-table tr:nth-child(even) td { background: var(--sand-light); }
.price-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
/* Detail page: contain the price table inside its column (no viewport overflow) */
.room-detail__grid .price-table-wrap { display: block; overflow-x: auto; }
/* Small screens: stack the price-table rows so every column stays visible, no sideways scroll */
@media (max-width: 480px) {
  .room-detail__grid .price-table-wrap { overflow-x: visible; }
  .room-detail__grid .price-table thead { display: none; }
  .room-detail__grid .price-table tbody,
  .room-detail__grid .price-table tr,
  .room-detail__grid .price-table td { display: block; }
  .room-detail__grid .price-table tr {
    display: grid; grid-template-columns: 1fr auto; column-gap: .75rem;
    align-items: center; padding: .6rem 0;
    border-bottom: 1px solid var(--border);
  }
  .room-detail__grid .price-table tr:last-child { border-bottom: none; }
  .room-detail__grid .price-table tr:nth-child(even) td { background: transparent; }
  .room-detail__grid .price-table td:first-child { grid-column: 1 / -1; margin-bottom: .15rem; }
  .room-detail__grid .price-table td:nth-child(2) { grid-column: 1; }
  .room-detail__grid .price-table td:last-child { grid-column: 2; grid-row: 2; text-align: right; }
}
.price-table .price-highlight {
  color: var(--gold-dark); font-weight: 700;
  font-family: var(--font-mono);
}
.price-table .price-muted { color: var(--text-light); font-size: .85rem; }
.price-note { color: var(--text-light); font-size: .85rem; margin-top: 1rem; font-style: italic; }

/* ---- Service Features (icons section) --------------------------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  text-align: center; transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sand); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.feature-card p { color: var(--text-light); font-size: .9rem; line-height: 1.6; }

/* ---- Service Detail Cards --------------------------------------- */
.service-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sand); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.service-card p { color: var(--text-light); font-size: .9rem; line-height: 1.6; }
.service-card .price-label {
  display: inline-block; margin-top: .75rem;
  font-weight: 600; color: var(--gold-dark);
  font-family: var(--font-mono); font-size: .9rem;
}

/* ---- Gallery --------------------------------------------------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; cursor: pointer; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand);
  transition: transform .2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item__img {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: .85rem; color: rgba(255,255,255,.6);
  font-weight: 500;
}
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white); padding: 2rem .75rem .6rem; font-size: .85rem;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9); align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox--open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 80vh; border-radius: var(--radius);
  background: var(--sand);
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: rgba(255,255,255,.5);
}
.lightbox__caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: .95rem;
  background: rgba(0,0,0,.6); padding: .4rem 1rem; border-radius: 999px;
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  color: var(--white); font-size: 2rem; cursor: pointer; opacity: .7;
  transition: opacity .15s; background: none; border: none; line-height: 1;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2.5rem; cursor: pointer; opacity: .6;
  transition: opacity .15s; background: none; border: none; padding: .5rem;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ---- Contact --------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; color: var(--navy); }
.contact-info p { color: var(--text-light); font-size: .95rem; margin-bottom: .3rem; line-height: 1.7; }
.contact-info .contact-detail { margin-bottom: 1.5rem; }
.contact-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; color: var(--text); }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .65rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: 1rem; transition: border-color .15s; background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---- Booking Form ---------------------------------------------- */
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.booking-layout > * { min-width: 0; }
.booking-form { }
.booking-form .form-section { margin-bottom: 2rem; }
.booking-form .form-section h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--gold);
  color: var(--navy);
}
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.booking-form select,
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"] {
  width: 100%; padding: .6rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: .75rem; background: var(--white);
}
.booking-form select:focus,
.booking-form input:focus { outline: none; border-color: var(--gold); }
.booking-form textarea {
  width: 100%; padding: .6rem .85rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  margin-bottom: .75rem; min-height: 80px; resize: vertical;
}
.booking-form textarea:focus { outline: none; border-color: var(--gold); }

/* Extras checkboxes */
.extras-grid { display: grid; gap: .6rem; }
.extra-option {
  display: flex; align-items: center; gap: .65rem; flex-wrap: wrap;
  background: var(--sand-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .6rem .85rem; cursor: pointer;
  transition: border-color .15s;
}
.extra-option:hover { border-color: var(--gold); }
.extra-option input[type="checkbox"] {
  accent-color: var(--gold); width: 17px; height: 17px; flex-shrink: 0;
  margin: 0; /* override browser defaults */
}
.extra-option label { margin: 0; font-weight: 400; font-size: .9rem; cursor: pointer; flex: 1; }
.extra-option__price { font-family: var(--font-mono); font-size: .85rem; color: var(--gold-dark); font-weight: 600; white-space: nowrap; }

/* Booking summary panel (sticky sidebar) */
.booking-summary {
  background: var(--sand); border-radius: var(--radius-lg);
  padding: 1.75rem; position: sticky; top: calc(var(--nav-height) + 1rem);
}
.booking-summary h4 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--navy);
}
.booking-summary__row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; }
.booking-summary__row--total {
  font-weight: 700; font-size: 1.1rem;
  border-top: 2px solid var(--gold); padding-top: .75rem;
  margin-top: .5rem; color: var(--navy);
}
.booking-summary__label { color: var(--text-light); }
.booking-summary__value { font-weight: 600; }
.booking-summary__extras { margin-top: .5rem; padding-left: .5rem; }
.booking-summary__extras li {
  font-size: .8rem; color: var(--text-light); padding: .15rem 0;
  list-style: disc; margin-left: 1rem;
}
.booking-summary .price-note { font-size: .8rem; margin-top: .5rem; }

/* Confirmation overlay */
.confirm-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6); align-items: center; justify-content: center;
  padding: 1.25rem;
}
.confirm-overlay--open { display: flex; }
.confirm-overlay__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg); text-align: center;
}
.confirm-overlay__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem; font-size: 1.6rem;
}
.confirm-overlay h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--navy); }
.confirm-overlay p { color: var(--text-light); font-size: .9rem; margin-bottom: .3rem; line-height: 1.5; }
.confirm-overlay .demo-hint { color: var(--gold-dark); font-size: .8rem; font-style: italic; margin-top: 1rem; }

/* ---- Gallery Page CTA ------------------------------------------- */
.cta-section {
  background: var(--navy); color: var(--white); text-align: center;
  padding: 4rem 1.25rem;
}
.cta-section h2 { font-size: 2rem; margin-bottom: .5rem; }
.cta-section p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- Footer ---------------------------------------------------- */
.site-footer {
  background: var(--navy-dark); color: var(--text-on-dark); padding: 3.5rem 0 1.5rem;
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2rem; }
.footer__col h4 { font-size: 1rem; font-weight: 700; margin-bottom: .7rem; color: var(--gold); }
.footer__col p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__col a { color: rgba(255,255,255,.6); }
.footer__col a:hover { color: var(--gold-light); }
.footer__links li { margin-bottom: .35rem; }
.footer__links a { font-size: .88rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem;
  text-align: center;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--gold-light); }
.demo-marker { color: var(--gold); font-weight: 600; }

/* ---- Location Features (homepage) -------------------------------- */
.location-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.location-item {
  text-align: center; padding: 1.5rem;
}
.location-item__icon { font-size: 2rem; margin-bottom: .5rem; }
.location-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.location-item p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }

/* ---- Responsive: Tablet (max-width: 768px) --------------------- */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-burger {
    display: flex; flex-direction: column; gap: 4px; cursor: pointer;
    padding: .5rem; position: fixed; top: .85rem; right: 1rem; z-index: 1001;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    border-radius: 2px; transition: all .2s;
  }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--navy-dark); flex-direction: column; align-items: stretch;
    padding: 5rem 1.5rem 2rem; gap: .25rem; transition: right .3s ease;
    z-index: 1000;
  }
  .nav__links a { padding: .75rem 1rem; font-size: 1rem; }

  #nav-toggle:checked ~ .site-nav .nav__links { right: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  /* Layout */
  .hero__title { font-size: 2.2rem; }
  .hero { padding: 5rem 0 3rem; }
  .section { padding: 3rem 0; }
  .section__title { font-size: 1.8rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .room-detail__grid { grid-template-columns: 1fr; }
  .room-detail__gallery { grid-template-columns: 1fr; }
  .room-detail__gallery-side { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .location-grid { grid-template-columns: 1fr; gap: 0; }
  .amenities-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Responsive: Phone (max-width: 480px) --------------------- */
@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section { padding: 2.5rem 0; }
  .section__title { font-size: 1.5rem; }
  .room-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
  .price-table { font-size: .85rem; }
  .price-table th,
  .price-table td { padding: .6rem .6rem; }
}
