/* ==========================================================================
   UPPRADHAN CHAI — MASTER STYLESHEET (MULTI-PAGE ARCHITECTURE)
   ========================================================================== */

:root {
  /* Color Palette */
  --ink: #1B120D;
  --bg-dark: #F8EFDC;
  --bg-dark-2: #EFE1BE;
  --bg-dark-3: #E4D2A9;
  --paper: #F2E8D5;
  --paper-2: #EADFC8;
  --marigold: #E8A33D;
  --marigold-2: #F4C065;
  --clay: #A8432B;
  --clay-dark: #7F2B17;
  --steam: #2A1B10;
  --line: rgba(27, 18, 13, 0.12);
  --line-strong: rgba(27, 18, 13, 0.22);
  --shadow: 0 14px 36px rgba(60, 40, 20, 0.14);
  --shadow-sm: 0 4px 14px rgba(60, 40, 20, 0.08);

  /* Typography */
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--steam);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--clay);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 8px;
  font-weight: 700;
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.sec-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 10px;
}

.sec-head p {
  color: rgba(27, 18, 13, 0.68);
  font-size: 1.05rem;
}

.hl {
  color: var(--clay);
  font-style: italic;
}


/* ---------- BUTTONS ---------- */
.cta-pill, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--marigold), var(--clay));
  color: #FFFDF8;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(168, 67, 43, 0.28);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-pill:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 67, 43, 0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(27, 18, 13, 0.05);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--clay);
  background: rgba(168, 67, 43, 0.08);
  color: var(--clay);
  transform: translateY(-2px);
}

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */

/*
   Mukhiya Chai style glass navbar.
   Only navbar styles are changed.
*/

.mc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.32s ease, background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

/* Desktop only — navbar thoda upar */
@media (min-width: 769px) {
  .mc-header {
    padding: 6px 0;
  }
}

/* Hide the navigation while reading down, and bring it back on an upward scroll. */
.mc-header.nav-hidden {
  transform: translateY(calc(-100% - 18px));
  pointer-events: none;
}

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

  width: calc(100% - 40px);
  max-width: 1240px;
  min-height: 68px;

  padding: 9px 12px 9px 18px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  background: rgba(27, 18, 13, 0.48);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  box-shadow: 0 10px 35px rgba(27, 18, 13, 0.16);

  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mc-header.scrolled {
  padding: 10px 0;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

.mc-header.scrolled .mc-navbar {
  background: rgba(27, 18, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 35px rgba(27, 18, 13, 0.25);
}

/* Logo */
.mc-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;

  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mc-logo img.mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(232, 163, 61, 0.35);
}

.mc-logo span {
  color: #fff;
}

.mc-logo b {
  color: var(--marigold);
}

/* Desktop navigation */
.mc-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;
  gap: clamp(14px, 2.2vw, 30px);

  margin: 0 20px;
  padding: 0;
}

.mc-nav-links li {
  list-style: none;
}

.mc-nav-links a {
  position: relative;
  display: inline-block;

  padding: 8px 2px;

  color: rgba(255, 255, 255, 0.88) !important;

  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  white-space: nowrap;

  transition: color 0.25s ease;
}

.mc-nav-links a::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: 1px;

  width: 100%;
  height: 2px;

  border-radius: 20px;
  background: var(--marigold);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.mc-nav-links a:hover,
.mc-nav-links a.active {
  color: #fff !important;
}

.mc-nav-links a:hover::after,
.mc-nav-links a.active::after {
  transform: scaleX(1);
}

/* Franchise button */
.mc-header-cta {
  flex-shrink: 0;
}

.mc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 20px;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--marigold), var(--clay));
  color: #fff !important;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  white-space: nowrap;

  box-shadow: 0 8px 22px rgba(232, 163, 61, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mc-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 67, 43, 0.35);
}

/* Mobile burger */
.mc-burger {
  display: none;

  width: 45px;
  height: 45px;

  padding: 0;
  margin-left: auto;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.08);

  cursor: pointer;
  z-index: 1100;
}

