/* =========================
   Style.css - Complete with Hamburger Menu
========================= */

/* =========================
   VARIABLES
========================= */
:root {
  --bg: #FBF3D6;
  --card: #F6EBC6;
  --green: #0B3B2E;
  --greenDark: #072B22;

  --forest-green: #0B3B2E;
  --dark-green: #1A4A3A;
  --text-green: #1A4A3A;

  --pill: rgba(11, 59, 46, 0.08);
  --white: #FFFFFF;
  --shadow: rgba(11, 59, 46, 0.04);
  --transition: all 0.3s ease;

  --cream-bg: #FDF8F0;
  --color-offwhite: #FFFCF5;
  --color-dark-overlay: rgba(0, 0, 0, 0.4);
  --color-text-light: #F5F1EA;

  --transition-duration: 0.8s;

  /* shared radius + spacing */
  --border-radius: 32px;
  --spacing-xl: 80px;
  --spacing-lg: 60px;
  --spacing-md: 40px;
  --spacing-sm: 24px;
  --spacing-xs: 16px;

  --soft-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);

  /* missing vars (needed for Opening Hours) */
  --radius-container: 32px;
  --radius-pill: 20px;
  --shadow-container: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-pill: 0 6px 20px rgba(0, 0, 0, 0.07);
  --sage-green: #e8f1e1;
  --deep-green: #0B3B2E;
  --overlay: rgba(0, 0, 0, 0.45);
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--green);
  line-height: 1.6;
  overflow-x: hidden;
}

/* helper container used in your HTML */
.container {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================
   COMMON COMPONENTS
========================= */
.home-button {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.home-button:hover {
  opacity: 0.8;
}

.logo.home-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
}

.logo-mark img {
  height: 24px;
  width: auto;
  display: block;
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--green);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-contact {
  display: none;
}

/* =========================
   HERO SECTION (ABOUT)
========================= */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  min-height: 80vh;
  height: 100%;
}

.card-container {
  background-color: var(--card);
  margin-top: 20px;
  border-radius: var(--border-radius);
  padding: 30px 40px;
  height: 90vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green);
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-pills {
  display: flex;
  background-color: var(--pill);
  border-radius: 100px;
  padding: 6px;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.nav-link:hover {
  background-color: rgba(11, 59, 46, 0.12);
}

.nav-link.active {
  background-color: var(--greenDark);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--greenDark);
}

.cart-pill {
  background-color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cart-count {
  background-color: var(--greenDark);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.about-hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 100%;
}

.about-hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 25px;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.tagline p,
.address p {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--green);
}

.about-hero-tagline p {
  max-width: 560px;
}

.about-hero-address {
  text-align: right;
  font-style: normal;
  max-width: 440px;
}

/* =========================
   SCROLL HERO SECTION
========================= */
.scroll-hero-section {
  display: flex;
  justify-content: center;
  padding: 4rem 20px;
}

.image-container {
  position: relative;
  width: 94vw;
  max-width: 1600px;
  height: 70vh;
  min-height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-dark-overlay);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
  animation: bgFloat 6s ease-in-out infinite;
}

@keyframes bgFloat {
  0% {
    transform: translate3d(0, -10px, 0) scale(1.08);
  }
  50% {
    transform: translate3d(0, 10px, 0) scale(1.12);
  }
  100% {
    transform: translate3d(0, -10px, 0) scale(1.08);
  }
}

.text-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.text {
  position: absolute;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-duration) ease,
    transform var(--transition-duration) ease;
  will-change: opacity, transform;
}

.text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-spacer {
  height: 100vh;
}

/* =========================
   OUR STORY SECTION
========================= */
.story-section {
  padding: 80px 0;
  width: 100%;
}

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

.story-card {
  background-color: #faf7f2;
  border-radius: 40px;
  padding: 64px 72px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.story-title-wrapper {
  position: relative;
}

.story-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--deep-green);
  margin: 0;
  font-weight: 600;
  word-break: break-word;
}

