/* ============================================================
   FELSGASSE SUITEN — Editorial Hospitality
   ============================================================ */
:root {
  --cream: #f5efe4;
  --cream-soft: #efe7d7;
  --cream-deep: #e6dcc6;
  --ink: #1d2018;
  --ink-soft: #4a4a3f;
  --olive: #2f3d28;
  --olive-deep: #1f2a1a;
  --brass: #b08a4a;
  --brass-soft: #c9a978;
  --rust: #a85a32;
  --line: rgba(29, 32, 24, 0.12);
  --line-strong: rgba(29, 32, 24, 0.25);
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Manrope', system-ui, sans-serif;
  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(29,32,24,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* =============== NAV =============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s ease;
}
.nav.scrolled { padding: 14px 40px; }

.logo {
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 8px;
}
.logo .sym {
  width: 8px; height: 8px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-2px);
}
.logo em { font-style: italic; color: var(--olive); }

.nav-links {
  display: flex; gap: 36px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a { position: relative; transition: color 0.3s; }
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--olive); }
.nav-links a.active { color: var(--olive); }
.nav-links a.active::after { width: 100%; background: var(--brass); }

.nav-cta {
  padding: 11px 22px;
  background: var(--olive); color: var(--cream);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 999px; transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47, 61, 40, 0.25);
}

/* =============== HERO =============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-meta {
  position: absolute;
  top: 130px; right: 40px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.hero-meta::before {
  content: ""; width: 40px; height: 1px;
  background: var(--ink-soft);
}

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--brass);
  font-weight: 600; margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.92;
  font-weight: 300; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--olive);
}
.hero-lede {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  padding: 16px 30px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover {
  background: var(--olive);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 32, 24, 0.25);
}
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--cream-soft);
}
.arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-visual {
  position: relative;
  height: 70vh; min-height: 520px;
}
.hero-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(29, 32, 24, 0.25);
  background-size: cover;
  background-position: center;
}
.hero-img.main {
  top: 0; right: 0;
  width: 78%; height: 100%;
  background-image:
    linear-gradient(135deg, rgba(47,61,40,0.05), transparent 50%),
    url('/images/hero-main.jpg');
}
.hero-img.sub {
  bottom: 40px; left: 0;
  width: 50%; height: 45%;
  background-image: url('/images/hero-sub.jpg');
  border: 6px solid var(--cream);
  z-index: 2;
}
.hero-tag {
  position: absolute;
  top: 30px; left: -10px;
  background: var(--brass); color: var(--cream);
  padding: 8px 16px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  z-index: 3; transform: rotate(-2deg);
  box-shadow: 0 6px 16px rgba(176,138,74,0.4);
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream-soft);
}
.marquee-track {
  display: flex; gap: 60px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-size: 22px; font-style: italic;
  font-weight: 300; color: var(--olive);
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after {
  content: "✦"; color: var(--brass);
  font-size: 14px; font-style: normal;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============== SECTIONS =============== */
section {
  padding: 120px 40px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--brass);
  font-weight: 400;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1; color: var(--ink);
}
.section-title em {
  font-style: italic; color: var(--olive);
}

/* =============== ABOUT =============== */
.about {
  background: var(--cream-soft);
  max-width: none;
  padding: 120px 40px;
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-num { display: inline-block; margin-bottom: 28px; }
.about-text h2 { margin-bottom: 32px; }
.about-text p {
  font-size: 18px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 24px;
}
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--display);
  font-size: 56px; font-weight: 300;
  color: var(--olive);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-num em {
  font-style: italic; color: var(--brass);
  font-size: 32px;
}
.stat-label {
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

.about-visual { position: relative; height: 540px; }
.about-visual .frame {
  position: absolute; inset: 0;
  background-image: url('/images/about-frame.jpg');
  background-size: cover; background-position: center;
  border-radius: 4px;
  box-shadow: 0 40px 70px -30px rgba(29,32,24,0.4);
}
.about-visual .quote {
  position: absolute;
  bottom: -40px; left: -30px;
  background: var(--cream);
  padding: 28px 32px 24px 56px;
  max-width: 320px;
  box-shadow: 0 20px 40px -10px rgba(29,32,24,0.15);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px; line-height: 1.4;
  color: var(--ink);
  border-radius: 2px;
}
.quote::before {
  content: "“"; font-size: 70px; color: var(--brass);
  line-height: 0; position: absolute;
  top: 38px; left: 18px;
  font-family: var(--display);
}
.quote-attr {
  margin-top: 14px;
  font-size: 11px; font-style: normal;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--body); font-weight: 600;
}

