/* ============================================================
   Apartmán u Mešťana — styles.css
   Dark-brown + gold historic/boutique theme.
   Matches the guest-guide visual language.
   ============================================================ */

:root {
  /* Palette (from the guest guide) */
  --bg:          #1a130d;   /* dark brown-black */
  --bg-elev:     #251a12;
  --surface:     #2e2117;
  --surface-2:   #3a2a1d;
  --border:      #4a3524;
  --border-soft: #362616;
  --gold:        #c9a876;
  --gold-bright: #d9bc8e;
  --gold-dim:    #8b7453;
  --cream:       #e8dfce;
  --cream-dim:   #b8a988;
  --muted:       #8a7964;
  --danger:      #c97a6a;
  --success:     #8aa876;

  --shadow:  0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --radius:  6px;
  --maxw:    1140px;
  --header-h: 70px;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%; display: block; height: auto;
  -webkit-user-drag: none;          /* block drag-to-save (WebKit/Chrome) */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;      /* block iOS long-press save menu */
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; margin: 0 0 0.5em; font-weight: 400; }

p { margin: 0 0 1rem; }

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

/* -------- Layout helpers -------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 800px; }

.section { padding: 5rem 0; }
.section-surface { background: var(--bg-elev); }

/* Ornamental divider (❦) */
.ornament {
  text-align: center;
  color: var(--gold-dim);
  font-size: 18px;
  letter-spacing: 8px;
  margin: 0 0 2.25rem;
  -webkit-user-select: none;
  user-select: none;
}

