:root {
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Palette: Warm Alpine, Pine Forest & Hopfen Terraces */
  --color-bg-base: #F9F7F2;
  --color-bg-surface: #FFFFFF;
  --color-bg-subtle: #F1ECE1;
  --color-bg-dark: #1E2822;
  --color-pine: #26382B;
  --color-pine-hover: #19271E;
  --color-gold: #C28C47;
  --color-gold-hover: #AA7737;
  --color-accent-green: #6C835A;
  --color-text-main: #242424;
  --color-text-muted: #5C635E;
  --color-text-light: #F4F3EE;
  --color-border: #E3DDD0;
  --color-border-dark: #37463C;
  --shadow-sm: 0 2px 8px rgba(30, 40, 34, 0.06);
  --shadow-md: 0 6px 20px rgba(30, 40, 34, 0.09);
  --shadow-lg: 0 12px 36px rgba(30, 40, 34, 0.14);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container-max: 1200px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-pine);
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-pine);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-gold);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-pine);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-gold-hover);
  font-weight: 600;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-pine);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: var(--color-pine-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  border-color: var(--color-pine);
  color: var(--color-pine);
  background: transparent;
}
.btn-outline:hover {
  background-color: var(--color-pine);
  color: #FFFFFF;
}

.btn-gold {
  background-color: var(--color-gold);
  color: #FFFFFF;
}
.btn-gold:hover {
  background-color: var(--color-gold-hover);
  color: #FFFFFF;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background-color: var(--color-bg-base);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pine);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
}

.fact-item {
  display: flex;
  flex-direction: column;
}

.fact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.fact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-pine);
}

.hero-media-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #FFFFFF;
}

.hero-media-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.hero-media-wrapper:hover img {
  transform: scale(1.025);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(30, 40, 34, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-overlay h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hero-badge-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Alert / Urgency Banner */
.notice-banner {
  background-color: #FBF2E3;
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notice-banner strong {
  color: var(--color-pine);
}

/* Features / Split Section */
.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-alt {
  background-color: var(--color-bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #E2DDD5;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-pine);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

/* Suppliers Section */
.supplier-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.supplier-badge {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.supplier-badge svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent-green);
  flex-shrink: 0;
}

.supplier-badge strong {
  color: var(--color-pine);
  font-size: 1rem;
}

/* Info Banner / Opening Times */
.info-box {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
}

.info-box h2, .info-box h3 {
  color: #FFFFFF;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.info-column {
  border-left: 2px solid var(--color-border-dark);
  padding-left: 1.5rem;
}

.info-column h4 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-column p {
  color: #D1D8D3;
  margin-bottom: 0.5rem;
}

.info-column .rule-highlight {
  color: #FFFFFF;
  background: rgba(194, 140, 71, 0.2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  border-left: 3px solid var(--color-gold);
}

/* Gallery Touch-Swipable Slider & Lightbox */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 1.5rem 0 1rem 0;
    min-height: auto;
  }
  .badge-tag {
    margin-bottom: 0.75rem;
  }
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 0.65rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }
  .hero-actions {
    margin-bottom: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-top: 1rem;
  }
  .hero-media-wrapper {
    margin-top: 1.5rem;
  }
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.25rem 2rem 0.25rem;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 4px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.gallery-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  cursor: pointer;
  background: #FFFFFF;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Modal Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 18, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-dark);
  color: #B2BDB6;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
  border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #D1D8D3;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #B2BDB6;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #B2BDB6;
}
.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Mobile Sticky Action Bar */
.mobile-action-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.dock-buttons {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
}

/* Map Section Honest Fallback & Interactive Details */
.map-card-wrapper {
  background: var(--color-bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: var(--shadow-md);
}

.map-embed-container {
  min-height: 380px;
  background-color: #E6E2D8;
  position: relative;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-details-pane {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg-subtle);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-pine);
}

/* Motion and Animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-media-wrapper img {
    height: 400px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .map-card-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--color-bg-base);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .site-nav.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .header-action .btn {
    display: none;
  }
  .mobile-action-dock {
    display: block;
  }
  body {
    padding-bottom: 74px; /* offset for dock */
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-media-wrapper img {
    height: 280px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .supplier-list {
    grid-template-columns: 1fr;
  }
}