/* =============== SUITES =============== */
.suites-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.suite-card {
  position: relative;
  background: var(--cream-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.suite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(29,32,24,0.3);
  border-color: var(--brass-soft);
}
.suite-card.featured {
  background: var(--olive); color: var(--cream);
}
.suite-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
  background-color: var(--cream-deep);
}
.suite-card[data-suite="full"] .suite-img {
  background-image: url('/images/suite-full.jpg');
}
.suite-card[data-suite="suite1"] .suite-img {
  background-image: url('/images/suite-1.jpg');
}
.suite-card[data-suite="suite2"] .suite-img {
  background-image: url('/images/suite-2.jpg');
}
.suite-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brass); color: var(--cream);
  padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  border-radius: 999px;
}
.suite-body { padding: 28px 28px 32px; }
.suite-eyebrow {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass);
  font-weight: 600; margin-bottom: 10px;
}
.suite-card.featured .suite-eyebrow { color: var(--brass-soft); }
.suite-name {
  font-family: var(--display);
  font-size: 32px; font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.suite-name em { font-style: italic; }
.suite-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.suite-card.featured .suite-desc {
  color: rgba(245, 239, 228, 0.75);
}
.suite-meta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.suite-card.featured .suite-meta {
  border-color: rgba(245, 239, 228, 0.15);
  color: rgba(245, 239, 228, 0.7);
}
.suite-foot {
  display: flex; justify-content: space-between;
  align-items: flex-end;
}
.suite-price {
  font-family: var(--display);
  font-size: 30px; font-weight: 400;
  letter-spacing: -0.02em;
}
.suite-price small {
  font-family: var(--body);
  font-size: 12px; color: var(--ink-soft);
  font-weight: 400; letter-spacing: 0;
  margin-left: 4px;
}
.suite-card.featured .suite-price small {
  color: rgba(245, 239, 228, 0.7);
}
.suite-select {
  padding: 10px 18px;
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s;
}
.suite-card.featured .suite-select { background: var(--brass); }
.suite-card:hover .suite-select { background: var(--brass); }
.suite-card.featured:hover .suite-select {
  background: var(--cream); color: var(--olive);
}

/* =============== AMENITIES =============== */
.amenities-section {
  background: var(--olive);
  color: var(--cream);
  max-width: none;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brass) 0%, transparent 70%);
  opacity: 0.15;
}
.amenities-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative; z-index: 2;
}
.amenities-section .section-title { color: var(--cream); }
.amenities-section .section-title em { color: var(--brass-soft); }
.amenities-section .section-num {
  color: var(--brass-soft);
  border-color: rgba(245, 239, 228, 0.2);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 239, 228, 0.1);
  border: 1px solid rgba(245, 239, 228, 0.1);
}
.amenity {
  background: var(--olive);
  padding: 36px 28px;
  transition: background 0.3s;
}
.amenity:hover { background: var(--olive-deep); }
.amenity-icon {
  width: 32px; height: 32px;
  margin-bottom: 22px;
  color: var(--brass-soft);
}
.amenity-name {
  font-family: var(--display);
  font-size: 22px; font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.amenity-desc {
  font-size: 13px; line-height: 1.5;
  color: rgba(245, 239, 228, 0.65);
}

/* =============== LOCATION =============== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-list { list-style: none; }
.location-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}
.location-list li:hover { padding-left: 12px; }
.location-list li:last-child { border-bottom: none; }
.loc-time {
  font-family: var(--display);
  font-size: 32px; font-weight: 400;
  color: var(--olive);
  letter-spacing: -0.02em; line-height: 1;
}
.loc-time em {
  font-style: italic; font-size: 18px;
  color: var(--brass);
}
.loc-name {
  font-size: 16px; font-weight: 600;
  color: var(--ink);
}
.loc-name small {
  display: block; font-weight: 400;
  color: var(--ink-soft);
  font-size: 13px; margin-top: 2px;
}
.loc-mode {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.location-card {
  background: var(--cream-deep);
  padding: 50px 44px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--brass) 0%, transparent 60%);
  opacity: 0.2;
}
.loc-card-eyebrow {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass);
  font-weight: 600; margin-bottom: 18px;
}
.loc-card-title {
  font-family: var(--display);
  font-size: 38px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 24px; position: relative;
}
.loc-card-title em {
  font-style: italic; color: var(--olive);
}
.loc-address {
  font-size: 16px; line-height: 1.7;
  margin-bottom: 28px; color: var(--ink);
}
.loc-address strong {
  display: block;
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  margin-bottom: 6px;
}
.metro {
  display: inline-flex; align-items: center; gap: 10px;
  background: #E5712C; color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700; font-size: 14px;
  margin-bottom: 4px;
  box-shadow: 0 4px 12px rgba(229,113,44,0.3);
}
.metro::before {
  content: "U3";
  background: white; color: #E5712C;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 800;
}

/* =============== BOOKING =============== */
.booking {
  background: var(--cream-soft);
  max-width: none;
  padding: 120px 40px 140px;
  border-top: 1px solid var(--line);
}
.booking-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.suite-picker {
  background: var(--cream);
  padding: 28px;
  border-radius: 6px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
.picker-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
  font-weight: 600; margin-bottom: 16px;
}
.picker-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.picker-option {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
  transition: all 0.25s;
  background: var(--cream);
  color: var(--ink);
}
.picker-option:hover {
  border-color: var(--brass);
  background: var(--cream-soft);
}
.picker-option.active {
  border-color: var(--olive);
  background: var(--olive); color: var(--cream);
}
.po-name {
  font-family: var(--display);
  font-size: 17px; font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.po-price {
  font-size: 12px; opacity: 0.75;
}

.calendar-wrap {
  background: var(--cream);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.cal-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
}
.cal-nav {
  display: flex; gap: 4px;
}
.cal-nav button {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}
.cal-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cal-legend {
  display: flex; gap: 18px;
  margin-bottom: 18px;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.cal-legend .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot-free { background: var(--cream-deep); border: 1px solid var(--line); }
.dot-selected { background: var(--olive); }
.dot-busy {
  background: repeating-linear-gradient(45deg, var(--cream-deep), var(--cream-deep) 2px, var(--line-strong) 2px, var(--line-strong) 4px);
}

.cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.cal-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-size: 14px;
}
.cal-month-name {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 8px;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  background: transparent;
  color: var(--ink);
  border: none;
  font-family: inherit;
}
.cal-day:hover:not(:disabled):not(.busy) {
  background: var(--cream-soft);
}
.cal-day.empty {
  visibility: hidden;
  pointer-events: none;
}
.cal-day.past {
  color: var(--line-strong);
  cursor: not-allowed;
  pointer-events: none;
}
.cal-day.busy {
  background: repeating-linear-gradient(45deg, var(--cream-deep), var(--cream-deep) 2px, var(--line-strong) 2px, var(--line-strong) 4px);
  color: var(--ink-soft);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.busy:hover { background: repeating-linear-gradient(45deg, var(--cream-deep), var(--cream-deep) 2px, var(--line-strong) 2px, var(--line-strong) 4px); }
.cal-day.in-range {
  background: var(--cream-deep);
  border-radius: 0;
}
.cal-day.range-start {
  background: var(--olive);
  color: var(--cream);
  border-radius: 4px 0 0 4px;
}
.cal-day.range-end {
  background: var(--olive);
  color: var(--cream);
  border-radius: 0 4px 4px 0;
}
.cal-day.range-start.range-end {
  border-radius: 4px;
}

.cal-footnote {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

/* =============== SUMMARY =============== */
.summary { position: sticky; top: 100px; }
.summary-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(29,32,24,0.1);
}
.summary-eyebrow {
  font-family: var(--display);
  font-size: 26px; font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.summary-dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--cream-soft);
  border-radius: 6px;
  margin-bottom: 22px;
}
.sum-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.sum-val {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}
.sum-arrow {
  color: var(--brass);
  font-size: 18px;
}

.summary-rows {
  margin-bottom: 22px;
}
.sum-empty {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  padding: 20px 10px;
  background: var(--cream-soft);
  border-radius: 6px;
  font-style: italic;
}
.sum-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.sum-row.total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 18px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sum-row.total small {
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 6px;
}

.guest-input {
  margin-bottom: 22px;
}
.guest-input label {
  display: block;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-soft);
  font-weight: 600; margin-bottom: 8px;
}
.guest-input select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s;
}
.guest-input select:focus {
  outline: none;
  border-color: var(--olive);
}