/* Section headings */
.eyebrow {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.narrow .eyebrow { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: normal;
  text-align: center;
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.narrow .section-title { text-align: center; }

.section-sub {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.narrow .section-sub { text-align: center; }
.narrow p { text-align: center; }   /* center prose in narrow sections (About, Location, Contact) */

.lead { font-size: 1.15rem; color: var(--cream-dim); }

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .1s;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--bg); }

.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.btn-lg { padding: 1rem 2.2rem; font-size: 13px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(ellipse at top, rgba(201, 168, 118, 0.08), transparent 70%),
    linear-gradient(180deg, #251a12 0%, #1a130d 100%);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .25s;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -1px;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.site-header.scrolled { box-shadow: var(--shadow); }

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

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  padding: 2px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-head);
  font-style: normal;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.brand:hover { text-decoration: none; }
.brand:hover .brand-name { color: var(--gold-bright); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.nav-link:hover { color: var(--gold-bright); text-decoration: none; }

/* Language switch (pill, like the guide) */
.lang-switch {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head);
  color: var(--cream-dim);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 10px;
  transition: background .2s, color .2s;
}
.lang-btn.is-active { background: var(--gold); color: var(--bg); }

.nav-cta { padding: 0.55rem 1.1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 22px; margin: 0 auto;
  background: var(--gold); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: url("assets/img/hero.jpg") center/cover no-repeat, var(--bg);
  color: var(--cream);
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* No dark overlay — hero photo shows at full brightness.
     Text stays readable via drop shadows on the hero text below. */
  background: none;
}
.hero-content { position: relative; z-index: 1; margin: 0 auto; max-width: 780px; padding: 5rem 22px; }
.hero-logo {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--cream);
  padding: 4px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
  margin: 0 auto 1.25rem;
}
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 4px;
  font-size: 12px; color: var(--gold);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 12px rgba(0,0,0,.45);
}
.hero-headline {
  color: var(--cream);
  font-style: normal;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.6), 0 3px 22px rgba(0,0,0,.5);
}
.hero-lede {
  color: var(--cream);
  font-size: 1.35rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 12px rgba(0,0,0,.5);
}
.hero-ornament { color: var(--gold-dim); letter-spacing: 8px; margin: 0 0 1.5rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  transition: border-color .2s;
}
.gallery-item:hover { border-color: var(--gold); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid--mood { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.mood-lead { text-align: center; max-width: 640px; margin: 0 auto 2rem; }

/* ---- Carousel (horizontal slider) ---- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  align-items: center;              /* center shorter slides when a portrait makes the row taller */
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* Firefox */
  padding: 4px;                     /* room for focus outlines */
}
.carousel-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.carousel-track .gallery-item {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: auto;               /* use a fixed height instead (one large photo) */
  height: min(64vh, 600px);
  scroll-snap-align: start;
}
/* Apartment gallery: show each photo whole (incl. portrait) — no cropping */
#apartmentGallery .gallery-item { background: var(--bg); }
#apartmentGallery .gallery-item img { object-fit: contain; }
/* Portrait photos get a taller slide so they're bigger with smaller side bars */
#apartmentGallery .gallery-item.is-portrait { height: min(82vh, 760px); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(26, 19, 13, 0.72);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, opacity .2s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.carousel-arrow:hover { background: var(--gold); color: var(--bg); }
.carousel-prev { left: -6px; }
.carousel-next { right: -6px; }
.carousel-arrow[hidden] { display: none; }
@media (max-width: 600px) {
  .carousel-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .carousel-prev { left: 2px; }
  .carousel-next { right: 2px; }
}

/* Dots indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 1.1rem;
}
.carousel-dot {
  width: 10px; height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--gold-dim);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity .2s, background .2s, transform .2s;
}
.carousel-dot:hover { opacity: 0.8; }
.carousel-dot.active { background: var(--gold); opacity: 1; transform: scale(1.15); }

/* ============================================================
   KEY FACTS
   ============================================================ */
.facts-grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 940px;
  margin: 0 auto;
}
.fact {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.fact:hover { transform: translateY(-3px); border-color: var(--gold-dim); }
.fact-icon {
  width: 56px; height: 56px;
  margin: 0 auto .75rem;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.fact-icon svg { width: 28px; height: 28px; display: block; }
.fact-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: .15rem;
}
.fact-desc { display: block; color: var(--cream-dim); font-size: .95rem; }
@media (max-width: 820px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .facts-grid { grid-template-columns: 1fr; max-width: 320px; } }

/* ============================================================
   CHECKLISTS (amenities / bathroom)
   ============================================================ */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist.columns { columns: 3; column-gap: 2.5rem; }
.checklist li {
  break-inside: avoid;
  padding: .4rem 0 .4rem 1.7rem;
  position: relative;
  color: var(--cream);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: .4rem;
  color: var(--gold); font-weight: 700;
}

/* Amenities grouped into categories (symmetric columns, bold headings) */
.amenities-grid {
  column-count: 3;
  column-gap: 2.75rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.amenity-group {
  margin: 0 0 1.6rem;                    /* free line between categories */
}
.amenity-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-soft);
  -webkit-column-break-after: avoid;    /* keep heading attached to its list */
  break-after: avoid;
}
.amenity-group .checklist li { font-size: .98rem; }
@media (max-width: 900px) { .amenities-grid { column-count: 2; } }
@media (max-width: 560px) { .amenities-grid { column-count: 1; max-width: 320px; } }

/* ============================================================
   CARDS (attractions)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s, border-left-color .2s;
}
.card:hover { transform: translateY(-4px); border-left-color: var(--gold-bright); }
.card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.25rem 1.4rem 1.5rem; }
.card-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 3px 8px; border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.card-title { font-size: 1.4rem; font-style: normal; margin-bottom: .5rem; }
.card-title a { color: var(--cream); }
.card-title a:hover { color: var(--gold-bright); }
.card-body p { color: var(--cream-dim); font-size: 0.98rem; }
.card-meta {
  font-size: 12px; color: var(--muted);
  margin: 0.75rem 0 0; padding-top: 0.75rem;
  border-top: 1px solid var(--border-soft);
  letter-spacing: 0.5px;
}
.link-more { font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }

/* ============================================================
   MAP
   ============================================================ */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-block { text-align: center; }