.mc-burger span {
  display: block;

  width: 21px;
  height: 2px;

  border-radius: 10px;
  background: #fff;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mc-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mc-burger.open span:nth-child(2) {
  opacity: 0;
}

.mc-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mc-mobile-menu {
  position: fixed;

  top: 90px;
  left: 14px;
  right: 14px;

  z-index: 999;

  display: block;

  padding: 10px;

  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(27, 18, 13, 0.95);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-12px);

  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.mc-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mc-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mc-mobile-menu a {
  display: block;

  padding: 14px 15px;
  border-radius: 10px;

  color: rgba(255, 255, 255, 0.9) !important;

  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  text-decoration: none;

  transition: background 0.2s ease, color 0.2s ease;
}

.mc-mobile-menu a:hover,
.mc-mobile-menu a.active {
  color: var(--marigold) !important;
  background: rgba(232, 163, 61, 0.10);
}

.mc-mobile-menu .mc-mobile-cta {
  margin-top: 8px;
  text-align: center;

  color: #fff !important;

  background: linear-gradient(135deg, var(--marigold), var(--clay));
}

.mc-mobile-menu .mc-mobile-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--marigold), var(--clay));
}


/* ---------- NAVBAR RESPONSIVE ---------- */

@media (max-width: 1050px) {
  .mc-navbar {
    width: calc(100% - 30px);
    gap: 14px;
    padding-left: 14px;
  }

  .mc-nav-links {
    gap: 14px;
    margin: 0 10px;
  }

  .mc-nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .mc-cta {
    padding: 0 15px;
    font-size: 0.63rem;
  }
}

@media (max-width: 900px) {
  .mc-header {
    padding: 12px 0;
  }

  .mc-navbar {
    width: calc(100% - 28px);
    min-height: 64px;
    padding: 8px 10px 8px 13px;
    border-radius: 15px;
  }

  .mc-logo {
    font-size: 1rem;
  }

  .mc-logo img.mark {
    width: 43px;
    height: 43px;
  }

  .mc-nav-links,
  .mc-header-cta {
    display: none;
  }

  .mc-burger {
    display: flex;
  }

  .mc-mobile-menu {
    top: 84px;
  }
}

@media (max-width: 480px) {
  .mc-header {
    padding: 9px 0;
  }

  .mc-navbar {
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 10px;
    border-radius: 13px;
  }

  .mc-logo {
    font-size: 0.9rem;
    gap: 7px;
  }

  .mc-logo img.mark {
    width: 38px;
    height: 38px;
  }

  .mc-burger {
    width: 41px;
    height: 41px;
  }

  .mc-mobile-menu {
    top: 75px;
    left: 10px;
    right: 10px;
    border-radius: 14px;
  }

  .mc-mobile-menu a {
    padding: 13px 14px;
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .mc-logo span {
    font-size: 0.84rem;
  }

  .mc-logo img.mark {
    width: 35px;
    height: 35px;
  }

  .mc-burger {
    width: 39px;
    height: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-header,
  .mc-navbar,
  .mc-nav-links a,
  .mc-nav-links a::after,
  .mc-cta,
  .mc-burger span,
  .mc-mobile-menu,
  .mc-mobile-menu a {
    transition: none !important;
  }
}

/* ---------- HERO — POSTER ==================== */
.hero-poster {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #f5ead0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e9d4a0;
}

.poster-wrap::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background: url('hero-poster-clean.png') center / cover no-repeat;
  filter: blur(18px) saturate(0.94) brightness(0.78);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(38, 24, 12, 0.16) 0%, transparent 24%, transparent 70%, rgba(38, 24, 12, 0.22) 100%);
}

.poster-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  /* Keep the high-resolution asset unfiltered so it stays sharp on every screen. */
  filter: none;
  transform: none;
}

/* The supplied poster is used as-is: no generated lettering, blur, or visual overlays. */
.poster-wrap::before,
.poster-wrap::after {
  display: none;
}