.book-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--olive);
  color: var(--cream);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.book-btn:hover:not(:disabled) {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47, 61, 40, 0.3);
}
.book-btn:disabled {
  background: var(--line-strong);
  color: var(--cream);
  cursor: not-allowed;
  opacity: 0.6;
}

.payment-trust {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-icons {
  display: flex; align-items: center; gap: 8px;
}
.trust-icons svg { color: var(--olive); flex-shrink: 0; }

/* =============== INQUIRY =============== */
.inquiry-section {
  padding: 120px 40px;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.inquiry-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.inquiry-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.hidden-field { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.inquiry-form label {
  display: block;
  margin-bottom: 20px;
}
.inquiry-form label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.form-submit {
  padding: 16px 32px;
  background: var(--ink); color: var(--cream);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--olive);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 32, 24, 0.25);
}
.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: var(--olive);
  min-height: 20px;
}
.form-status.error { color: var(--rust); }

/* =============== FOOTER =============== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 40px 30px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.15);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-family: var(--display);
  font-size: 16px; font-weight: 500;
  margin-bottom: 18px;
  color: var(--brass-soft);
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: rgba(245, 239, 228, 0.65);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245, 239, 228, 0.5);
  letter-spacing: 0.05em;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 60px;
    gap: 40px;
  }
  .hero-meta { display: none; }
  .hero-visual { height: 50vh; min-height: 380px; }
  section { padding: 70px 20px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .about, .amenities-section, .booking, .inquiry-section {
    padding: 70px 20px;
  }
  .about-inner, .booking-grid, .location-grid, .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .suites-grid { grid-template-columns: 1fr; gap: 16px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .summary { position: static; }
  .cal-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .picker-options { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* =============== NAV-RIGHT + LANGUAGE SWITCHER =============== */
