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

:root {
  --terracotta: #C1665B;
  --terracotta-dark: #A85147;
  --sand: #F5EDE3;
  --sand-light: #FDF6EE;
  --sand-mid: #EDE3D5;
  --charcoal: #2A2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #8A7E76;
  --white: #FFFFFF;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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 Tags & Titles ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

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

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-title.center,
.section-subtitle.center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}

.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 8px 24px rgba(193, 102, 91, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42, 36, 32, 0.08);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

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

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--charcoal-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover {
  color: var(--terracotta);
}

.nav.scrolled .nav-links a:hover {
  color: var(--terracotta);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav.scrolled .nav-toggle-bar {
  background: var(--charcoal);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 36, 32, 0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 36, 32, 0.55) 0%,
    rgba(42, 36, 32, 0.4) 50%,
    rgba(42, 36, 32, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 238, 0.7);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(253, 246, 238, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 246, 238, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253, 246, 238, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

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

.about-image {
  border-radius: 6px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text p {
  color: var(--charcoal-light);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--sand-mid);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: var(--sand-mid);
  align-self: stretch;
}

/* ── Drinks ───────────────────────────────────────────── */
.drinks {
  padding: 120px 0;
  background: var(--sand);
}

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

.drink-card {
  background: var(--sand-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42, 36, 32, 0.1);
}

.drink-card-img {
  overflow: hidden;
  height: 240px;
}

.drink-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.drink-card:hover .drink-card-img img {
  transform: scale(1.06);
}

.drink-card-body {
  padding: 28px 28px 32px;
}

.drink-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.drink-card-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Cigars ───────────────────────────────────────────── */
.cigars {
  padding: 120px 0;
  background: var(--charcoal);
}

.cigars .section-tag {
  color: var(--terracotta);
}

.cigars .section-title {
  color: var(--sand-light);
}

.cigars .section-title em {
  color: var(--terracotta);
}

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

.cigar-image {
  border-radius: 6px;
  overflow: hidden;
}

.cigar-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.cigar-image:hover img {
  transform: scale(1.03);
}

.cigar-text p {
  color: rgba(253, 246, 238, 0.65);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.cigar-features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cigar-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(253, 246, 238, 0.8);
}

.cigar-features li svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--sand-light);
}

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

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

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

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

.visit-info .section-title {
  margin-bottom: 40px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--sand-mid);
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-row svg {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-value:hover {
  color: var(--terracotta);
}

.hours-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-mid);
  font-size: 0.9rem;
}

.hours-row span:first-child {
  color: var(--charcoal-light);
}

.hours-row span:last-child {
  color: var(--warm-gray);
}

.visit-map {
  border-radius: 6px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 8px 32px rgba(42, 36, 32, 0.1);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(253, 246, 238, 0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sand-light);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(253, 246, 238, 0.4);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(253, 246, 238, 0.5);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(253, 246, 238, 0.5);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--terracotta);
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(253, 246, 238, 0.3);
}

/* ── Reveal Animations (progressive enhancement) ─────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

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

  .reveal:nth-child(2) { transition-delay: 0.1s; }
  .reveal:nth-child(3) { transition-delay: 0.2s; }
  .reveal:nth-child(4) { transition-delay: 0.3s; }
  .reveal:nth-child(5) { transition-delay: 0.35s; }
  .reveal:nth-child(6) { transition-delay: 0.4s; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .cigar-split {
    gap: 48px;
  }

  .about-image img,
  .cigar-image img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--sand-light);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(42, 36, 32, 0.15);
    z-index: 95;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-grid,
  .cigar-split,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image img,
  .cigar-image img {
    height: 320px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

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

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

  .visit-map {
    height: 320px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 240px;
  }

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

  .drink-card-img {
    height: 200px;
  }
}