.poster-img {
  z-index: 0;
}

/* The poster file has transparent canvas space above and below the artwork.
   On portrait screens, crop that canvas so the artwork reaches the viewport
   edges at every phone or tablet size. */
@media (max-aspect-ratio: 1 / 1) {
  .poster-img {
    transform: scale(1.3);
    transform-origin: center;
  }
}

.poster-copy {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 50%;
  width: min(100%, calc(100svh * 1.5));
  height: 100svh;
  z-index: 3;
  pointer-events: none;
  color: #f3ce78;
  text-align: center;
  transform: translateX(-50%);
}

.poster-title,
.poster-tagline,
.poster-tagline-en,
.poster-cup-name,
.poster-ribbon-text {
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.poster-title {
  top: 24%;
  width: 48%;
  font-family: "Tiro Devanagari Marathi", "Nirmala UI", serif;
  font-size: clamp(2.6rem, 5.25vw, 5.8rem);
  font-weight: 900;
  line-height: 0.76;
  letter-spacing: 0;
  color: #e7bd63;
  text-shadow: 0 2px 0 #71431a, 0 4px 7px rgba(37, 19, 7, 0.68), 0 -1px 0 rgba(255, 242, 184, 0.72);
}

.poster-tagline {
  top: 41.8%;
  width: 55%;
  font-family: "Tiro Devanagari Marathi", "Nirmala UI", serif;
  font-size: clamp(0.68rem, 1.45vw, 1.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #4c2518;
  text-shadow: 0 1px 0 rgba(255, 232, 169, 0.4);
}

.poster-tagline-en {
  top: 46.4%;
  width: 55%;
  font-family: Georgia, serif;
  font-size: clamp(0.55rem, 1.15vw, 1.05rem);
  font-style: italic;
  font-weight: 700;
  color: #51271c;
}

.poster-cup-name {
  top: 72.2%;
  width: 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: Georgia, serif;
  font-size: clamp(0.4rem, 0.78vw, 0.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #f3d078;
  text-shadow: 0 1px 2px rgba(31, 8, 5, 0.9);
}

.poster-cup-name strong {
  font-family: "Tiro Devanagari Marathi", "Nirmala UI", serif;
  font-size: 1.3em;
  line-height: 1;
}

.poster-ribbon-text {
  top: 91.6%;
  width: 48%;
  font-family: "Tiro Devanagari Marathi", "Nirmala UI", serif;
  font-size: clamp(1rem, 2.25vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  color: #f2d486;
  text-shadow: 0 2px 2px rgba(23, 7, 4, 0.86);
}

/* Steam overlay — positioned over the cup (bottom-center of image ~55% from left, ~55% from top) */
.poster-steam {
  position: absolute;
  /* Cup is roughly at bottom-center of poster */
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 200px;
  height: 260px;
  pointer-events: none;
  z-index: 4;
}

@media (max-width: 640px) {
  .poster-img {
    object-fit: cover;
    object-position: 50% center;
  }

  .poster-copy {
    width: 100%;
    height: 100%;
  }

  .poster-title {
    width: 95%;
    top: 24%;
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .poster-tagline {
    top: 41.8%;
    width: 90%;
    font-size: clamp(0.72rem, 3.7vw, 0.95rem);
  }

  .poster-tagline-en {
    top: 46.4%;
    width: 92%;
    font-size: clamp(0.52rem, 2.75vw, 0.7rem);
  }

  .poster-cup-name {
    top: 72.2%;
    width: 38%;
    font-size: clamp(0.45rem, 3vw, 0.64rem);
  }

  .poster-ribbon-text {
    top: 91.6%;
    width: 94%;
    font-size: clamp(0.95rem, 5.8vw, 1.38rem);
  }

  .poster-steam {
    width: 150px;
    height: 195px;
  }
}

.poster-steam-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Steam wisp animations */
.ps1, .ps2, .ps3, .ps4 {
  transform-origin: 50% 100%;
  animation: posterSteam 4s cubic-bezier(0.4,0,0.2,1) infinite;
}
.ps1 { animation-duration: 4.0s; animation-delay: 0s; }
.ps2 { animation-duration: 4.8s; animation-delay: 0.8s; }
.ps3 { animation-duration: 3.6s; animation-delay: 1.6s; }
.ps4 { animation-duration: 5.2s; animation-delay: 2.4s; }

@keyframes posterSteam {
  0%   { transform: translateY(0) scaleX(0.85) skewX(0deg); opacity: 0; }
  15%  { opacity: 0.85; }
  65%  { transform: translateY(-36px) scaleX(1.18) skewX(5deg); opacity: 0.6; }
  100% { transform: translateY(-75px) scaleX(1.35) skewX(-6deg); opacity: 0; }
}

/* ---------- HERO (WITH CINEMATIC LOGO BACKGROUND & OVERLAY) ---------- */
.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 70px;
  background: url('hero-bg.jpg') no-repeat center right / cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 239, 220, 0.95) 0%,
    rgba(248, 239, 220, 0.88) 45%,
    rgba(27, 18, 13, 0.45) 85%,
    rgba(27, 18, 13, 0.25) 100%
  );
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  line-height: 1.06;
  margin-bottom: 22px;
}

.hero p.lede {
  font-size: 1.15rem;
  color: rgba(27, 18, 13, 0.75);
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- CHAI GLASS SCENE & REALISTIC MOVING STEAM ---------- */
.kulhad-scene, .chai-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.chai-glass-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: glassFloat 4s ease-in-out infinite alternate;
}

@keyframes glassFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0.4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.chai-glass-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 32px rgba(45, 18, 8, 0.38));
  user-select: none;
}

