/* ============================================================
   PAWAN CHAI — style.css
   Full-page scroll-snap website | Plain CSS + Google Fonts
   ============================================================ */


/* ============================================================
   1. VARIABLES & GLOBAL RESET
   ============================================================ */

:root {
  --bg-dark:    #130600;
  --bg-mid:     #1E0A02;
  --bg-card:    #2A1005;
  --gold:       #C9892A;
  --gold-light: #E5A840;
  --gold-dim:   rgba(201, 137, 42, 0.18);
  --cream:      #F5ECD7;
  --muted:      #A8896A;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-sans);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Thin gold accent bar at very top of page */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 200;
  pointer-events: none;
}


/* ============================================================
   2. SCROLL CONTAINER
   ============================================================ */

.scroll-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  /* Hide scrollbar visually across browsers */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}


/* ============================================================
   3. SECTION BASE
   ============================================================ */

.section {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
}


/* ============================================================
   4. ANIMATION SYSTEM
   ============================================================ */

/* Elements start hidden and slightly down */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim.delay-1 { transition-delay: 0.12s; }
.anim.delay-2 { transition-delay: 0.25s; }
.anim.delay-3 { transition-delay: 0.40s; }
.anim.delay-4 { transition-delay: 0.55s; }

/* When section snaps into view (JS adds .visible class) → reveal */
.section.visible .anim {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   5. FIXED UI ELEMENTS  (logo + dot nav)
   ============================================================ */

/* Top-left brand name */
.fixed-logo {
  position: fixed;
  top: 1.4rem;
  left: 1.75rem;
  z-index: 150;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), text-shadow var(--transition);
  text-shadow: 0 0 28px rgba(201, 137, 42, 0.55);
  background: rgba(19, 6, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201, 137, 42, 0.15);
}
.fixed-logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(229, 168, 64, 0.7);
}

/* Side dot navigation */
.dot-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.dot:hover:not(.active) {
  background: rgba(201, 137, 42, 0.4);
}


/* ============================================================
   6. EYEBROW / SHARED TYPOGRAPHY
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
/* On dark overlays (chaepatti), eyebrow can be light gold */
.eyebrow.light {
  color: var(--gold-light);
}
.eyebrow.light::before {
  background: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header .eyebrow {
  justify-content: center;
}
.section-header .eyebrow::before {
  display: none;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
}

.gold-rule {
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.75rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
}


/* ============================================================
   7. SECTION 1 · HERO
   ============================================================ */

#hero {
  background: var(--bg-dark);
}

/* Background image with slow Ken Burns zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544787219-7f47ccb76574?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
}
#hero.visible .hero-bg {
  transform: scale(1);
}

/* Gradient overlay — dark at bottom, lighter at top */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19, 6, 0, 0.55) 0%,
    rgba(19, 6, 0, 0.70) 45%,
    rgba(19, 6, 0, 0.92) 100%
  );
}

/* Steam puffs */
.steam-wrap {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  pointer-events: none;
  z-index: 1;
}

.steam {
  display: block;
  width: 14px;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(201, 137, 42, 0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  animation: steam-rise 4s ease-in-out infinite;
  transform-origin: bottom center;
}
.steam.s1 { animation-delay: 0s;    height: 80px;  width: 12px; }
.steam.s2 { animation-delay: 0.9s;  height: 110px; width: 16px; }
.steam.s3 { animation-delay: 1.8s;  height: 70px;  width: 10px; }
.steam.s4 { animation-delay: 2.5s;  height: 100px; width: 14px; }
.steam.s5 { animation-delay: 0.4s;  height: 60px;  width: 8px;  }

@keyframes steam-rise {
  0%   { transform: translateY(0)    scaleX(1);   opacity: 0;   }
  15%  { opacity: 0.55; }
  60%  { transform: translateY(-80px) scaleX(1.6); opacity: 0.25; }
  100% { transform: translateY(-160px) scaleX(0.4); opacity: 0; }
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-content .eyebrow {
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

/* Scroll cue */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
}
.scroll-hint-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-arrow {
  display: block;
  font-size: 0.9rem;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}


/* ============================================================
   8. SECTION 2 · OUR STORY
   ============================================================ */

#story {
  background: var(--bg-dark);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
  width: 100%;
  max-width: 1200px;
  padding: 0 5vw;
}

.split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}

.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-dim);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Right-side image */
.split-image {
  height: 68vh;
  overflow: hidden;
  position: relative;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 137, 42, 0.12);
  pointer-events: none;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}
#story.visible .split-image img {
  transform: scale(1.06);
}


/* ============================================================
   9. SECTION 3 · THE CHAEPATTI
   ============================================================ */

#chaepatti {
  background: var(--bg-mid);
}

.chaepatti-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564752801475-81ab77792ca5?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
}

.chaepatti-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(19, 6, 0, 0.90) 0%,
    rgba(44, 19, 8, 0.65) 60%,
    rgba(19, 6, 0, 0.85) 100%
  );
}

.chaepatti-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 2rem;
}
.chaepatti-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.chaepatti-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 236, 215, 0.82);
  margin-bottom: 2rem;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}


