﻿:root {
  --primary: #66784b;
  --primary-dark: #40502a;
  --primary-soft: #eef2e7;
  --accent: #d7b27a;
  --accent-soft: #f7efe0;
  --text: #23311f;
  --text-muted: #5c6758;
  --surface: #ffffff;
  --surface-alt: #f6f2e8;
  --border: rgba(35, 49, 31, 0.12);
  --radius: 24px;
  --shadow: 0 20px 50px rgba(35, 49, 31, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: linear-gradient(180deg, #fcfbf7 0%, #f7f3e8 100%);
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.02em;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.section-heading h2,
.split-grid h2,
.contact-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  color: var(--primary-dark);
  font-weight: 700;
}

.section-heading p,
.split-grid p,
.contact-card p {
  color: var(--text-muted);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(35, 49, 31, 0.16);
}

.partner-logo {
  width: 96px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.partner-card h3 {
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.partner-card p {
  color: var(--text-muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(20, 30, 18, 0.08);
  border-color: rgba(35, 49, 31, 0.07);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-partner-image {
  display: block;
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 120px 0 80px;
  color: white;
  background-size: cover;
  background-position: center;
}

.home-hero {
  background-image: url('../images/hof/hero_desktop.jpg');
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 19, 14, 0.84) 0%, rgba(13, 19, 14, 0.44) 55%, rgba(13, 19, 14, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 20px;
}

.hero-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  background: white;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-content-centered {
  text-align: center;
  align-items: center;
}

.hero-content-centered .hero-actions {
  justify-content: center;
}

.hero-title-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  margin-bottom: 4px;
}

.hero-tagline {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0 0 32px;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  margin: 14px 0 20px;
}

.hero-flowers {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.hero-flowers img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-badge {
  display: inline-block;
  text-align: center;
  margin-bottom: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}

.hero p {
  max-width: 660px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 26px rgba(102, 120, 75, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-soft);
}

.btn-small {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.hero-highlights li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-areas:
    "top img"
    "bottom img";
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
}

.welcome-text-top { grid-area: top; }
.welcome-img      { grid-area: img; align-self: center; }
.welcome-text-bottom { grid-area: bottom; }

/* Stats Bar */
.stats-bar-section {
  position: relative;
  z-index: 2;
  padding: 0 0 32px;
  margin-top: -56px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-top: 16px;
  font-size: 0.95rem;
}

.link-arrow:hover {
  text-decoration: underline;
}

.split-grid h2 {
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.feature-list li,
.feature-list-columns div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}

.feature-list-columns {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list-columns h3 {
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  min-height: 320px;
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.apartment-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apartment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(35, 49, 31, 0.16);
}

.apartment-card img {
  height: 230px;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.card-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
  color: var(--primary);
}

.stat-card span {
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 240px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.hof-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hof-card img {
  height: 220px;
}

.hof-card-content {
  padding: 22px;
}

.hof-card-content h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.hof-card-content p {
  color: var(--text-muted);
}

.hof-gallery {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-figure {
  display: grid;
  gap: 10px;
}

.gallery-figure img {
  height: 220px;
}

.gallery-figure figcaption {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.gallery img,
.gallery-grid img {
  cursor: zoom-in;
}

.gallery img {
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 15, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  position: relative;
  max-width: min(94vw, 1100px);
  max-height: 92vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}

.amenities-grid li {
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.amenities-grid li::before {
  content: '✓ ';
  color: var(--primary);
  font-weight: 700;
}

.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.breakfast-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.breakfast-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.breakfast-card-content {
  padding: 24px 28px 28px;
}

.breakfast-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.breakfast-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.breakfast-card-content h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.breakfast-card-content p {
  color: var(--text-muted);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.social-card-logo {
  width: 96px;
  height: 72px;
  object-fit: contain;
}

.social-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.social-card p {
  color: var(--text-muted);
  max-width: 360px;
  flex: 1;
}

.facebook-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1877F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-facebook {
  background: #1877F2;
  color: white;
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.22);
}

.btn-facebook:hover {
  background: #0d65d9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-grid .page-card {
  display: flex;
  flex-direction: column;
}

.contact-grid .page-card + .page-card {
  margin-top: 0;
}

.contact-grid .page-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-grid .page-card form textarea {
  flex: 1;
}

.contact-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.page-hero {
  padding-top: 140px;
  padding-bottom: 72px;
}


.page-shell {
  padding-bottom: 96px;
}

.apt-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.apt-tab-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.apt-tab-nav::-webkit-scrollbar {
  display: none;
}

.apt-tab {
  padding: 14px 24px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.apt-tab:hover {
  color: var(--primary);
}

.apt-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.page-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-card + .page-card {
  margin-top: 24px;
}

.page-card h2 {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.page-card p + p {
  margin-top: 12px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.price-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-alt);
}

.price-card h3 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.price-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
}

.price-meta {
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.93rem;
}
.price-table th {
  background: var(--primary);
  color: #fff;
  text-align: left;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.price-table th:last-child {
  text-align: right;
}
.price-table td {
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:nth-child(even) td {
  background: var(--bg-alt, #f7f6f3);
}
.price-table td:last-child {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  white-space: nowrap;
}

.price-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 740px) {
  .price-tables-grid {
    grid-template-columns: 1fr;
  }
}
.price-table-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.price-table-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}

.info-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--primary-soft);
}

.info-list strong {
  color: var(--primary-dark);
}

.info-list a {
  color: var(--primary);
  font-weight: 600;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-date-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .form-date-row {
    grid-template-columns: 1fr;
  }
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.footer {
  padding: 32px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background: #1d2418;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-partners a {
  display: inline-flex;
  align-items: center;
}

.partner-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partner-logo-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-partners img {
  width: 138px;
  height: 49px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 900px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo-partner-image {
    width: 62px;
    height: 46px;
  }

  .split-grid,
  .split-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "img"
      "bottom";
    row-gap: 20px;
  }

  .home-hero {
    background-image: url('../images/hof/hero_mobile.jpg');
  }

  .stats-bar-section {
    margin-top: 0;
    padding: 24px 0 24px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar-item {
    border-bottom: 1px solid var(--border);
    padding: 14px 8px;
    gap: 6px;
    font-size: 0.78rem;
  }

  .stats-bar-item:nth-child(2n) {
    border-right: none;
  }

  .stats-bar-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  .logo-partner-image {
    width: 46px;
    height: 34px;
  }

  .lang-switch {
    margin-left: 6px;
  }

  .welcome-detail {
    display: none;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
  }
  .form-card {
    order: -1;
  }

  .partner-logo-strip {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px 6px;
  }
  .partner-logo-strip a {
    grid-column: span 3;
    justify-content: center;
  }
  .partner-logo-strip a:nth-child(n+5) {
    grid-column: span 4;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 4%;
    left: 4%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 740px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .image-card img {
    min-height: 160px;
  }

  .breakfast-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    height: 85vh;
    min-height: 300px;
    max-height: 600px;
    padding-top: 80px;
    padding-bottom: 64px;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content-centered {
    text-align: left;
    align-items: flex-start;
  }

  .hero-brand {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  #rhLogoCont {
    flex-shrink: 0;
  }

  .hero-brand-logo {
    width: 72px;
    height: 72px;
  }

  .hero-title-group > div {
    justify-content: flex-start;
  }

  .hero-title-serif,
  .hero h1 {
    font-size: clamp(2.6rem, 9.5vw, 3.8rem);
  }

  .hero-flowers {
    display: flex;
  }

  .hero-flowers img {
    width: 24px;
    height: 24px;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .stats-grid,
  .hof-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img,
  .gallery-grid img {
    height: 160px;
  }

  .hof-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-left: 16px;
}
.lang-switch a {
  color: var(--text-muted, #888);
  text-decoration: none;
}
.lang-switch a:hover {
  color: var(--primary);
}
.lang-switch .lang-active {
  color: var(--primary);
}
.lang-switch span {
  color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ccc;
}
.cookie-banner a {
  color: #aac97e;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: var(--primary-dark);
}
.cookie-btn-decline {
  background: transparent;
  color: #aaa;
  border: 1px solid #555;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  color: #fff;
  border-color: #888;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
