/* ==========================================================================
   Vijayrath Premium Delights — "modern mithai-shop" design system
   Palette from the brand logo (maroon / gold / cream) and the spice shelf.
   Signature: toran (gold hanging triangles) on every maroon band + arch
   frames echoing the arched wordmark.
   ========================================================================== */

:root {
  --maroon-900: #421509;
  --maroon-700: #6b2a16;
  --maroon-600: #84351b;
  --gold-500: #d9a441;
  --gold-700: #a16a14;
  --gold-200: #f0ddb4;
  --cream-100: #f9efdc;
  --cream-50: #fffbf2;
  --ink-900: #2b1710;
  --ink-600: #71564a;
  --chili: #b8431c;
  --line: rgba(107, 42, 22, 0.16);
  --shadow: 0 20px 50px rgba(66, 21, 9, 0.14);
  --shadow-soft: 0 10px 26px rgba(66, 21, 9, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-display: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-accent: "Kalam", "Comic Sans MS", cursive;
  --toran: conic-gradient(from -45deg at 50% 100%, var(--gold-500) 90deg, transparent 90.5deg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-100);
  font-size: 16.5px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

::selection {
  background: var(--gold-500);
  color: var(--maroon-900);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--maroon-700);
  color: var(--cream-50);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  color: var(--maroon-700);
  line-height: 1.06;
  margin: 0;
  font-weight: 400;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.3rem);
  letter-spacing: -0.01em;
}

h1 .accent {
  display: block;
  color: var(--gold-700);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
}

.lead {
  color: var(--ink-600);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.7;
  margin: 1.3rem 0 0;
  max-width: 56ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 8px;
  background: var(--toran);
  background-size: 13px 8px;
  background-repeat: repeat-x;
  flex: none;
}

.hero-tagline {
  font-family: var(--font-accent);
  color: var(--gold-700);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 0.9rem;
  transform: rotate(-1.2deg);
  transform-origin: left bottom;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--maroon-700);
  color: var(--cream-50);
  box-shadow: 0 8px 20px rgba(66, 21, 9, 0.22);
}

.btn-primary:hover {
  background: var(--maroon-600);
  box-shadow: 0 12px 26px rgba(66, 21, 9, 0.28);
}

.btn-secondary {
  background: var(--gold-500);
  color: var(--maroon-900);
  box-shadow: 0 8px 20px rgba(161, 106, 20, 0.24);
}

.btn-secondary:hover {
  background: #e2b155;
}

.btn-ghost {
  border-color: rgba(107, 42, 22, 0.36);
  color: var(--maroon-700);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--maroon-700);
  background: rgba(107, 42, 22, 0.05);
}

.section-dark .btn-ghost,
.site-footer .btn-ghost {
  border-color: rgba(255, 251, 242, 0.4);
  color: var(--cream-50);
}

.section-dark .btn-ghost:hover {
  border-color: var(--cream-50);
  background: rgba(255, 251, 242, 0.08);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 239, 220, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(66, 21, 9, 0.08);
}

.top-strip {
  position: relative;
  background: var(--maroon-900);
  color: var(--gold-200);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 30px;
  align-items: center;
}

.top-strip .tagline-script {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-500);
  text-transform: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(170px, 16vw, 250px);
  max-height: 70px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(107, 42, 22, 0.3);
  border-radius: 999px;
  background: var(--cream-50);
  color: var(--maroon-700);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.35rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--ink-900);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold-500);
  transition: width 220ms ease, left 220ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--maroon-700);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  left: 0;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Toran band edge — gold triangles hanging from maroon doorways
   -------------------------------------------------------------------------- */

.section-dark,
.stats-band,
.marquee,
.menu-download-card,
.site-footer {
  position: relative;
}

.section-dark::before,
.stats-band::before,
.marquee::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 11px;
  background-image: var(--toran);
  background-size: 18px 11px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Hero (homepage)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 82% 12%, rgba(217, 164, 65, 0.16), transparent 70%),
    radial-gradient(rgba(217, 164, 65, 0.14) 1px, transparent 1.6px);
  background-color: var(--cream-100);
  background-size: auto, 26px 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 5.5vw, 5rem) 0 clamp(4rem, 6vw, 5.5rem);
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 600px;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: clamp(140px, 16vw, 220px) clamp(140px, 16vw, 220px) var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-50);
  border: 6px solid var(--cream-50);
  outline: 1.5px solid rgba(217, 164, 65, 0.7);
  outline-offset: 5px;
  height: clamp(420px, 42vw, 560px);
}

