/* ══════════════════════════════════════════════
   COFFEE FOR YOU — style.css
   Premium Youth Coffee Brand · Bangalore
══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #4b2e2b;
  --brown-dark: #321e1c;
  --beige: #f5e6d3;
  --beige-mid: #ecdcc5;
  --orange: #d2691e;
  --orange-lt: #e07a3a;
  --black: #0d0d0d;
  --white: #ffffff;
  --text-muted: #7a5a53;

  --font-head: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-serif: "Playfair Display", serif;

  --radius: 18px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 12px 40px rgba(75, 46, 43, 0.13);
  --shadow-lg: 0 24px 60px rgba(75, 46, 43, 0.22);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--beige);
  color: var(--brown-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* ── SECTION LABELS & HEADERS ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown-dark);
}

.section-header h2 em {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--orange);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 34px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(210, 105, 30, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}

.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--beige);
  color: var(--brown-dark);
  border-color: var(--beige);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(245, 230, 211, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 5%;
  box-shadow: 0 2px 20px rgba(75, 46, 43, 0.1);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 20% 60%, #e4c9a8 0%, var(--beige) 55%),
    radial-gradient(ellipse at 80% 20%, #f0d9bd 0%, transparent 60%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--orange);
  font-weight: 700;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--brown);
  opacity: 0.75;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ── Hero Visual (Cup) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

.cup-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(210, 105, 30, 0.15);
  animation: pulse-ring 4s ease-in-out infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}
.ring-2 {
  width: 310px;
  height: 310px;
  animation-delay: 0.8s;
}
.ring-3 {
  width: 420px;
  height: 420px;
  animation-delay: 1.6s;
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.04);
  }
}

.steam-wrap {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.steam {
  display: block;
  width: 6px;
  height: 30px;
  background: linear-gradient(to top, rgba(210, 105, 30, 0.5), transparent);
  border-radius: 50px;
  animation: steam-rise 2.4s ease-in-out infinite;
}

.s1 {
  animation-delay: 0s;
}
.s2 {
  animation-delay: 0.4s;
  height: 42px;
}
.s3 {
  animation-delay: 0.8s;
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scaleX(1.4);
  }
}

.hero-cup {
  position: relative;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.cup-body {
  width: 130px;
  height: 145px;
  background: linear-gradient(160deg, #5c3833 0%, #3a1f1c 100%);
  border-radius: 10px 10px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(58, 31, 28, 0.5),
    inset 0 2px 6px rgba(255, 255, 255, 0.08);
}

.cup-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72%;
  background: linear-gradient(180deg, #c47a3a 0%, #7a3e1f 100%);
  border-radius: 0 0 24px 24px;
  animation: liquid-wobble 4s ease-in-out infinite;
}

@keyframes liquid-wobble {
  0%,
  100% {
    height: 85%;
  }
  50% {
    height: 70%;
  }
}

.cup-foam {
  position: absolute;
  top: 28%;
  left: 0;
  right: 0;
  height: 14px;
  background: rgba(245, 230, 211, 0.35);
  border-radius: 50%;
  transform: scaleY(0.6);
}

.cup-logo-text {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(245, 230, 211, 0.65);
  letter-spacing: 0.08em;
  z-index: 2;
}

.cup-handle {
  position: absolute;
  right: -30px;
  top: 28px;
  width: 32px;
  height: 52px;
  border: 9px solid #4a2520;
  border-radius: 0 30px 30px 0;
  border-left: none;
}

.cup-saucer {
  width: 160px;
  height: 14px;
  background: linear-gradient(180deg, #5a3228 0%, #3a1f1c 100%);
  border-radius: 50%;
  margin: 10px auto 0;
  box-shadow: 0 8px 24px rgba(58, 31, 28, 0.4);
}

/* ── Scroll Hint ── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: bounce-dot 2s ease-in-out infinite;
}

@keyframes bounce-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label {
  display: block;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 24px;
  color: var(--brown-dark);
}

.about-text h2 em {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--orange);
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 18px;
}

.about-text .btn {
  margin-top: 12px;
}

.about-visuals {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  min-height: 340px;
}

.about-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

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

.card-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 6px;
}

.about-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-1 {
  grid-column: 1;
  grid-row: 1;
}
.card-2 {
  grid-column: 2;
  grid-row: 1;
}
.card-3 {
  grid-column: 1;
  grid-row: 2;
  background: var(--brown-dark);
  color: var(--beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
}

.about-badge {
  grid-column: 2;
  grid-row: 2;
  background: var(--brown-dark);
  color: var(--beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   MENU
══════════════════════════════════════════════ */
.menu {
  background: var(--beige);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  transition-delay: var(--delay, 0s);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.menu-icon {
  font-size: 2rem;
  line-height: 1;
}

.menu-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--beige);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1.5px solid var(--orange);
}

