/* ============================
   BREWST — Coffee Landing Page
   Complete Design System
   ============================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --bg-cream: #F5F0E8;
  --bg-cream-alt: #EDE6D8;
  --bg-dark: #3B2516;
  --bg-dark-deep: #2A1A0A;
  --accent-gold: #C8963E;
  --accent-gold-hover: #D4A54A;
  --accent-gold-light: rgba(200, 150, 62, 0.15);
  --text-dark: #2A1A0A;
  --text-dark-muted: #5C4A3A;
  --text-light: #F5F0E8;
  --text-light-muted: rgba(245, 240, 232, 0.7);
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(42, 26, 10, 0.08);
  --card-shadow-hover: 0 8px 40px rgba(42, 26, 10, 0.15);
  --border-light: #D4C5A9;
  --border-subtle: rgba(42, 26, 10, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-logo: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1440px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-dark-muted);
  max-width: 500px;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.revealed>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.revealed>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.revealed>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.revealed>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger.revealed>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger.revealed>*:nth-child(6) {
  transition-delay: 0.6s;
}

.reveal-stagger.revealed>*:nth-child(7) {
  transition-delay: 0.7s;
}

.reveal-stagger.revealed>*:nth-child(8) {
  transition-delay: 0.8s;
}

.reveal-stagger.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA Button ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-gold);
  color: var(--bg-dark-deep);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
}

.btn-cta .arrow {
  transition: transform var(--transition-fast);
  font-size: 1.1em;
}

.btn-cta:hover .arrow {
  transform: translateX(4px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.btn-cta-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ===================================
   1. NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(42, 26, 10, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-dark);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta .btn-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ===================================
   2. HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  /* Bolder font */
  line-height: 1.05;
  color: #26150D;
  /* Darker, richer brown */
  margin-bottom: 0;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  /* Text behind glasses */
  transform: translateY(-50px);
  /* Moved text slightly up */
}

.hero__heading em {
  font-style: italic;
  font-weight: 700;
  color: #26150D;
  /* Match dark brown color */
}

.hero__image-wrapper {
  position: relative;
  max-width: 1000px;
  /* Made glasses a bit bigger */
  margin: -190px auto -50px;
  /* Adjusted to keep proper overlap */
  z-index: 2;
  /* Glasses in front */
  pointer-events: none;
}

.hero__image {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  filter: contrast(1.05) saturate(1.1);
  /* Removed mix-blend-mode so it completely covers the text */
}

/* Floating decorative elements */
.hero__float-badge {
  position: absolute;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--card-shadow);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.hero__float-badge--left {
  top: 30%;
  left: -60px;
  animation-delay: 0s;
}

.hero__float-badge--right {
  bottom: 25%;
  right: -60px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Side vertical texts */
.hero__side-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--text-dark-muted);
  opacity: 0.4;
  font-weight: 600;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 5;
  pointer-events: none;
}

.hero__side-text--left {
  left: 40px;
}

.hero__side-text--right {
  right: 40px;
}

/* Floating decorative SVGs */
.hero__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.hero__decor--left {
  left: 5%;
  top: 25%;
  animation: float-left-decor 8s ease-in-out infinite;
}

.hero__decor--right {
  right: 6%;
  bottom: 25%;
  animation: float-right-decor 8s ease-in-out infinite;
}

@keyframes float-left-decor {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-15px) rotate(-10deg); }
}

@keyframes float-right-decor {
  0%, 100% { transform: translateY(0) rotate(35deg); }
  50% { transform: translateY(-15px) rotate(40deg); }
}

/* ===================================
   3. COLD BREW SHOWCASE
   =================================== */
.cold-brew {
  padding: var(--section-padding);
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cold-brew .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cold-brew__text {
  max-width: 480px;
}

.cold-brew__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.cold-brew__label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent-gold);
}

.cold-brew__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cold-brew__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

.cold-brew__cta {
  margin-bottom: 40px;
}

.cold-brew__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cold-brew__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 232, 0.25);
  background: transparent;
  color: var(--text-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cold-brew__nav-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200, 150, 62, 0.1);
}

.cold-brew__nav-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-left: 8px;
}

