/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest: #2D5A3D;
  --forest-light: #3A7D54;
  --forest-dark: #1E3F2B;
  --forest-muted: #4A7B5C;
  --off-white: #FAFAF5;
  --cream: #F3F5EE;
  --sage: #E8EDE4;
  --sage-light: #F0F4EC;
  --warm-gray: #6B7280;
  --text: #1F2937;
  --text-light: #4B5563;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 4px rgba(45, 90, 61, 0.04);
  --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.10), 0 4px 12px rgba(45, 90, 61, 0.05);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--forest);
}

.btn-secondary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.063rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.centered {
  text-align: center;
}

.centered .section-subtitle {
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 90, 61, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest-dark);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--forest);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--forest);
  background: var(--sage-light);
}

.btn-nav {
  background: var(--forest) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}

.btn-nav:hover {
  background: var(--forest-light) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--forest);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--cream) 40%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, var(--forest) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-muted);
  background: rgba(45, 90, 61, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-dark);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--forest-light);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.trust-item svg {
  color: var(--forest-muted);
  flex-shrink: 0;
}

/* Hero Images */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 5/6.4;
}

.hero-img-main img,
.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 65%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--off-white);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--forest);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.813rem;
  opacity: 0.85;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--forest-dark);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--sage-light);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.938rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── Selection ── */
.selection {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: 56px;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.selection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.selection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.selection-card-img {
  overflow: hidden;
  height: 200px;
}

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

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

.selection-card-body {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.selection-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--sage-light);
  color: var(--forest);
}

.selection-card-icon.beer {
  background: #FEF3C7;
  color: #D97706;
}

.selection-card-icon.wine {
  background: #FCE7F3;
  color: #BE185D;
}

.selection-card-icon.spirits {
  background: #E0E7FF;
  color: #4338CA;
}

.selection-card-icon.extras {
  background: var(--sage-light);
  color: var(--forest);
}

.selection-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

.selection-card-body p {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: var(--off-white);
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.visit-content .section-title {
  margin-bottom: 16px;
}

.visit-description {
  font-size: 1.063rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  color: var(--forest);
  border-radius: var(--radius-sm);
}

.visit-detail strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 2px;
}

.visit-detail span {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.5;
}

.visit-detail a {
  color: var(--forest-muted);
  transition: var(--transition);
}

.visit-detail a:hover {
  color: var(--forest);
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-map {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--cream) 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.contact-info-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.contact-info-card span {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--forest-muted);
  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--forest);
}

/* ── Form ── */
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.938rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-muted);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--sage-light);
  border: 1px solid var(--forest-muted);
  border-radius: var(--radius-md);
  color: var(--forest-dark);
  font-size: 0.938rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-success svg {
  color: var(--forest);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: rgba(255, 255, 255, 0.15);
}

.footer-brand p {
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .responsible {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .visit-inner,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-img-accent {
    left: -16px;
    bottom: -20px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .visit-map {
    height: 320px;
    order: -1;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-img-accent {
    display: none;
  }

  .about,
  .selection,
  .visit,
  .contact {
    padding: 72px 0;
  }

  .about-stat {
    right: 0;
    bottom: -16px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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