.contact-name { font-family: var(--font-head); font-style: normal; font-size: 1.7rem; color: var(--cream); margin-bottom: .25rem; }
.contact-tagline { color: var(--cream-dim); margin-bottom: 1.75rem; }
.contact-list { list-style: none; margin: 0 auto 1.75rem; padding: 0; max-width: 460px; }
.contact-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-label { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.contact-value { font-size: 1.05rem; color: var(--cream); margin-top: 2px; }
.contact-value a { color: var(--cream); }
.contact-value a:hover { color: var(--gold-bright); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-score {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; text-align: center;
}
.score-badge {
  background: var(--gold); color: var(--bg);
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  padding: .5rem 1.1rem; border-radius: var(--radius);
}
.score-label { color: var(--cream-dim); }
.review-stars { color: var(--gold-bright); font-size: 1.3rem; letter-spacing: 3px; }
.reviews-grid { margin-bottom: 2rem; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.review-head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }
.review-name { color: var(--gold); font-weight: 700; letter-spacing: 0.3px; }
.review-meta { color: var(--muted); font-size: .85rem; }
.review-quote { font-style: italic; color: var(--cream); margin: 0; }
.reviews-link { text-align: center; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(ellipse at top, rgba(201, 168, 118, 0.05), transparent 70%),
    linear-gradient(180deg, #1a130d 0%, #0f0905 100%);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream); padding: 3px; border: 1px solid var(--gold);
}
.footer-brand { font-family: var(--font-head); font-style: normal; font-size: 1.3rem; color: var(--cream); margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.footer-nav a { color: var(--cream-dim); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-copy { margin: 0; font-size: .85rem; color: var(--muted); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--bg-elev);
  border-top: 1px solid var(--gold-dim);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 1rem; padding: 1rem 22px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.5);
}
.cookie-banner[hidden] { display: none; } /* beat the .cookie-banner display:flex */
.cookie-banner p { margin: 0; max-width: 680px; font-size: .95rem; color: var(--cream-dim); }
.cookie-actions { display: flex; align-items: center; gap: 1rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 6, 3, 0.96);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-image {
  max-width: 90vw; max-height: 85vh;
  border-radius: 4px; box-shadow: 0 10px 60px rgba(0,0,0,.7);
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(0,0,0,.5); color: var(--cream);
  border: 1px solid rgba(201, 168, 118, 0.5); cursor: pointer; border-radius: 50%;
  width: 52px; height: 52px; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  font-family: var(--font-head);
}
.lb-close:hover, .lb-nav:hover { background: rgba(201, 168, 118, 0.2); color: var(--gold-bright); }
.lb-close { top: 20px; right: 20px; font-size: 1.4rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   COOKIE INFO MODAL
   ============================================================ */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 3, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 110; /* above the cookie banner (60) and lightbox (100) */
}
.cookie-modal-overlay.is-open { display: flex; }

.cookie-modal-wrap { position: relative; max-width: 640px; width: 100%; }

.cookie-modal {
  background: var(--bg-elev);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 10px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem 2.25rem;
  line-height: 1.6;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h2 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.cookie-modal h3 {
  margin: 1.4rem 0 0.4rem;
  color: var(--gold);
  font-size: 1.05rem;
}
.cookie-modal p { margin: 0.5rem 0; color: var(--cream-dim); }
.cookie-modal table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.88rem;
}
.cookie-modal th, .cookie-modal td {
  text-align: left;
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid rgba(201, 168, 118, 0.3);
  vertical-align: top;
}
.cookie-modal th { color: var(--gold); font-weight: 600; }
.cookie-modal td { color: var(--cream-dim); }
.cookie-modal a { color: var(--gold); }
.cookie-modal-close {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 3px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-modal-close:hover { background: var(--gold-bright); }
.cookie-modal-x {
  position: absolute;
  top: 0.75rem; right: 0.9rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 1.4rem 1.1rem; font-size: 0.9rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .checklist.columns { columns: 2; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 3.5rem 0; }

  .brand-name { font-size: 1rem; }
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background:
      radial-gradient(ellipse at top, rgba(201, 168, 118, 0.06), transparent 60%),
      linear-gradient(180deg, #251a12 0%, #1a130d 100%);
    border-bottom: 1px solid var(--gold-dim);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 22px 1.5rem;
    transform: translateY(-120%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--border-soft); }
  .lang-switch { margin: 0.85rem 0; }
  .nav-cta { width: 100%; margin-top: .5rem; }
}

@media (max-width: 520px) {
  .checklist.columns { columns: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-close, .lb-nav { width: 44px; height: 44px; }
  .contact-actions .btn { flex: 1 1 auto; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-item img, .card, .card-media img { transition: none; }
}