.cold-brew__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.cold-brew__image {
  max-width: 380px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-slow);
}

.cold-brew__image:hover {
  transform: scale(1.03);
}

.cold-brew__features {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cold-brew__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  white-space: nowrap;
}

.cold-brew__feature .icon {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* ===================================
   3.5 MENU SHOWCASE SECTION
   =================================== */
.menu-showcase {
  padding: var(--section-padding);
  background: var(--bg-cream-alt);
  position: relative;
}

.menu-showcase__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.menu-showcase__header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-showcase__categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.menu-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  color: var(--text-dark-muted);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-btn:hover,
.menu-btn.active {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 26, 10, 0.12);
}

.menu-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  min-height: 250px;
}

.menu-item {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.menu-item__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-item__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent-gold);
}

.menu-item:hover .menu-item__img img {
  transform: scale(1.08);
}

.menu-item.fade-out {
  opacity: 0;
  transform: scale(0.92);
}

.menu-item.hide-item {
  display: none;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 15px;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-item__price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.menu-item__desc {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ===================================
   4. BEHIND THE BREW — IMAGE GALLERY
   =================================== */
.gallery {
  padding: var(--section-padding);
  background: var(--bg-cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 26, 10, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ===================================
   5. SCROLLING MARQUEE
   =================================== */
.marquee {
  padding: 28px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #4A2E1A 100%);
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.marquee__text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee__separator {
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================================
   6. TESTIMONIALS
   =================================== */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-cream-alt);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

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

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__star {
  color: var(--accent-gold);
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

/* Quote mark decoration */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent-gold-light);
  line-height: 1;
}

/* ===================================
   7. NEWSLETTER / CTA SECTION
   =================================== */
.newsletter {
  padding: 80px 0;
  background: var(--bg-cream);
}

.newsletter__card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter__text {
  flex: 1;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
}

.newsletter__subtitle {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

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

.newsletter__input {
  padding: 14px 24px;
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius-full);
  background: rgba(245, 240, 232, 0.08);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter__input::placeholder {
  color: var(--text-light-muted);
}

.newsletter__input:focus {
  border-color: var(--accent-gold);
  background: rgba(245, 240, 232, 0.12);
}

.newsletter__submit {
  padding: 14px 32px;
  background: var(--accent-gold);
  color: var(--bg-dark-deep);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.newsletter__submit:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.35);
}

/* ===================================
   8. FOOTER
   =================================== */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__brand-name {
  margin-bottom: 12px;
}

.logo-img--footer {
  height: 50px;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
}

.footer__col ul li a:hover {
  color: var(--accent-gold);
}

.footer__address {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark-muted);
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-dark-muted);
}

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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --container-padding: 0 24px;
  }

  /* Hide floating side details to avoid clutter on tablet/mobile */
  .hero__side-text,
  .hero__decor {
    display: none;
  }

  .hero__heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    transform: translateY(-20px);
  }

  .hero__image-wrapper {
    max-width: 750px;
    margin: -100px auto 0;
  }

  .cold-brew .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cold-brew__visual {
    order: -1;
    flex-direction: column;
    align-items: center;
  }

  .cold-brew__features {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 24px;
    margin-top: 20px;
    justify-content: center;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

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

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

  .newsletter__card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
    --container-padding: 0 20px;
  }

  /* Navbar mobile */
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  /* Hero mobile */
  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero__image-wrapper {
    max-width: 550px;
    margin: -60px auto 0;
  }

  .hero__float-badge {
    display: none;
  }

  /* Menu mobile */
  .menu-showcase {
    padding: 60px 0;
  }

  .menu-item {
    padding: 0;
  }

  .menu-item__content {
    padding: 20px;
  }

  /* Gallery mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  /* Testimonials mobile */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter mobile */
  .newsletter__form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter__input {
    width: 100%;
  }

  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__heading {
    font-size: 2.2rem;
  }

  .hero__image-wrapper {
    margin: -30px auto 0;
  }

  .menu-item__img {
    height: 160px;
  }

  .cold-brew__features {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .newsletter__card {
    padding: 30px 20px;
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 10, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}