.menu-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.menu-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.menu-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown-dark);
}

.btn-order {
  background: var(--brown-dark);
  color: var(--beige);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--orange);
  transform: scale(1.04);
}

/* ══════════════════════════════════════════════
   SIGNATURE
══════════════════════════════════════════════ */
.signature {
  position: relative;
  background: var(--brown-dark);
  overflow: hidden;
  color: var(--beige);
}

.sig-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 60% 50%,
      rgba(210, 105, 30, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(210, 105, 30, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ── Signature Header ── */
.sig-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.sig-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  border: 1.5px solid rgba(210, 105, 30, 0.5);
  padding: 6px 18px;
  border-radius: 50px;
}

.sig-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--beige);
  line-height: 1.1;
  margin-bottom: 16px;
}

.sig-title em {
  color: var(--orange);
}

.sig-tagline {
  font-size: 0.95rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Signature Cards Grid ── */
.sig-cards-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.sig-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(245, 230, 211, 0.1);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.sig-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--orange));
  opacity: 0.7;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: opacity var(--transition);
}

.sig-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 230, 211, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.sig-card:hover::before {
  opacity: 1;
}

.sig-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sig-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.sig-card-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, var(--orange));
  border: 1.5px solid var(--accent, var(--orange));
  padding: 3px 10px;
  border-radius: 50px;
  opacity: 0.85;
}

.sig-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1.3;
}

.sig-card p {
  font-size: 0.85rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
  flex: 1;
}

.sig-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 230, 211, 0.1);
}

.sig-card-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--beige);
}

/* ── Signature Footer Strip ── */
.sig-footer-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 230, 211, 0.1);
  border-radius: var(--radius);
  padding: 28px 36px;
}

.sig-strip-detail {
  text-align: center;
}

.sig-strip-detail span {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--beige);
  margin-bottom: 4px;
}

.sig-strip-detail small {
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.sig-strip-divider {
  width: 1px;
  height: 36px;
  background: rgba(245, 230, 211, 0.15);
}

/* responsive: sig-cards */
@media (max-width: 1000px) {
  .sig-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .sig-cards-grid {
    grid-template-columns: 1fr;
  }
  .sig-footer-strip {
    gap: 18px;
    padding: 22px 20px;
  }
  .sig-strip-divider {
    width: 40px;
    height: 1px;
  }
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--beige);
  border: 1.5px solid transparent;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
}

.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: inline-block;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════════════ */
.instagram {
  background: var(--beige);
}

/* .insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
} */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.insta-post {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.p1 {
  background: linear-gradient(135deg, #4b2e2b, #7a4840);
}
.p2 {
  background: linear-gradient(135deg, #c47a3a, #d4913e);
}
.p3 {
  background: linear-gradient(135deg, #3a5e3a, #527a52);
}
.p4 {
  background: linear-gradient(135deg, #c4b050, #e0c960);
}
.p5 {
  background: linear-gradient(135deg, #4b2e2b, #3a1f1c);
}
.p6 {
  background: linear-gradient(135deg, #d2691e, #a84f12);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.4;
  transition: var(--transition);
}

.insta-post:hover .insta-overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.insta-cta {
  text-align: center;
}
.instagram-media {
  width: 100% !important;
  min-width: 100% !important;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  display: block;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 36px;
  color: var(--brown-dark);
}

.contact-info h2 em {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--orange);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brown-dark);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(75, 46, 43, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brown-dark);
  transition: border-color var(--transition);
  resize: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 90, 83, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-success {
  display: none;
  text-align: center;
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 500;
  padding-top: 4px;
}

.form-success.show {
  display: block;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--brown-dark);
  color: rgba(245, 230, 211, 0.8);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  margin-bottom: 14px;
  font-size: 0.975rem;
}

.footer-blurb {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 230, 211, 0.5);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 230, 211, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--beige);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 230, 211, 0.08);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--beige);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(245, 230, 211, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.35);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
  }

  .hero-sub {
    margin: 0 auto 40px;
  }
  .hero-visual {
    height: 320px;
  }
  .ring-3 {
    width: 320px;
    height: 320px;
  }
  .ring-2 {
    width: 240px;
    height: 240px;
  }

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

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 280px;
    background: var(--beige);
    padding: 90px 32px 40px;
    gap: 28px;
    box-shadow: -8px 0 40px rgba(75, 46, 43, 0.15);
    z-index: 100;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .hamburger {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .sig-details {
    gap: 18px;
  }
  .sig-divider {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-visuals {
    grid-template-columns: 1fr;
  }
  .about-badge {
    grid-column: 1;
    grid-row: auto;
  }
}
.menu-category {
  margin: 40px 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #4b2e2b;
}