.story-content {
  padding-top: 8px;
}

.story-text {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2c5545;
  margin: 0;
  max-width: 540px;
  font-weight: 400;
  letter-spacing: 0.01em;

  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BARISTA SECTION
========================= */
.barista-section {
  background-color: var(--bg);
  padding: 80px 0;
  width: 100%;
}

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

.barista-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background-color: var(--white);
  border-radius: 40px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.barista-slider-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--deep-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.slider-btn-prev {
  left: 16px;
}

.slider-btn-next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
  border-radius: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 59, 46, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--deep-green);
  transform: scale(1.2);
  width: 24px;
  border-radius: 12px;
}

.barista-content {
  padding-left: 24px;
}

.barista-heading {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--deep-green);
  margin: 0 0 24px 0;
  font-weight: 600;
}

.barista-text {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c5545;
  margin: 0;
  max-width: 520px;
}

/* =========================
   OPENING HOURS
========================= */
.opening-hours-section {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 75vh;
  min-height: 650px;
  border-radius: var(--radius-container);
  overflow: hidden;
  box-shadow: var(--shadow-container);
  margin: 0 auto;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay);
  border-radius: inherit;
}

.opening-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.opening-title span {
  display: block;
  font-size: clamp(4.5rem, 11vw, 9rem);
}

.opening-title span:first-child {
  margin-bottom: 5px;
}

.pills-container {
  position: absolute;
  inset: 0;
  z-index: 20;
}

