/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #B85C38;
  --terracotta-dark: #9A4B2C;
  --terracotta-light: #D4845E;
  --sand: #F5EDE3;
  --sand-dark: #E8DDD0;
  --sand-light: #FAF6F1;
  --charcoal: #1E1E1E;
  --charcoal-light: #2D2D2D;
  --warm-gray: #6B6560;
  --warm-gray-light: #9B9590;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(30,30,30,0.08);
  --shadow-md: 0 4px 20px rgba(30,30,30,0.1);
  --shadow-lg: 0 8px 40px rgba(30,30,30,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--sand-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,92,56,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(250,246,241,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.35s ease;
}

.nav.scrolled .nav__logo {
  color: var(--charcoal);
}

.nav__logo-icon {
  color: var(--terracotta);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white);
}

.nav.scrolled .nav__link {
  color: var(--warm-gray);
}

.nav.scrolled .nav__link:hover {
  color: var(--charcoal);
}

.nav__link--cta {
  padding: 10px 20px;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--terracotta-dark);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav.scrolled .nav__toggle span {
  background: var(--charcoal);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.25s ease;
}

.mobile-menu__link:hover {
  color: var(--terracotta);
}

.mobile-menu__link--cta {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 32px;
  background: var(--terracotta);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.mobile-menu__contact {
  margin-top: 16px;
  text-align: center;
  color: var(--warm-gray-light);
  font-size: 0.875rem;
  line-height: 1.8;
}

.mobile-menu__contact a {
  color: var(--terracotta-light);
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,30,30,0.72) 0%,
    rgba(30,30,30,0.45) 50%,
    rgba(30,30,30,0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge svg {
  color: var(--terracotta-light);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero__actions .btn--ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero__actions .btn--ghost:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.about__media {
  position: relative;
}

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

.about__img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--sand-light);
  box-shadow: var(--shadow-md);
}

.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stat {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--terracotta);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

.about__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about__text {
  padding: 8px 0;
}

.about__body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.about__feature-icon {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== TAPS ===== */
.taps {
  padding: 120px 0;
  background: var(--sand);
}

.taps__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.taps__subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

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

.tap-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.tap-card__img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

.tap-card:hover .tap-card__img img {
  transform: scale(1.08);
}

.tap-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.tap-card__body {
  padding: 24px;
}

.tap-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.tap-card__desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tap-card__meta {
  display: flex;
  gap: 16px;
}

.tap-card__abv,
.tap-card__ibu {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(184,92,56,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.taps__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 16px 24px;
  background: rgba(184,92,56,0.06);
  border-radius: var(--radius-sm);
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.taps__note svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ===== FOOD ===== */
.food {
  padding: 120px 0;
  background: var(--sand-light);
}

.food__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.food__body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.food__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.food__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand-dark);
}

.food__item:last-child {
  border-bottom: none;
}

.food__item-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.food__item-desc {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  text-align: right;
  max-width: 280px;
}

.food__note {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  font-style: italic;
}

.food__img-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food__img-grid img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.food__img-grid img:first-child {
  height: 320px;
}

.food__img-grid img:nth-child(2),
.food__img-grid img:nth-child(3) {
  height: 180px;
}

/* ===== EVENTS ===== */
.events {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}

.events__header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
}

.events__header .section-title {
  color: var(--white);
}

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

.event-card {
  background: var(--charcoal-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,92,56,0.4);
}

.event-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover .event-card__accent {
  opacity: 1;
}

.event-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,92,56,0.15);
  border-radius: var(--radius-sm);
  color: var(--terracotta-light);
  margin-bottom: 24px;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.event-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--sand);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.visit__detail-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit__detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.visit__detail p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.visit__detail a {
  color: var(--terracotta);
  font-weight: 600;
  transition: color 0.25s ease;
}

.visit__detail a:hover {
  color: var(--terracotta-dark);
}

.visit__cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  position: relative;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
}

.visit__map-fallback {
  display: none;
  width: 100%;
  height: 100%;
}

.visit__map-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: var(--terracotta);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter__text {
  flex: 1;
}

.newsletter__text .section-title {
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter__text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter__input {
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 280px;
  transition: all 0.25s ease;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
}

.newsletter__success {
  display: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 0;
  background: var(--charcoal);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--terracotta-light);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

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

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

.footer__contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer__contact a {
  color: var(--terracotta-light);
  font-weight: 600;
  transition: color 0.25s ease;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__responsibility {
  font-style: italic;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .taps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__grid,
  .food__inner,
  .visit__grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero__headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    justify-content: center;
  }
  
  .about__grid,
  .food__inner,
  .visit__grid {
    grid-template-columns: 1fr;
  }
  
  .about__img-accent {
    right: 16px;
    bottom: -24px;
    width: 140px;
    height: 140px;
  }
  
  .about__stat {
    left: 16px;
    top: -16px;
  }
  
  .about__features {
    grid-template-columns: 1fr;
  }
  
  .taps__grid {
    grid-template-columns: 1fr;
  }
  
  .events__grid {
    grid-template-columns: 1fr;
  }
  
  .food__img-grid {
    order: -1;
  }
  
  .food__img-grid img:first-child {
    height: 240px;
  }
  
  .food__img-grid img:nth-child(2),
  .food__img-grid img:nth-child(3) {
    height: 140px;
  }
  
  .newsletter__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter__form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter__input {
    width: 100%;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .visit__map {
    height: 320px;
  }
  
  .visit__cta {
    flex-direction: column;
  }
  
  .visit__cta .btn {
    justify-content: center;
  }
  
  .about,
  .taps,
  .food,
  .events,
  .visit {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero__content {
    padding: 100px 16px 60px;
  }
  
  .hero__badge {
    font-size: 0.7rem;
  }
}