.hero-slider-track,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  margin: 0;
  background: var(--cream-50);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-note {
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.8rem);
  bottom: clamp(1rem, 2.4vw, 1.8rem);
  width: min(300px, 78%);
  padding: 1.05rem 1.2rem;
  background: rgba(255, 251, 242, 0.95);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-soft);
}

.heritage-note strong {
  display: block;
  color: var(--maroon-700);
  font-size: 1.5rem;
  line-height: 1.1;
  font-family: var(--font-display);
}

.hero-product-strip {
  position: absolute;
  right: clamp(0.5rem, 2vw, 1.5rem);
  bottom: -30px;
  display: grid;
  grid-template-columns: repeat(3, 78px);
  gap: 0.7rem;
  z-index: 2;
}

.hero-thumb {
  width: 78px;
  aspect-ratio: 1;
  border: 3px solid var(--cream-50);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(66, 21, 9, 0.2);
  background: var(--cream-50);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.hero-product-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Marquee — product names procession
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  background: var(--maroon-700);
  color: var(--cream-100);
  padding: 1.05rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "\2726";
  margin-left: 2.6rem;
  color: var(--gold-500);
  font-size: 0.85em;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: clamp(4.2rem, 8vw, 7.2rem) 0;
}

.section.compact {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}

.section-alt {
  background: var(--cream-50);
  border-block: 1px solid rgba(217, 164, 65, 0.24);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(70% 100% at 15% 0%, rgba(217, 164, 65, 0.12), transparent 60%),
    var(--maroon-700);
  color: var(--cream-50);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream-100);
}

.section-dark .lead,
.section-dark p {
  color: rgba(249, 239, 220, 0.85);
}

.section-dark .eyebrow {
  color: var(--gold-500);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-600);
}

.section-dark .section-header p {
  color: rgba(249, 239, 220, 0.85);
}