.glass-base-shadow {
  position: absolute;
  bottom: -15px;
  width: 230px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(35, 14, 6, 0.45), rgba(35, 14, 6, 0.15) 60%, transparent 75%);
  filter: blur(8px);
  z-index: -1;
}

/* Moving Steam Overlay on top of Chai Glass */
.steam-container {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 220px;
  pointer-events: none;
  z-index: 3;
}

.moving-steam {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.steam-wisp-glass {
  transform-origin: 50% 100%;
  animation: steamRiseGlass 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.steam-wisp-glass.s1 {
  animation-duration: 4.2s;
  animation-delay: 0s;
}
.steam-wisp-glass.s2 {
  animation-duration: 4.8s;
  animation-delay: 0.9s;
}
.steam-wisp-glass.s3 {
  animation-duration: 3.8s;
  animation-delay: 1.8s;
}
.steam-wisp-glass.s4 {
  animation-duration: 5.2s;
  animation-delay: 2.6s;
}

@keyframes steamRiseGlass {
  0% {
    transform: translateY(0) scaleY(0.7) scaleX(0.8) skewX(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  60% {
    transform: translateY(-30px) scaleY(1.15) scaleX(1.2) skewX(6deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-65px) scaleY(1.35) scaleX(1.35) skewX(-7deg);
    opacity: 0;
  }
}

.glow-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.35), rgba(168, 67, 43, 0.15) 55%, transparent 75%);
  filter: blur(16px);
  z-index: 0;
}

.stat-chip {
  position: absolute;
  background: rgba(255, 251, 240, 0.92);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(60, 40, 20, 0.22);
}

.stat-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--clay);
  line-height: 1.1;
}

.stat-chip span {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.7);
  font-weight: 600;
}

.stat-chip.one {
  top: 40px;
  left: 0;
  right: auto;
}

.stat-chip.two {
  bottom: 40px;
  right: 0;
}

