:root {
  --bg: #f7f1ec;
  --ink: #2b1b12;
  --muted: #6f5849;
  --accent: #d86b42;
  --accent-2: #0f7a6c;
  --cream: #fff6ef;
  --shadow: 0 24px 60px rgba(43, 27, 18, 0.18);
  --radius: 24px;
  --glass: rgba(255, 246, 239, 0.7);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8f2 0%, #f3e6dc 45%, #ead8cc 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/></filter><rect width="160" height="160" filter="url(%23n)" opacity="0.09"/></svg>');
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 32px 6vw 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: "Cormorant Garamond", serif;
  
}

.logo-mark {
  font-size: 32px;
  letter-spacing: 6px;
  font-weight: 700;
}

.logo-sub {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 14px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(216, 107, 66, 0.35);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid rgba(43, 27, 18, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 27, 18, 0.2);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--accent-2);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: grid;
  gap: 4px;
}

.hero-meta strong {
  font-size: 20px;
}

.hero-visual {
  position: relative;
}

.card-stack {
  display: grid;
  gap: 16px;
}

.photo {
  height: 220px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.floating-pill {
  position: absolute;
  bottom: -18px;
  right: 10%;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
}

.section {
  padding: 90px 6vw;
}

.section-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

.highlight {
  background: var(--cream);
  border-radius: 48px;
  margin: 0 3vw;
  box-shadow: var(--shadow);
}

.presence-grid,
.class-grid,
.menu-grid,
.offer-grid,
.review-grid,
.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.presence-card,
.offer-card,
.review-card,
.contact-card,
.order-box {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(43, 27, 18, 0.08);
}

.presence-card h3,
.offer-card h3,
.review-card h3,
.contact-card h3,
.order-box h3 {
  margin-bottom: 10px;
}

.class-card,
.menu-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 27, 18, 0.08);
  display: flex;
  flex-direction: column;
}

.class-card img,
.menu-card img {
  height: 180px;
  object-fit: cover;
}

.class-body,
.menu-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(216, 107, 66, 0.1);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.menu-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(43, 27, 18, 0.15);
  background: #fff;
  cursor: pointer;
}

.filter.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 122, 108, 0.1);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 600;
}

.review-form {
  margin-top: 30px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(43, 27, 18, 0.08);
}

.review-form form {
  display: grid;
  gap: 12px;
}

.review-form input,
.review-form select,
.review-form textarea,
.modal input,
.modal select,
.modal textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(43, 27, 18, 0.15);
  font-family: inherit;
}

.order-panel {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.toggle-group {
  display: flex;
  gap: 12px;
  margin: 12px 0 20px;
}

.toggle {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(43, 27, 18, 0.2);
  cursor: pointer;
}

.toggle.active {
  background: var(--accent-2);
  color: #fff;
  border-color: transparent;
}

.summary {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.summary .total {
  font-weight: 700;
  font-size: 18px;
}

.bill {
  background: #20140d;
  color: #fff;
}

.bill .total {
  font-size: 20px;
}

.footer {
  padding: 50px 6vw;
  background: #1a110c;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(25, 17, 12, 0.6);
  z-index: 50;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  width: min(480px, 95vw);
  position: relative;
  display: grid;
  gap: 14px;
}

.close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-summary {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.modal-note {
  font-size: 13px;
  color: var(--accent-2);
}

.tiny {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .highlight {
    margin: 0;
    border-radius: 0;
  }
}

.btn.whatsapp {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 12px 26px rgba(30, 190, 93, 0.35);
}

.btn.upi {
  background: #0a63c8;
  color: #fff;
  box-shadow: 0 12px 26px rgba(10, 99, 200, 0.35);
}

.cart-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(43, 27, 18, 0.08);
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(43, 27, 18, 0.2);
  margin-bottom: 6px;
}