.nav-right {
  display: flex; align-items: center; gap: 18px;
}

.lang-switcher {
  position: relative;
  font-family: var(--body);
}
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  background: rgba(29, 32, 24, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.25s ease;
}
.lang-toggle:hover {
  background: rgba(29, 32, 24, 0.08);
  border-color: var(--line-strong);
}
.lang-switcher.open .lang-toggle {
  background: var(--cream-deep);
  border-color: var(--line-strong);
}
.lang-globe { display: inline-flex; color: var(--olive); opacity: 0.75; }
.lang-current { letter-spacing: 0.1em; }
.lang-caret { font-size: 9px; opacity: 0.6; transition: transform 0.25s ease; }
.lang-switcher.open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  list-style: none;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  min-width: 200px;
  box-shadow: 0 18px 40px -12px rgba(29, 32, 24, 0.18),
              0 6px 14px -8px rgba(29, 32, 24, 0.12);
  z-index: 200;
  animation: langMenuIn 0.18s ease;
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-menu li {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.18s ease;
  -webkit-user-select: none;
  user-select: none;
}
.lang-menu li:hover { background: rgba(29, 32, 24, 0.05); }
.lang-menu li.active {
  background: var(--olive);
  color: var(--cream);
}
.lang-menu li.active .lang-code { color: var(--brass-soft); }
.lang-menu .lang-code {
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--olive);
  min-width: 24px;
}
.lang-menu .lang-name { font-weight: 500; }

/* Lang switcher must be visible even when nav-links collapse on mobile */
@media (max-width: 920px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .nav { padding: 14px 20px; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }
  .lang-toggle { padding: 7px 11px; font-size: 11px; }
  .lang-menu { min-width: 180px; }
  .nav-right { gap: 10px; }
}
/* Very narrow phones (iPhone SE etc.) — tighter nav */
@media (max-width: 420px) {
  .nav { padding: 12px 14px; }
  .logo { font-size: 18px; gap: 6px; }
  .logo .sym { width: 6px; height: 6px; }
  .nav-cta { padding: 8px 13px; font-size: 10.5px; letter-spacing: 0.03em; }
  .lang-toggle { padding: 7px 9px; font-size: 10.5px; gap: 5px; }
  .lang-toggle .lang-globe svg { width: 13px; height: 13px; }
  .lang-caret { font-size: 8px; }
  .nav-right { gap: 7px; }
}
/* Extra-narrow phones (iPhone SE 1st gen at 320px) — drop "Suiten" + lang text */
@media (max-width: 380px) {
  .nav { padding: 11px 12px; }
  .logo em { display: none; }
  .lang-current { display: none; }
  .lang-toggle { padding: 7px 8px; gap: 0; }
  .lang-caret { display: none; }
  .nav-cta { padding: 7px 11px; font-size: 10px; letter-spacing: 0.02em; }
}