/* ---------- INNER PAGE HERO HEADER ---------- */
.page-hero {
  padding-top: 140px;
  padding-bottom: 50px;
  background: var(--bg-dark-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(27, 18, 13, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(27, 18, 13, 0.55);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--clay);
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--bg-dark-2);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--clay);
  font-weight: 800;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(27, 18, 13, 0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- SPECIALITIES & PREVIEWS ---------- */
.specialities {
  padding: 100px 0;
  background: var(--bg-dark);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #FFFDF8;
}

.spec-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 163, 61, 0.2), rgba(168, 67, 43, 0.2));
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.spec-card h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.9rem;
  color: rgba(27, 18, 13, 0.65);
  line-height: 1.55;
  flex-grow: 1;
}

.spec-card .price {
  margin-top: 14px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--clay);
  font-family: var(--font-heading);
}

/* Photo-style cards */
.spec-card.spec-photo {
  position: relative;
  height: 280px;
  padding: 0;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
  border-radius: 20px;
}

.spec-card.spec-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(248, 220, 150, 0.7), 0 8px 24px rgba(232, 163, 61, 0.35);
  background-color: transparent;
}

.spec-card.spec-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  border-radius: 20px;
}

.spec-photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 20px;
}

.spec-photo-info h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.spec-photo-info .price {
  color: #F4C065;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-top: 0;
}

/* ---------- MENU PAGE ---------- */
.menu-page-sec {
  padding: 80px 0 100px;
}

.menu-search-box {
  max-width: 440px;
  margin: 0 auto 34px;
  position: relative;
}

.menu-search-box input {
  width: 100%;
  padding: 13px 20px 13px 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: #FFFDF8;
  outline: none;
  font-size: 0.95rem;
}

.menu-search-box .icon-search {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(27, 18, 13, 0.45);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tab-btn {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(27, 18, 13, 0.15);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.25s ease;
  color: var(--ink);
  font-family: var(--font-body);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 48px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1.5px dashed rgba(27, 18, 13, 0.2);
}

.menu-item.hidden {
  display: none !important;
}

.menu-item .name {
  font-weight: 700;
  font-size: 1.05rem;
}

.menu-item .desc {
  display: block;
  font-size: 0.85rem;
  color: rgba(27, 18, 13, 0.6);
  margin-top: 3px;
}

.menu-item .price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--clay);
  white-space: nowrap;
}

/* ---------- FRANCHISE PAGE & ROI CALCULATOR ---------- */
.franchise-page-sec {
  padding: 80px 0 100px;
}

.fr-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.fr-top p {
  color: rgba(27, 18, 13, 0.7);
  line-height: 1.7;
  margin: 18px 0 26px;
  font-size: 1.05rem;
}

.fr-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.fr-badge {
  background: var(--bg-dark-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.fr-badge strong {
  color: var(--clay);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.fr-badge span {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.6);
}

.fr-visual {
  height: 340px;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(232, 163, 61, 0.2), rgba(168, 67, 43, 0.3)), var(--bg-dark-2);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.steps-title {
  text-align: center;
  margin-bottom: 36px;
}
.steps-title h3 {
  font-size: 1.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.step {
  background: var(--bg-dark-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  background: #FFFDF8;
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marigold), var(--clay));
  color: #FFFDF8;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading);
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.6);
}

/* Calculator Box */
.calc-box {
  background: #FFFDF8;
  border: 1.5px solid var(--line-strong);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

.calc-field {
  margin-bottom: 22px;
}

.calc-field label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.calc-field label span.val {
  color: var(--clay);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.calc-btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-btn {
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg-dark);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: center;
}

.calc-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--bg-dark-2);
  accent-color: var(--clay);
}

