/* ============================================
   CHAIWALA — STYLES
   Palette: Terracotta + Parchment + Deep Brown
   Fonts: Playfair Display + Plus Jakarta Sans
   ============================================ */

:root {
  --terracotta: #B5563E;
  --terracotta-light: #D4896A;
  --terracotta-pale: #F2E6D9;
  --brown-deep: #3D2B1F;
  --brown-mid: #6B4226;
  --cream: #FBF5EE;
  --cream-dark: #F0E6D6;
  --white: #FFFFFF;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D2E;
  --text-light: #9B7B6A;
  --gold: #C9956B;
  --shadow-sm: 0 2px 12px rgba(61,43,31,0.08);
  --shadow-md: 0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg: 0 20px 60px rgba(61,43,31,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(181,86,62,0.35);
}
.btn--primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,86,62,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--brown-deep);
}
.btn--ghost:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(181,86,62,0.3);
}
.btn--nav:hover { background: var(--brown-mid); transform: translateY(-1px); }

.btn--add {
  background: var(--terracotta-pale);
  color: var(--terracotta);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--terracotta-light);
}
.btn--add:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: scale(1.05);
}
.btn--add.added {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}

.btn--full { width: 100%; justify-content: center; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(251,245,238,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-deep);
  flex-shrink: 0;
}
.nav__logo em { color: var(--terracotta); font-style: italic; }
.logo-icon { font-size: 1.4rem; }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
  gap: 1rem;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nav__mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--terracotta-pale) 50%, #EDD5C0 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 4rem;
}

.hero__bg-pattern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(181,86,62,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(201,149,107,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  transition-delay: 0.1s;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown-deep);
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  transition-delay: 0.3s;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}

/* CUP ILLUSTRATION */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-delay: 0.3s;
}

.hero__cup-wrap {
  position: relative;
  width: 280px;
  height: 320px;
}

.hero__steam {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.hero__steam span {
  display: block;
  width: 4px;
  height: 40px;
  background: linear-gradient(to top, rgba(181,86,62,0.4), transparent);
  border-radius: 4px;
  animation: steam 2s ease-in-out infinite;
}
.hero__steam span:nth-child(2) { animation-delay: 0.4s; height: 55px; }
.hero__steam span:nth-child(3) { animation-delay: 0.8s; }

@keyframes steam {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.6; }
  50% { transform: scaleY(1.3) translateY(-10px); opacity: 1; }
}

.hero__cup {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
}

.hero__cup-body {
  width: 180px;
  height: 160px;
  background: linear-gradient(145deg, #FDEBD0, #F0C080);
  border-radius: 12px 12px 40px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 -4px 12px rgba(0,0,0,0.1);
}

.hero__cup-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(180deg, #C8722A 0%, #8B4513 100%);
  border-radius: 0 0 36px 36px;
  animation: liquidWave 3s ease-in-out infinite;
}

@keyframes liquidWave {
  0%, 100% { height: 70%; }
  50% { height: 72%; }
}

.hero__cup-shine {
  position: absolute;
  top: 10px; left: 15px;
  width: 30px; height: 80px;
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  transform: rotate(-15deg);
}

.hero__cup-saucer {
  width: 220px;
  height: 20px;
  background: linear-gradient(145deg, #F5DEB3, #DEB887);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateX(-20px);
}

.hero__badge {
  position: absolute;
  top: 60px; right: -10px;
  background: var(--terracotta);
  color: var(--white);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--brown-deep);
  padding: 3rem 2rem;
}
.stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  color: var(--white);
  transition-delay: 0.1s;
}
.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.stat p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}
.stat__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 2rem;
  background: var(--cream);
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-col { position: relative; }
.about__img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about__img-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 3px solid var(--terracotta-light);
  border-radius: var(--radius);
  z-index: -1;
}
.about__quote-card {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  max-width: 240px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.about__text-col p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about__features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__features strong {
  display: block;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.2rem;
}
.about__features p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 7rem 2rem;
  background: var(--terracotta-pale);
}
.menu__inner { max-width: 1100px; margin: 0 auto; }
.menu__header { text-align: center; margin-bottom: 2.5rem; }

.menu__filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(181,86,62,0.3);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card.hidden { display: none; }

.menu-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card__img img {
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }

.menu-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.menu-card__body { padding: 1.4rem; }
.menu-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 0.4rem;
}
.menu-card__body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* ============================================
   FLOATING CART
   ============================================ */
.cart-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: none;
}
.cart-float.visible { display: block; }
.cart-float__btn {
  background: var(--brown-deep);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: cartBounce 0.4s ease;
}
.cart-float__btn:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}
@keyframes cartBounce {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ============================================
   ORDER
   ============================================ */
.order {
  padding: 7rem 2rem;
  background: var(--cream);
}
.order__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.order__left p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.order__cart {
  background: var(--terracotta-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid var(--cream-dark);
}
.order__cart h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-empty {
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
  padding: 1rem 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
}
.cart-item__name { font-weight: 500; color: var(--brown-deep); }
.cart-item__price { color: var(--terracotta); font-weight: 600; }
.cart-item__remove {
  color: var(--text-light);
  font-size: 1rem;
  padding: 0 0.3rem;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: var(--terracotta); }

.cart-summary { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-dark); }
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
}
.cart-row--total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-deep);
  border-top: 1px solid var(--cream-dark);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

/* ORDER FORM */
.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.order-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-deep);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,86,62,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.pay-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.pay-opt:has(input:checked) {
  border-color: var(--terracotta);
  background: var(--terracotta-pale);
  color: var(--terracotta);
}
.pay-opt input { accent-color: var(--terracotta); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal__icon { font-size: 3rem; margin-bottom: 1rem; }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 1rem;
}
.modal p { color: var(--text-mid); margin-bottom: 0.8rem; line-height: 1.6; }
.modal__order-id { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 7rem 2rem;
  background: var(--brown-deep);
}
.testimonials__inner { max-width: 1100px; margin: 0 auto; }
.testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials__header .section-label { color: var(--gold); }
.testimonials__header .section-title { color: var(--white); }
.testimonials__header .section-title em { color: var(--gold); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), background var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}
.testi-card--featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-12px);
}
.testi-card--featured:hover { transform: translateY(-16px); }

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testi-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}
.testi-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 7rem 2rem;
  background: var(--cream);
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__info p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--brown-deep);
  font-weight: 500;
}
.contact-item a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-deep);
  margin-bottom: 1.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1E0F08;
  padding: 5rem 2rem 0;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.8rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--terracotta); }

.footer__links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__links li, .footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero__ctas { justify-content: center; }
  .hero__sub { margin: 0 auto 2.5rem; }

  .about__inner,
  .order__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .about__quote-card { position: static; margin-top: 1.5rem; max-width: 100%; }
  .about__img-accent { display: none; }

  .menu__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testi-card--featured { transform: none; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .stats__inner { gap: 1.5rem; }
  .stat__divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__cup-wrap { width: 200px; height: 240px; }
  .hero__cup-body { width: 140px; height: 120px; }
  .hero__cup-saucer { width: 170px; }
  .footer__inner { grid-template-columns: 1fr; }
  .order-form, .contact-form { padding: 1.5rem; }
}