/* CJK fonts for selected languages */
html[lang="zh"] body { font-family: 'Noto Sans SC', 'Manrope', system-ui, sans-serif; }
html[lang="ja"] body { font-family: 'Noto Sans JP', 'Manrope', system-ui, sans-serif; }
html[lang="ko"] body { font-family: 'Noto Sans KR', 'Manrope', system-ui, sans-serif; }
/* Display font (Fraunces) lacks CJK glyphs — fall back to Noto for headlines too */
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3,
html[lang="zh"] .section-title, html[lang="zh"] .suite-name,
html[lang="zh"] .loc-card-title, html[lang="zh"] .stat-num em {
  font-family: 'Noto Sans SC', 'Fraunces', serif;
}
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3,
html[lang="ja"] .section-title, html[lang="ja"] .suite-name,
html[lang="ja"] .loc-card-title, html[lang="ja"] .stat-num em {
  font-family: 'Noto Sans JP', 'Fraunces', serif;
}
html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3,
html[lang="ko"] .section-title, html[lang="ko"] .suite-name,
html[lang="ko"] .loc-card-title, html[lang="ko"] .stat-num em {
  font-family: 'Noto Sans KR', 'Fraunces', serif;
}

/* Amenities note (the disclaimer about shared bath/kitchen) — sits inside the dark olive amenities section, so colours must be light */
.amenities-note {
  margin: 36px auto 0;
  padding: 18px 22px;
  background: rgba(176, 138, 74, 0.18);
  border-left: 3px solid var(--brass-soft);
  border-radius: 0 8px 8px 0;
  font-size: 14px; line-height: 1.65;
  color: rgba(245, 239, 228, 0.88);
  max-width: 820px;
}
.amenities-note strong { color: var(--cream); font-weight: 600; }

/* Location card extras */
.loc-note { margin-top: 14px; color: var(--ink-soft); font-size: 14px; }
.loc-maps-btn {
  display: inline-flex; gap: 8px; margin-top: 24px;
  padding: 12px 22px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.25s ease;
}
.loc-maps-btn:hover {
  background: var(--olive);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 61, 40, 0.22);
}

/* Footer brand logo color override (was inline) */
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo .sym { background: var(--brass); }

/* Inquiry form sub paragraph */
.inquiry-sub { margin-top: 16px; color: var(--ink-soft); font-size: 14px; }

/* Promotion line in booking summary (Praktikanten-Rabatt) */
.sum-row.sum-promo { color: var(--brass); font-weight: 600; }
.sum-row.sum-promo span:last-child { color: var(--brass); }