.section-header.compact {
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats-band {
  background: var(--maroon-700);
  color: var(--cream-50);
  padding: clamp(2.6rem, 5vw, 3.6rem) 0;
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stats-band .stat {
  position: relative;
  text-align: center;
  padding: 0.4rem 1rem;
}

.stats-band .stat + .stat::before {
  content: "\2726";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 0.9rem;
}

.stats-band .stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1;
  color: var(--gold-500);
}

.stats-band .stat span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(249, 239, 220, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-band .section-header h2 {
  color: var(--cream-100);
}

.stats-band .section-header p {
  color: rgba(249, 239, 220, 0.85);
}

.stats-band .eyebrow {
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.product-grid,
.value-grid,
.outlet-grid {
  display: grid;
  gap: 1.4rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.gallery-card {
  background: var(--cream-50);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0.8rem 0.8rem 0;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.page-home .product-card {
  border-radius: clamp(90px, 9vw, 130px) clamp(90px, 9vw, 130px) var(--radius) var(--radius);
}

.product-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-500);
}

.product-card figure,
.gallery-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.page-home .product-card figure {
  border-radius: clamp(84px, 8.6vw, 124px) clamp(84px, 8.6vw, 124px) var(--radius-sm) var(--radius-sm);
}

.product-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  background: var(--cream-100);
  transition: transform 400ms ease;
}

.product-card:hover img,
.gallery-card:hover img {
  transform: scale(1.045);
}

.product-card .card-body,
.gallery-card .card-body {
  padding: 1.15rem 0.6rem 1.35rem;
  text-align: center;
}

.product-card p {
  margin: 0.5rem auto 0;
  color: var(--ink-600);
  font-size: 0.95rem;
  max-width: 30ch;
}

.value-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-card {
  min-height: 100%;
  background: var(--cream-50);
  border-radius: var(--radius);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-top: 4px solid var(--gold-500);
  padding: 1.35rem 1.2rem;
}

.value-card p,
.outlet-card p {
  margin: 0.55rem 0 0;
  color: var(--ink-600);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-card .card-body h3 {
  font-size: 1.15rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Split layout & image frames
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split > *,
.page-hero-grid > * {
  min-width: 0;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.text-block p:not(.eyebrow) {
  color: var(--ink-600);
  margin: 1rem 0 0;
}

.section-dark .text-block p:not(.eyebrow) {
  color: rgba(249, 239, 220, 0.85);
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-50);
  border: 6px solid var(--cream-50);
  outline: 1.5px solid rgba(217, 164, 65, 0.7);
  outline-offset: 5px;
  box-shadow: var(--shadow);
  margin: 0;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.page-home .split .image-frame {
  border-radius: clamp(130px, 14vw, 200px) clamp(130px, 14vw, 200px) var(--radius) var(--radius);
}

.page-home .split .image-frame img {
  border-radius: clamp(124px, 13.6vw, 194px) clamp(124px, 13.6vw, 194px) calc(var(--radius) - 8px) calc(var(--radius) - 8px);
}

.heritage-art-frame {
  padding: 0;
}

/* --------------------------------------------------------------------------
   Timeline — gold thread with diamond markers
   -------------------------------------------------------------------------- */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.6rem;
  padding-top: 1.4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
}

.timeline-item {
  position: relative;
  padding: 0.4rem 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -0.83rem;
  left: 2px;
  width: 12px;
  height: 12px;
  background: var(--gold-500);
  border: 2px solid var(--cream-100);
  transform: rotate(45deg);
  box-shadow: 0 0 0 1.5px var(--gold-500);
}

.section-alt .timeline-item::before {
  border-color: var(--cream-50);
}

.timeline-item strong {
  display: block;
  color: var(--maroon-700);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.timeline-item p {
  color: var(--ink-600);
  margin: 0.7rem 0 0;
  font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials-section {
  background: var(--cream-100);
}

.slider {
  display: grid;
  gap: 1.4rem;
}

.slider-viewport {
  overflow: hidden;
}

.testimonial-slider .slider-viewport {
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  transform: translateX(0);
  transition: transform 460ms ease;
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4.5vw, 3.4rem);
  background: var(--cream-50);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: var(--radius);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(217, 164, 65, 0.35);
  pointer-events: none;
}

.testimonial-card p {
  max-width: 860px;
  margin: 0;
  color: var(--maroon-700);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.28;
}

.testimonial-author {
  display: grid;
  gap: 0.2rem;
}

.testimonial-author strong {
  color: var(--maroon-700);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--ink-600);
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.slider-btn,
.slider-dot {
  border: 1.5px solid rgba(107, 42, 22, 0.3);
  background: var(--cream-50);
  color: var(--maroon-700);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 800;
}

.slider-btn:hover {
  border-color: var(--maroon-700);
  background: var(--cream-100);
}

.slider-dots {
  display: inline-flex;
  gap: 0.45rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--gold-500);
  border-color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   Outlets (dark band)
   -------------------------------------------------------------------------- */

.outlet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outlet-card {
  background: rgba(255, 251, 242, 0.06);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.outlet-card h3,
.outlet-card p {
  color: var(--cream-50);
}

.outlet-list {
  columns: 2;
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
  color: rgba(249, 239, 220, 0.85);
}

.outlet-list li {
  margin-bottom: 0.3rem;
}

.outlet-list li::marker {
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  background:
    radial-gradient(55% 90% at 88% 10%, rgba(217, 164, 65, 0.16), transparent 65%),
    radial-gradient(rgba(217, 164, 65, 0.13) 1px, transparent 1.6px);
  background-color: var(--cream-100);
  background-size: auto, 26px 26px;
  padding: clamp(3rem, 5vw, 4.6rem) 0 clamp(3.4rem, 5.4vw, 5rem);
  border-bottom: 2px solid var(--gold-500);
}

.page-hero:not(.error-page)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 11px;
  background-image: var(--toran);
  background-size: 18px 11px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.page-hero.error-page {
  border-bottom: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero .image-frame {
  height: clamp(340px, 30vw, 440px);
}

.breadcrumbs {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1.1rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--maroon-700);
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-page .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.error-card {
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--maroon-700);
  color: var(--cream-100);
  border-radius: clamp(130px, 14vw, 190px) clamp(130px, 14vw, 190px) var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.error-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.95;
  color: var(--gold-500);
}

.error-card span {
  max-width: 300px;
  font-size: 1rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Forms & contact
   -------------------------------------------------------------------------- */

.form-card,
.contact-card {
  background: var(--cream-50);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.form-card .btn {
  margin-top: 1.3rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  font-size: 0.78rem;
  color: var(--maroon-700);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.required-marker {
  color: var(--chili);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1.5px solid rgba(161, 106, 20, 0.35);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  color: var(--ink-900);
  font: inherit;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.25);
  outline: none;
}

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

.form-status {
  margin-top: 1rem;
  color: var(--maroon-700);
  font-weight: 700;
}

.form-status.is-success {
  color: #2f6b3c;
}

.form-status.is-error {
  color: var(--chili);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-list a {
  color: var(--maroon-700);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--gold-700);
}

/* --------------------------------------------------------------------------
   Menu page
   -------------------------------------------------------------------------- */

.menu-cover-frame {
  background: var(--cream-50);
}

.menu-cover-frame img {
  object-position: center;
}

.menu-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.menu-index a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(161, 106, 20, 0.4);
  border-radius: 999px;
  background: var(--cream-50);
  color: var(--maroon-700);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.menu-index a:hover {
  border-color: var(--maroon-700);
  background: var(--cream-100);
}

.menu-group {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.menu-group-content {
  position: sticky;
  top: 130px;
  max-width: 420px;
}

.menu-section-art {
  aspect-ratio: 16 / 11;
  background: var(--cream-50);
}

.menu-section-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category-list {
  border-top: 2px solid rgba(217, 164, 65, 0.5);
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(161, 106, 20, 0.22);
}

.menu-category h3 {
  margin: 0;
  color: var(--maroon-700);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.12;
}

.menu-note {
  margin: 0.45rem 0 0.75rem;
  color: var(--gold-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.menu-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.35rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-item-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-600);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
}

.menu-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--gold-500);
}

.menu-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--maroon-700);
  color: var(--cream-50);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  overflow: hidden;
}

.menu-download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-image: var(--toran);
  background-size: 16px 10px;
  background-repeat: repeat-x;
  pointer-events: none;
}

.menu-download-card .btn {
  flex: 0 0 auto;
  min-width: 180px;
}

.menu-download-card h2 {
  color: var(--cream-100);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.menu-download-card p {
  color: rgba(249, 239, 220, 0.85);
  margin: 0.5rem 0 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--maroon-900);
  color: rgba(249, 239, 220, 0.8);
  padding: 4rem 0 1.4rem;
  margin-top: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 2.5rem;
}

.footer-logo {
  width: min(230px, 100%);
  background: var(--cream-50);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-family: var(--font-accent);
  color: var(--gold-500);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.1rem 0 0.3rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--cream-100);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-grid ul {
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.6rem;
}

.footer-grid a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-grid a:hover {
  color: var(--gold-500);
}

.footer-address {
  display: block;
  max-width: 340px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(249, 239, 220, 0.16);
  padding-top: 1.2rem;
  margin-top: 2.6rem;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   Scroll reveal (classes applied by JS; no-JS stays fully visible)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .btn,
  .product-card,
  .gallery-card,
  .hero-thumb {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .primary-nav {
    gap: 1rem;
  }

  .nav-links {
    gap: 0.85rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .menu-group {
    grid-template-columns: 1fr;
  }

  .error-page .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    height: clamp(380px, 52vw, 500px);
  }

  .stats-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 1rem;
  }

  .stats-band .stat + .stat::before {
    display: none;
  }

  .timeline,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-top: 1rem;
  }

  .timeline-item::before {
    top: -0.1rem;
  }

  .menu-group-content {
    position: static;
    top: auto;
    max-width: none;
  }

  .menu-section-art {
    max-width: 640px;
  }
}

@media (max-width: 860px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(43, 23, 16, 0.4);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: clamp(150px, 42vw, 210px);
    max-height: 56px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 108px 0 auto 0;
    z-index: 101;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 22px 1.4rem;
    background: var(--cream-100);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .primary-nav .btn {
    width: 100%;
  }

  .section-header,
  .menu-download-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .gallery-grid,
  .showcase-grid,
  .outlet-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .field.full {
    grid-column: auto;
  }

  .menu-category {
    grid-template-columns: minmax(100px, 0.32fr) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .top-strip {
    display: none;
  }

  .primary-nav {
    inset: 77px 0 auto 0;
  }

  .hero-grid {
    padding: 2.4rem 0 3.4rem;
  }

  .hero-card {
    height: clamp(300px, 78vw, 400px);
    border-radius: clamp(110px, 24vw, 160px) clamp(110px, 24vw, 160px) var(--radius) var(--radius);
  }

  .hero-product-strip {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .hero-thumb {
    width: 100%;
    aspect-ratio: 1;
  }

  .heritage-note {
    width: min(280px, 84%);
    padding: 0.85rem 1rem;
  }

  .heritage-note strong {
    font-size: 1.25rem;
  }

  .stats-band-inner,
  .timeline,
  .value-grid,
  .product-grid,
  .gallery-grid,
  .showcase-grid,
  .outlet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-band .stat {
    text-align: left;
    padding: 0.2rem 0;
  }

  .menu-item-list {
    grid-template-columns: 1fr;
  }

  .menu-category {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem 0;
  }

  .outlet-list {
    columns: 1;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.5rem);
  }

  .page-hero .image-frame {
    height: clamp(280px, 70vw, 380px);
  }

  .error-card {
    min-height: 260px;
  }

  .error-card strong {
    font-size: clamp(4rem, 24vw, 6rem);
  }

  h2,
  h3,
  .lead,
  .breadcrumbs {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