/* ============================================================
   10. SECTION 4 · MENU
   ============================================================ */

#menu {
  background: var(--bg-dark);
}

.menu-inner {
  width: 100%;
  max-width: 1140px;
  padding: 0 4vw;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(201, 137, 42, 0.12);
}

.card-img {
  height: 190px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: contain;
  transition: transform 0.6s ease;
}
.menu-card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 1.25rem 1.1rem;
}
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

/* Card overlay (View Details on hover) */
.card-img {
  position: relative;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 6, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card-overlay span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.45rem 1.1rem;
}
.menu-card:hover .card-overlay {
  opacity: 1;
}

/* Card footer: qty + price */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--gold-dim);
}
.card-qty {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
}
.card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0;
}


/* ============================================================
   11. SECTION 5 · GALLERY
   ============================================================ */

#gallery {
  background: var(--bg-mid);
  flex-direction: column;
}

.gallery-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Horizontal scrollable image strip */
.gallery-strip {
  width: 100%;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 4vw;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  cursor: grab;
  /* thin gold scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
}
.gallery-strip:active {
  cursor: grabbing;
}
.gallery-strip::-webkit-scrollbar {
  height: 3px;
}
.gallery-strip::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
.gallery-strip::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.gallery-item {
  flex: 0 0 38vw;
  height: 52vh;
  overflow: hidden;
  border: 1px solid rgba(201, 137, 42, 0.08);
  scroll-snap-align: start;
  transition: border-color var(--transition);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover {
  border-color: rgba(201, 137, 42, 0.4);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s ease;
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-hint {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ============================================================
   12. SECTION 6 · VIDEOS
   ============================================================ */

#videos {
  background: var(--bg-dark);
  flex-direction: column;
}

.videos-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.video-strip {
  width: 100%;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem 4vw;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
}
.video-strip:active { cursor: grabbing; }
.video-strip::-webkit-scrollbar { height: 3px; }
.video-strip::-webkit-scrollbar-track { background: var(--bg-dark); }
.video-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.video-item {
  flex: 0 0 52vw;
  height: 50vh;
  scroll-snap-align: start;
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.video-item:hover {
  border-color: rgba(201, 137, 42, 0.4);
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder shown before real videos are added */
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}
.video-coming-soon {
  font-size: 2.5rem;
  opacity: 0.35;
}
.video-placeholder p {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.6;
  opacity: 0.55;
}


/* ============================================================
   13. SECTION 7 · FIND US
   ============================================================ */

#find-us {
  background: var(--bg-dark);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

/* Centred contact grid area */
.find-us-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  width: 100%;
  max-width: 1100px;
  padding: 0 5vw;
}

/* Left column */
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.c-icon {
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-row strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-row p,
.contact-row a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
  transition: color var(--transition);
}
.contact-row a:hover {
  color: var(--cream);
}

/* Right column */
.contact-right h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.c-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--gold-dim);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.c-link:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(201, 137, 42, 0.06);
}
.c-link-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  border-top: 1px solid var(--gold-dim);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-domain {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-domain:hover {
  color: var(--gold-light);
}


/* ============================================================
   14. PRODUCT MODAL
   ============================================================ */

#product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#product-modal.open {
  display: flex;
}

#modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 3, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(201, 137, 42, 0.22);
  max-width: 860px;
  width: 92vw;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
  animation: modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  z-index: 2;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.modal-close:hover { color: var(--cream); }

.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img-wrap {
  background: var(--bg-dark);
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 70vh;
}

.modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.modal-qty {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}
.modal-price-row {
  padding: 0.9rem 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}
.modal-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  border-radius: 2px;
}
.modal-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* Modal responsive */
@media (max-width: 640px) {
  .modal-layout {
    grid-template-columns: 1fr;
  }
  .modal-img-wrap {
    min-height: 220px;
    max-height: 40vh;
  }
  .modal-info {
    padding: 1.5rem 1.25rem;
  }
}


/* ============================================================
   15. RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  /* Story: stack */
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    overflow-y: auto;
    align-content: start;
    padding-top: 6rem;
  }
  .split-image {
    height: 38vh;
  }

  /* Menu: 2 cols */
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .card-img {
    height: 150px;
  }

  /* Gallery: wider cards */
  .gallery-item {
    flex: 0 0 70vw;
    height: 44vh;
  }

  /* Contact: stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    overflow-y: auto;
    max-height: 80vh;
  }
  .contact-links {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   16. RESPONSIVE — MOBILE  (≤ 540px)
   ============================================================ */

@media (max-width: 540px) {
  .fixed-logo {
    font-size: 0.85rem;
    left: 1.2rem;
  }
  .dot-nav {
    right: 0.9rem;
    gap: 0.65rem;
  }
  .dot {
    width: 7px;
    height: 7px;
  }
  .hero-content h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
  .hero-tagline {
    font-size: 0.85rem;
  }
  .split-layout {
    padding: 1.5rem;
    padding-top: 5rem;
  }
  .story-stats {
    gap: 1.5rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    flex: 0 0 85vw;
    height: 38vh;
  }
  .site-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