.pill {
  position: absolute;
  background-color: var(--sage-green);
  color: var(--deep-green);
  padding: 20px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.pill:hover {
  transform: translate3d(0, -5px, 0) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.day {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.time {
  font-size: 1.15rem;
  opacity: 0.9;
  font-weight: 500;
}

.pill:nth-child(1) {
  top: 18%;
  left: 7%;
}

.pill:nth-child(2) {
  top: 50%;
  left: 10%;
}

.pill:nth-child(3) {
  top: 28%;
  left: 32%;
}

.pill:nth-child(4) {
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
}

.pill:nth-child(5) {
  top: 22%;
  right: 32%;
}

.pill:nth-child(6) {
  top: 52%;
  right: 18%;
}

.pill:nth-child(7) {
  top: 15%;
  right: 7%;
}

/* =========================
   FOOTER
========================= */
.footer-hero {
  background-color: transparent;
  width: 100%;
  padding: var(--hero-spacing) 20px;
}

.footer-shell {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 32px;
  overflow: hidden;
}

.footer-top {
  padding: clamp(28px, 4vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(30px, 4vw, 50px);
}

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

.column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--deep-green);
}

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

.contact-item {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  line-height: 1.5;
  font-weight: 400;
}

.big-statement {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: clamp(25px, 3vw, 35px);
  max-width: 300px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: #0f2c25;
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--deep-green);
  color: #fff;
}

.btn-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-btn:hover .btn-circle {
  background: rgba(255, 255, 255, 0.18);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-nav .nav-link {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  display: inline-block;
}

.footer-nav .nav-link:hover {
  color: #0f2c25;
  transform: translateX(4px);
}

.footer-nav .nav-link.active {
  background-color: var(--deep-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

/* ===== FOOTER HUGE TEXT ===== */
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(220px, 28vw, 420px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 5vw, 70px);
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(150px, 22vw, 520px);
  color: var(--deep-green);
  line-height: 0.72;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  animation: none;
}

.huge-text .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: footerMarquee 50s linear infinite;
}

.huge-text .marquee-track + .marquee-track {
  margin-left: 2.2rem;
}

.marquee-logo {
  height: 0.66em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35em;
  transform: translateY(-0.03em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes footerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet Landscape */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .statement-column {
    grid-column: span 2;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .card-container {
    padding: 30px;
    height: auto;
    min-height: 85vh;
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 30px;
    gap: 15px;
  }

  .logo {
    justify-content: center;
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  .nav-center {
    order: 3;
    margin-top: 15px;
  }

  .nav-right {
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-bottom: 15px;
  }

  .about-hero-address {
    text-align: center;
  }

  .story-card {
    padding: 56px 48px;
  }

  .story-grid {
    gap: 40px;
  }

  .story-title {
    font-size: 96px;
  }

  .story-text {
    font-size: 17px;
    max-width: 500px;
  }

  .barista-grid {
    gap: 48px;
    padding: 40px;
  }

  .barista-heading {
    font-size: 56px;
  }

  .barista-text {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .statement-column {
    grid-column: span 2;
    order: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hamburger menu styles */
  .hamburger-btn {
    display: flex;
    order: 2;
  }

  .nav-right {
    order: 3;
    margin-top: 0;
  }

  .nav-center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--card);
    z-index: 1000;
    padding: 100px 30px 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    margin-top: 0;
    display: block;
  }

  .nav-center.active {
    right: 0;
  }

  .nav-pills {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    width: 100%;
    gap: 10px;
  }

  .nav-pills .nav-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .mobile-contact {
    display: block;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(11, 59, 46, 0.15);
  }

  .mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .mobile-phone i {
    font-size: 1.2rem;
  }

  .mobile-social {
    display: flex;
    gap: 15px;
  }

  .mobile-social a {
    width: 44px;
    height: 44px;
    background-color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
  }

  .mobile-social a:hover {
    transform: translateY(-2px);
    background-color: var(--greenDark);
  }

  .card-container {
    padding: 20px 25px;
    border-radius: 24px;
    min-height: 80vh;
  }

  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .image-container {
    width: 96vw;
    height: 60vh;
    min-height: 400px;
    border-radius: 24px;
  }

  .text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    padding: 0 1rem;
  }

  .story-card {
    padding: 48px 32px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-title {
    font-size: 80px;
    line-height: 0.9;
  }

  .story-text {
    font-size: 16px;
    max-width: 100%;
  }

  .barista-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }

  .barista-slider-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .barista-content {
    padding-left: 0;
    text-align: center;
  }

  .barista-text {
    margin-left: auto;
    margin-right: auto;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    border-radius: 20px;
  }

  .opening-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 100px 20px 60px;
  }

  .opening-title span {
    font-size: clamp(4.5rem, 13vw, 7rem);
  }

  .pills-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px 80px;
    height: auto;
  }

  .pill {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0;
    padding: 18px 22px;
  }

  .footer-hero {
    padding: 40px 15px;
  }

  .footer-shell {
    width: 92vw;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .big-statement {
    max-width: 100%;
  }

  .footer-bottom {
    height: 260px;
    padding-bottom: 40px;
  }

  .huge-text {
    font-size: 220px;
  }
}

/* Mobile Small */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .statement-column {
    grid-column: span 1;
  }

  .big-statement {
    max-width: 100%;
  }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
  .story-card {
    padding: 40px 24px;
    border-radius: 32px;
  }

  .story-title {
    font-size: 64px;
  }

  .story-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .barista-grid {
    padding: 24px;
    gap: 32px;
  }

  .barista-heading {
    font-size: 42px;
  }

  .barista-text {
    font-size: 15px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 20px;
  }

  .footer-top {
    padding: 30px 22px;
  }

  .big-statement {
    font-size: 24px;
  }

  .menu-btn {
    padding: 14px 20px;
  }

  .social-btn {
    width: 46px;
    height: 46px;
  }

  .mobile-phone span {
    font-size: 1rem;
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    transform: none;
  }

  .text {
    transition: none;
  }

  .slider-track {
    transition: none;
  }

  .slider-btn,
  .dot,
  .slider-btn:hover {
    transition: none;
    transform: none;
  }

  .story-text {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .huge-text .marquee-track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .hamburger-line {
    transition: none;
  }

  .nav-center {
    transition: none;
  }

  .mobile-menu-overlay {
    transition: none;
  }
}