/* Payment plan (Tranchen) in booking summary */
.sum-row.tranche-title {
  border-top: 1px dashed var(--line);
  margin-top: 14px;
  padding-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.sum-row.tranche-row {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.sum-row.tranche-row span:first-child { font-variant-numeric: tabular-nums; }
.sum-row.tranche-row span:last-child  { font-variant-numeric: tabular-nums; color: var(--ink); }
.tranche-info {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dotted var(--line);
}
/* Promo-Code-Eingabe im Buchungs-Widget */
.promo-code-section {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 6px;
  border: 1px dashed var(--line);
}
.promo-code-section summary {
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.promo-code-section[open] summary { color: var(--olive); margin-bottom: 10px; }
.promo-code-input-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.promo-code-input-row input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #fff;
}
.promo-code-input-row input:focus { outline: 2px solid var(--olive); outline-offset: 1px; }
.promo-code-input-row button {
  padding: 9px 16px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.promo-code-input-row button:hover { background: var(--olive-deep, #283322); }
.promo-code-input-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.promo-code-feedback {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  min-height: 18px;
}
.promo-code-feedback.success { color: var(--olive); font-weight: 500; }
.promo-code-feedback.error { color: #a13a3a; }

.ortstaxe-hint {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(176, 138, 74, 0.06);
  border-left: 2px solid var(--brass);
  border-radius: 4px;
  font-style: italic;
}

/* =============== COOKIE BANNER =============== */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4),
              0 6px 18px -8px rgba(0, 0, 0, 0.3);
  animation: cookieIn 0.5s 0.6s cubic-bezier(.2,.8,.2,1) backwards;
  max-width: 760px;
  margin: 0 auto;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
}
.cookie-banner-text {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(245, 239, 228, 0.88);
}
.cookie-banner-text strong { color: var(--cream); font-weight: 600; }
.cookie-banner-text a {
  color: var(--brass-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--cream); }
.cookie-banner-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.cookie-banner-btn:hover {
  background: var(--brass-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { flex-direction: column; gap: 14px; padding: 16px 18px; align-items: stretch; }
  .cookie-banner-btn { width: 100%; padding: 12px 22px; }
}

/* =============== HAUSREGELN =============== */
.rules-section {
  padding: 80px 40px 100px;
  max-width: var(--max);
  margin: 0 auto;
}
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}
.rules-col {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 38px;
}
.rules-col + .rules-col {
  background: rgba(176, 138, 74, 0.06);
  border-color: rgba(176, 138, 74, 0.25);
}
.rules-h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--olive);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.rules-h3-spaced { margin-top: 36px; }
.rules-list {
  list-style: none;
  padding: 0;
}
.rules-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(29, 32, 24, 0.06);
}
.rules-list li:last-child { border-bottom: none; }
.rules-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 12px; height: 1px;
  background: var(--brass);
}
.rules-list li strong { color: var(--ink); font-weight: 600; }
.rules-list-tight li { padding: 8px 0 8px 26px; }
.rules-list-tight li::before { top: 18px; }
.rules-p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.rules-p strong { color: var(--ink); font-weight: 600; }
.rules-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--olive);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.rules-download:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 61, 40, 0.22);
}
.rules-download svg { flex-shrink: 0; opacity: 0.9; }

.rules-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 138, 74, 0.3);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Pflicht-Checkbox in der Buchungs-Sidebar */
.rules-accept {
  display: flex;
  gap: 10px;
  margin: 16px 0 12px;
  padding: 14px 14px;
  background: rgba(176, 138, 74, 0.10);
  border: 1px solid rgba(176, 138, 74, 0.3);
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.rules-accept input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--olive);
  cursor: pointer;
}
.rules-accept a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.rules-accept a:hover { color: var(--brass); }

@media (max-width: 880px) {
  .rules-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .rules-section { padding: 60px 20px 80px; }
  .rules-col { padding: 26px 22px; }
}

/* =============== GALLERY =============== */
.gallery-section {
  padding: 80px 40px 100px;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 36px auto 32px;
  padding: 6px;
  max-width: 880px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.gf-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.gf-btn:hover { color: var(--ink); }
.gf-btn.active {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 6px 16px -8px rgba(47, 61, 40, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  grid-auto-flow: dense;
}
.gphoto {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-soft);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.gphoto img {
  display: block;
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), filter 0.4s ease;
}
.gphoto:hover { transform: translateY(-2px); }
.gphoto:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* Tall (portrait) photos take 2 rows for visual rhythm */
.gphoto[data-cat="suite1"]:nth-child(3n),
.gphoto[data-cat="suite2"]:nth-child(2n),
.gphoto[data-cat="bath"]:nth-child(2n),
.gphoto[data-cat="kitchen"]:nth-child(3n+1) {
  grid-row: span 2;
}
.gphoto[data-cat="suite1"]:nth-child(3n) img,
.gphoto[data-cat="suite2"]:nth-child(2n) img,
.gphoto[data-cat="bath"]:nth-child(2n) img,
.gphoto[data-cat="kitchen"]:nth-child(3n+1) img {
  aspect-ratio: 3 / 5;
}

.gphoto.hidden { display: none; }

/* =============== LIGHTBOX =============== */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 17, 12, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
  animation: lbIn 0.25s ease;
}
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lb-img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto; height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  -webkit-user-select: none;
  user-select: none;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245, 239, 228, 0.12);
  color: var(--cream);
  font-size: 24px; line-height: 48px;
  text-align: center;
  transition: background 0.2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(245, 239, 228, 0.25);
}
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(245, 239, 228, 0.7);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .gallery-section { padding: 60px 20px 80px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-filter { margin: 24px -8px 24px; max-width: none; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 6px 8px; }
  .gf-btn { flex-shrink: 0; padding: 8px 14px; font-size: 11px; }
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; line-height: 40px; font-size: 20px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