.calc-results {
  background: var(--bg-dark-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.res-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.res-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

.res-val.highlight {
  font-size: 1.7rem;
  color: var(--clay);
}

/* ---------- ABOUT PAGE ---------- */
.about-page-sec {
  padding: 80px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.about-visual-card {
  border-radius: 26px;
  background: linear-gradient(160deg, #D9C7A0, #C7AE7B);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(168, 67, 43, 0.15);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-item strong {
  display: block;
  font-size: 0.95rem;
}
.pillar-item span {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.6);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-page-sec {
  padding: 80px 0 100px;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}

.gal-item {
  border-radius: 18px;
  background: linear-gradient(150deg, var(--bg-dark-2), rgba(232, 163, 61, 0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  padding: 20px;
  text-align: center;
}

.gal-item:hover {
  transform: scale(1.03);
  filter: brightness(1.04);
  background: #FFFDF8;
}

.gal-item span.cap {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 6px;
}

.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* Lightbox Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 18, 13, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-dark);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-dark-2);
  border: none;
  cursor: pointer;
}

/* ---------- CONTACT PAGE & FORM ---------- */
.contact-page-sec {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  background: var(--bg-dark-2);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: 16px;
}

.info-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(232, 163, 61, 0.2);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  margin-bottom: 2px;
}

.info-row span, .info-row a {
  font-size: 0.88rem;
  color: rgba(27, 18, 13, 0.65);
}

.map-box {
  margin-top: 26px;
  height: 150px;
  border-radius: 16px;
  background: var(--bg-dark-2);
  border: 1px dashed var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(27, 18, 13, 0.6);
  text-align: center;
  padding: 20px;
}

form.franchise-form {
  background: var(--bg-dark-2);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.7);
  font-weight: 700;
}

input, select, textarea {
  background: #FFFDF8;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--steam);
  font-size: 0.92rem;
  outline: none;
  font-family: var(--font-body);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--clay);
  background: #FFF;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--marigold), var(--clay));
  color: #FFFDF8;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(168, 67, 43, 0.3);
  transition: transform 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(27, 18, 13, 0.5);
  margin-top: 10px;
  text-align: center;
}

/* ---------- TESTIMONIALS SLIDER ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-dark-2);
  text-align: center;
}

.t-track {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.t-slide .stars {
  color: var(--clay);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.t-slide p {
  font-size: 1.22rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
  color: var(--ink);
}

.t-slide .who {
  font-weight: 700;
  font-family: var(--font-heading);
}

.t-slide .role {
  font-size: 0.82rem;
  color: rgba(27, 18, 13, 0.6);
}

.t-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 18, 13, 0.25);
  cursor: pointer;
  transition: 0.25s ease;
}

.t-dot.active {
  background: var(--clay);
  width: 22px;
  border-radius: 5px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-dark-2);
  padding: 60px 0 26px;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer logo compact style */
footer .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 12px;
}

footer .logo img.mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(232, 163, 61, 0.25);
  flex-shrink: 0;
}


.foot-grid h5 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  margin-bottom: 16px;
}

.foot-grid li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(27, 18, 13, 0.65);
}

.foot-grid li a:hover {
  color: var(--clay);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.7);
}

