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

:root {
  --black: #111;
  --gray-900: #222;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #fff;
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container-narrow {
  max-width: 720px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1080px;
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-phone {
  color: var(--black) !important;
  font-weight: 600 !important;
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  background: url('SB%20Wine%20Dispatch%20Hero.png') center center / cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.btn:hover {
  background: var(--gray-900);
}

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

.btn-ghost:hover {
  background: var(--gray-100);
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 24px;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  max-width: 720px;
  margin: 0 auto;
}

/* ---- ABOUT ---- */
.about-body p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.feature {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
}

.feature h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- TOURS ---- */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.tour {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}

.tour-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.tour-price {
  font-size: 1.3rem;
  font-weight: 600;
}

.tour-perperson {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.tour-duration {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.tour ul {
  list-style: none;
}

.tour li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.tour li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 24px;
}

.divider-light {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0 0 24px;
}

.city-ride {
  margin-bottom: 24px;
}

.note {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---- CONTACT ---- */
.section-intro {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-section {
  text-align: center;
}

.contact-card {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-btn {
  min-width: 220px;
}

.contact-details {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 16px;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--gray-200);
  padding: 48px 24px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 32px;
}

.footer strong {
  font-size: 0.95rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.75rem;
  color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* ---- MOBILE ---- */
@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    align-items: flex-start;
  }

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

  .hero {
    padding: 120px 24px 72px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

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

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .section {
    padding: 56px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

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