/* ========================================
   Semberski Salas — Custom Stylesheet
   Warm, earthy hospitality design
   ======================================== */

/* --- Fonts (local, DSGVO-konform) --- */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Carattere';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/carattere-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF;
}
@font-face {
  font-family: 'Carattere';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/carattere-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  --brand-brown: #642e15;
  --brand-brown-dark: #4a2010;
  --brand-brown-light: #8b4a2a;
  --brand-green: #3d6d11;
  --brand-green-light: #a0ce4e;
  --brand-green-dark: #3d6a10;
  --brand-cream: #f7f5f1;
  --brand-warm: #e5e2d9;

  --bg: #ffffff;
  --bg-warm: #f7f5f1;
  --bg-section: #faf9f7;
  --surface: #ffffff;
  --text: #2c2c2c;
  --text-dark: #1a1a1a;
  --muted: #595959;
  --line: #e5e2d9;

  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-display: 'Carattere', cursive;

  --radius: 8px;
  --radius-lg: 16px;
  --max: 1200px;
  --header-h: 80px;
  --topbar-h: 40px;

  --shadow-sm: 0 2px 8px rgba(100,46,21,.08);
  --shadow-md: 0 4px 20px rgba(100,46,21,.12);
  --shadow-lg: 0 8px 40px rgba(100,46,21,.15);

  --transition: .3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-brown-light); }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--brand-brown); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 8px; }

/* --- Container --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* --- Top Bar --- */
.topbar {
  background: #272c30;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-left a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--brand-green-light); }
.topbar-left svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.topbar-right a {
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
}
.topbar-right a:hover { color: var(--brand-green-light); }
.topbar-right svg { width: 18px; height: 18px; fill: currentColor; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  transition: transform .35s ease, box-shadow .35s ease;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header.header-shadow {
  box-shadow: var(--shadow-sm);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-brown);
  letter-spacing: -.3px;
}

/* --- Navigation --- */
nav { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-brown);
  background: var(--bg-warm);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--brand-brown);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--brand-brown-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- Burger (Mobile) --- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, top .3s;
  position: absolute;
  left: 6px;
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 17px; }
.burger span:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 17px; }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 17px; }

/* --- Mobile Menu --- */
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 16px 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 17px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(26,26,26,.55) 0%, rgba(26,26,26,.2) 40%, rgba(26,26,26,.6) 100%),
    linear-gradient(135deg, rgba(100,46,21,.3) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 700px;
  padding: 80px 0;
}
.hero-script {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--brand-green-light);
  margin-bottom: 8px;
  line-height: 1.1;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(160,206,78,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn-brown {
  background: var(--brand-brown);
  color: #fff;
}
.btn-brown:hover {
  background: var(--brand-brown-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Sections --- */
section { padding: 80px 0; }
.section-warm { background: var(--bg-warm); }
.section-white { background: var(--bg); }
.section-brown {
  background: var(--brand-brown);
  color: #fff;
}
.section-brown .muted { color: rgba(255,255,255,.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-script {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--brand-green);
  line-height: 1.1;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
  line-height: 1.2;
}
.section-brown .section-header h2 { color: #fff; }
.section-header p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-brown .section-header p { color: rgba(255,255,255,.8); }

/* --- Welcome Section --- */
.welcome {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.welcome .section-script {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 8px;
}
.welcome h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 24px;
  color: var(--text-dark);
}
.welcome p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
.welcome-divider {
  width: 80px;
  height: 3px;
  background: var(--brand-green);
  margin: 32px auto 0;
  border-radius: 2px;
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--brand-green), var(--shadow-md);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 50%;
  padding: 12px;
}
.service-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--brand-brown);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Feature Row (Image + Text) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature-img:hover img { transform: scale(1.03); }
.feature-text .section-script {
  text-align: left;
  font-size: clamp(22px, 3vw, 36px);
}
.feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.feature-text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.feature-text .btn { margin-top: 8px; }

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 56px 0;
}
.stat-item strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-brown);
  line-height: 1.1;
}
.section-brown .stat-item strong { color: var(--brand-green-light); }
.stat-item span {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.section-brown .stat-item span { color: rgba(255,255,255,.8); }

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.review-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

/* --- Menu (Restaurant) --- */
.menu-category {
  margin-bottom: 40px;
}
.menu-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-brown);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-green);
  display: inline-block;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
}
.menu-item {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px dotted var(--line);
}

/* --- Room Cards --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow var(--transition);
}
.room-card:hover {
  box-shadow: 0 0 0 1px var(--brand-green), var(--shadow-sm);
}
.room-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.room-card .includes {
  font-size: 14px;
  color: var(--muted);
}
.room-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-brown);
  white-space: nowrap;
}
.room-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  display: block;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* --- Gallery Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--brand-brown);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 15px;
  color: var(--muted);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--brand-brown), 0 0 0 4px rgba(100,46,21,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 48px;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- CTA Band --- */
.cta-band {
  background: var(--brand-brown);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--brand-brown);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '-';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Footer --- */
footer {
  background: #272c30;
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid strong {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 16px;
}
.footer-grid a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--brand-green-light); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.social-links a:hover { background: var(--brand-green); }
.social-links svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--brand-green-light); }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb a { color: var(--brand-brown); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* --- Page Hero (Subpages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-brown) 0%, var(--brand-brown-dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}
.page-hero .section-script {
  color: var(--brand-green-light);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-top: 4px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Info List (About page) --- */
.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.info-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Banquet Features --- */
.banquet-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.banquet-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
}
.banquet-feature svg {
  width: 22px;
  height: 22px;
  fill: var(--brand-green);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .banquet-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 56px 0; }

  .topbar { display: none; }
  .nav-links, .nav-cta:not(.mobile-menu .nav-cta) { display: none; }
  .burger { display: block; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 40px 0; }
  .hero h1 { font-size: clamp(26px, 6vw, 36px); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .feature-img img { height: 280px; }

  .services-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .banquet-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-row { grid-template-columns: 1fr; }
}