.social-row a:hover {
  background: var(--clay);
  color: #FFF;
  border-color: var(--clay);
}

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(27, 18, 13, 0.5);
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 980px) {
  .mc-header {
    padding: 12px 0;
  }

  .mc-navbar {
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 6px 10px 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-links,
  .mc-nav-links {
    display: none !important;
  }

  /* Center the BE A FRANCHISE button on mobile navbar only */
  .mc-header .mc-header-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .mc-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .burger,
  .mc-burger {
    display: flex !important;
    margin-left: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .mc-logo {
    font-size: 1.05rem;
    gap: 7px;
  }

  .mc-logo img.mark {
    width: 40px;
    height: 40px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .fr-top, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .spec-grid, .steps, .form-row, .foot-grid, .fr-badges, .about-pillars {
    grid-template-columns: 1fr;
  }
  .calc-btn-group {
    grid-template-columns: 1fr;
  }
  .calc-box {
    padding: 24px 18px;
  }
  .stat-chip.one {
    left: 10px;
    top: 20px;
  }
  .stat-chip.two {
    right: 10px;
    bottom: 20px;
  }
}

@media (max-width: 520px) {
  .mc-navbar {
    width: calc(100% - 16px);
    padding: 5px 8px;
    min-height: 52px;
  }
  .mc-logo {
    font-size: 0.95rem;
    gap: 6px;
  }
  .mc-logo img.mark {
    width: 36px;
    height: 36px;
  }
  .mc-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }
  .mc-burger {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .mc-logo span {
    font-size: 0.88rem;
  }
  .mc-cta {
    padding: 0 8px;
    font-size: 0.55rem;
  }
}

/* ---------- PHONE POLISH ---------- */
@media (max-width: 640px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mc-header {
    padding: 8px 0;
  }

  .mc-navbar {
    width: calc(100% - 16px);
    min-height: 54px;
    padding: 6px 9px 6px 11px;
    border-radius: 14px;
  }

  .mc-mobile-menu {
    top: 72px;
    left: 8px;
    right: 8px;
  }

  /* Full-screen mobile hero: crop the sides and keep the artwork prominently zoomed. */
  .hero-poster {
    min-height: 110vh;
    min-height: 110svh;
    padding-top: 0;
    display: flex;
  }

  .poster-wrap {
    height: 110vh;
    height: 99svh;
    aspect-ratio: auto;
  }

  .poster-img {
    position: absolute;
    inset: 0;
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .stats-strip {
    padding: 42px 0;
  }

  .stats-grid {
    gap: 24px 12px;
  }

  .specialities,
  .testimonials {
    padding: 64px 0;
  }

  .sec-head {
    margin-bottom: 32px;
  }

  .sec-head p {
    font-size: 0.96rem;
  }

  .spec-card {
    padding: 22px 18px;
  }

  .t-track {
    min-height: 240px;
  }

  .t-slide p {
    font-size: 1rem;
  }

  footer {
    padding: 46px 0 22px;
  }
}

@media (max-width: 430px) {
  .mc-header .mc-header-cta {
    display: none !important;
  }

  .mc-logo {
    font-size: 0.93rem;
  }

  .mc-logo img.mark {
    width: 38px;
    height: 38px;
  }

  .mc-burger {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================
   GLOBAL FLOATING ACTION BUTTONS (WA & IG)
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3000;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.float-btn.float-wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.float-btn.float-wa:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

.float-btn.float-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 24px rgba(214, 36, 159, 0.45);
}

.float-btn.float-ig:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 32px rgba(214, 36, 159, 0.7);
}

.float-btn svg {
  display: block;
}

@media (max-width: 600px) {
  .floating-actions {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn.float-wa svg {
    width: 25px;
    height: 25px;
  }
  .float-btn.float-ig svg {
    width: 23px;
    height: 23px;
  }
}

/* ==========================================
   CONNECT WITH US & FAQ SECTION (contact.html)
   ========================================== */
.connect-faq-sec {
  padding: 40px 0 100px;
}

.sec-title-orange {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #E85D19;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.connect-sub-sec {
  text-align: center;
  margin-bottom: 60px;
}

.social-circle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.social-circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(27, 18, 13, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1B120D;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.08);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.social-circle-btn:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: #E85D19;
  color: #E85D19;
  box-shadow: 0 8px 22px rgba(232, 93, 25, 0.22);
}

.social-circle-btn svg {
  display: block;
}

.social-circle-chat {
  color: #8B5CF6;
}

.social-circle-chat:hover {
  color: #7C3AED;
  border-color: #8B5CF6;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.25);
}

.faq-sub-sec {
  max-width: 840px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  background: #FFF9F5;
  border: 1px solid #F3E3D5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.03);
}

.faq-item:hover {
  border-color: #EAC4A8;
  box-shadow: 0 4px 16px rgba(232, 93, 25, 0.08);
}

.faq-item.active {
  border-color: #E85D19;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(232, 93, 25, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #E85D19;
  transition: color 0.2s ease;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 93, 25, 0.1);
  color: #E85D19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #E85D19;
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
  padding: 0 24px 22px 24px;
}

.faq-answer p {
  color: rgba(27, 18, 13, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .sec-title-orange {
    font-size: 1.7rem;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.98rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }
  .social-circle-btn {
    width: 46px;
    height: 46px;
  }
}

/* Accessibility & Semantic SEO utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
