/* ============================================
   TWING CAFE — HOMEPAGE STYLES
   ============================================ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 55%, var(--green-deep) 100%);
  overflow: hidden;
  padding: 130px 0 60px;
}
.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__slider-track {
  display: flex;
  width: 700%;
  height: 100%;
  transform: translateX(0%);
  transition: transform 1s cubic-bezier(0.65,0,0.35,1);
}
.hero__slide {
  position: relative;
  width: calc(100% / 7);
  height: 100%;
  flex-shrink: 0;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero__slider-track { transition: none; }
}
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  z-index: 2;
}
.hero__dot {
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.hero__dot:hover::after { background: rgba(255,255,255,0.75); }
.hero__dot.is-active::after {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.35);
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 600px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 44px 48px 40px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}
.hero__heading {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 60px;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--white);
}
.hero__heading-gold { color: var(--gold); }
.hero__hindi {
  font-size: 17px;
  margin-top: 18px;
}
.hero__subtext {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 4px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0 40px;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num,
.hero__stat-num-static {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.hero__wa-link:hover { color: var(--gold); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--green-dark);
  padding: 44px 0;
}
.stats-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stats-strip__num {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}
.stats-strip__label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}
.stats-strip__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ── ABOUT TEASER ── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.about-teaser__link:hover { color: var(--gold-dark); }

/* CSS café illustration */
.cafe-illustration {
  position: relative;
  aspect-ratio: 4 / 3.2;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cafe-illustration__light {
  position: absolute;
  top: 12%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe08a 0%, var(--gold) 70%);
  box-shadow: 0 0 24px 6px rgba(246,179,9,0.5);
}
.cafe-illustration__light::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1.5px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.cafe-illustration__light--1 { left: 22%; }
.cafe-illustration__light--2 { left: 48%; top: 8%; }
.cafe-illustration__light--3 { left: 74%; }
.cafe-illustration__wordmark {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 4px;
  color: rgba(246,179,9,0.5);
}
.cafe-illustration__board {
  position: absolute;
  top: 34%;
  right: 8%;
  width: 70px;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(246,179,9,0.3);
  border-radius: 4px;
  color: rgba(246,179,9,0.6);
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cafe-illustration__counter {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: #5c3d1a;
  border-top: 4px solid var(--gold-dark);
}
.cafe-illustration__table {
  position: absolute;
  bottom: 26%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
}
.cafe-illustration__table--1 { left: 14%; }
.cafe-illustration__table--2 { left: 58%; }
.cafe-illustration__chair {
  position: absolute;
  bottom: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.cafe-illustration__chair--l { left: -22px; }
.cafe-illustration__chair--r { right: -22px; }
.cafe-illustration__plant {
  position: absolute;
  bottom: 22%;
  right: 6%;
  width: 30px;
  height: 40px;
}
.cafe-illustration__plant::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 16px;
  background: #7a4a24;
  border-radius: 3px;
}
.cafe-illustration__plant::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #2f6b46 0%, #1e4d34 100%);
  border-radius: 50% 50% 50% 0;
}

/* ── WHY FRANCHISE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.why-card { text-align: left; }
.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(246,179,9,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-card__title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── FRANCHISE TEASER ── */
.franchise-teaser {
  background: var(--green-dark);
  background-image: radial-gradient(rgba(246,179,9,0.18) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding: 90px 0;
}
.franchise-teaser__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.franchise-teaser__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.franchise-teaser__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.franchise-teaser__wa {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.franchise-teaser__wa:hover { color: var(--gold); }

/* ── MENU PREVIEW ── */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.menu-preview-card {
  background: var(--white);
  border: 1px solid rgba(24,62,44,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
}
.menu-preview-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(24,62,44,0.08);
  transform: translateY(-4px);
}
.menu-preview-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.menu-preview-card h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 19px;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.menu-preview-card ul li {
  font-size: 13.5px;
  color: #6b7a71;
  padding: 3px 0;
}
.menu-preview-cta { text-align: center; margin-top: 44px; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card { text-align: left; }
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a564d;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-card__author {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--green-deep);
}
.testimonial-card__city {
  font-size: 12px;
  color: #8a978d;
  margin-top: 2px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #445048;
  margin: 14px 0;
}
.contact-info-row a { color: var(--green); font-weight: 600; text-decoration: none; }
.contact-info-row a:hover { color: var(--gold-dark); }
.contact-grid__wa-btn { margin-top: 24px; }
.contact-grid__form {
  background: #faf9f6;
  border: 1px solid rgba(24,62,44,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--green);
  padding: 96px 0;
  text-align: center;
}
.final-cta__inner { display: flex; flex-direction: column; align-items: center; }
.final-cta__hindi { font-size: 18px; margin-top: 16px; }
.final-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}
.final-cta__footnote {
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-hint);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__heading { font-size: 46px; }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .franchise-teaser__inner { grid-template-columns: 1fr; gap: 36px; }
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: 560px; }
  .hero__content { padding: 30px 26px 28px; border-radius: var(--radius-md); }
  .hero__dots { bottom: 16px; }
  .hero__heading { font-size: 36px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .stats-strip__item { padding: 12px 24px; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .contact-grid__form { padding: 24px; }
}
