/* =========================================================
   FIYAQILAN STUDIO — design tokens
   ========================================================= */
:root{
  --ink:        #15130f;
  --ink-2:      #201b13;
  --ink-3:      #2a2317;
  --cream:      #f6efe0;
  --cream-soft: #fffcf5;
  --gold:       #cf9b40;
  --gold-light: #e8c579;
  --gold-deep:  #8f6a26;
  --text:       #221d17;
  --text-muted: #6d6353;
  --line-ink:   rgba(246,239,224,0.14);
  --line-cream: rgba(34,29,23,0.14);
  --wa:         #25d366;
  --wa-deep:    #1da851;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-mono:    "Space Mono", monospace;

  --radius: 14px;
  --wrap: 1160px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }

/* faint paper grain overlay, pure CSS, no image assets */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999; opacity:0.035; mix-blend-mode:multiply;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0.5px, transparent 0.5px),
    radial-gradient(circle at 60% 70%, #000 0.5px, transparent 0.5px),
    radial-gradient(circle at 85% 15%, #000 0.5px, transparent 0.5px);
  background-size: 3px 3px, 5px 5px, 4px 4px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:0.95rem;
  padding:13px 26px; border-radius:999px; border:1px solid transparent;
  cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--gold); color:var(--ink); box-shadow:0 8px 22px -8px rgba(207,155,64,0.55); }
.btn-primary:hover{ background:var(--gold-light); }
.btn-ghost{ background:transparent; border-color:var(--line-ink); color:var(--cream-soft); }
.btn-ghost:hover{ border-color:var(--gold-light); color:var(--gold-light); }
.btn-wa{ background:var(--wa); color:#fff; }
.btn-wa:hover{ background:var(--wa-deep); }
.icon-wa{ width:18px; height:18px; fill:currentColor; flex:none; }

.eyebrow{
  font-family:var(--font-mono); font-size:0.78rem; text-transform:uppercase; letter-spacing:0.12em;
  color:var(--gold-deep); margin:0 0 14px;
}
.eyebrow-light{ color:var(--gold-light); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(21,19,15,0.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-ink);
}
.header-inner{ display:flex; align-items:center; gap:28px; padding-top:14px; padding-bottom:14px; }
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-mark{
  font-family:var(--font-mono); font-weight:700; font-size:0.72rem;
  color:var(--ink); background:var(--gold); border-radius:50%;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  flex:none;
}
.brand-name{ font-family:var(--font-display); font-size:1.15rem; color:var(--cream-soft); font-weight:600; }
.brand-name em{ font-style:normal; color:var(--gold-light); }

.main-nav{ display:flex; gap:28px; }
.main-nav a{ font-size:0.92rem; font-weight:600; color:var(--cream); opacity:0.82; transition:opacity .15s, color .15s; }
.main-nav a:hover{ opacity:1; color:var(--gold-light); }

.header-cta{ padding:10px 20px; font-size:0.88rem; }
.nav-toggle{ display:none; }

.cart-toggle{
  position:relative; background:transparent; border:1px solid var(--line-ink); border-radius:999px;
  width:42px; height:42px; display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:border-color .15s;
}
.cart-toggle:hover{ border-color:var(--gold-light); }
.icon-cart{ width:19px; height:19px; fill:none; stroke:var(--cream-soft); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.cart-badge{
  position:absolute; top:-6px; right:-6px; background:var(--gold); color:var(--ink);
  font-family:var(--font-mono); font-size:0.68rem; font-weight:700; min-width:18px; height:18px; border-radius:999px;
  display:none; align-items:center; justify-content:center; padding:0 4px;
}
.cart-badge.pulse{ animation:badgePulse .4s ease; }
@keyframes badgePulse{
  0%{ transform:scale(1); }
  40%{ transform:scale(1.35); }
  100%{ transform:scale(1); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  background:
    radial-gradient(ellipse 900px 500px at 82% -10%, rgba(207,155,64,0.16), transparent 60%),
    var(--ink);
  color:var(--cream);
  padding:88px 0 96px;
  overflow:hidden;
}
.hero-inner{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; }
.hero h1{
  font-size:clamp(2.3rem, 4.4vw, 3.6rem); line-height:1.08; color:var(--cream-soft);
}
.hero h1 em{ font-style:italic; color:var(--gold-light); font-weight:500; }
.hero-lead{ margin-top:22px; font-size:1.08rem; color:rgba(246,239,224,0.72); max-width:46ch; }
.hero-actions{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:52px; flex-wrap:wrap; }
.hero-stats div{ display:flex; flex-direction:column; gap:4px; }
.hero-stats strong{ font-family:var(--font-display); font-size:1.5rem; color:var(--gold-light); }
.hero-stats span{ font-size:0.8rem; color:rgba(246,239,224,0.6); max-width:14ch; }

/* --- hero visual: ticket stack + wax seal, pure CSS --- */
.hero-visual{ position:relative; height:420px; }
.ticket-stack{ position:absolute; inset:0; display:flex; flex-direction:column; gap:18px; justify-content:center; }
.stub{
  background:var(--cream-soft); color:var(--text);
  border-radius:10px; padding:18px 22px; display:flex; justify-content:space-between; align-items:center;
  box-shadow:0 22px 40px -20px rgba(0,0,0,0.55);
  position:relative;
  font-weight:700;
}
.stub::before, .stub::after{
  content:""; position:absolute; width:20px; height:20px; background:var(--ink); border-radius:50%; top:50%; transform:translateY(-50%);
}
.stub::before{ left:-10px; }
.stub::after{ right:-10px; }
.stub-label{ font-family:var(--font-body); font-size:0.92rem; }
.stub-price{ font-family:var(--font-mono); font-size:0.92rem; color:var(--gold-deep); }
.stub-1{ transform:rotate(-3deg) translateX(-6px); }
.stub-2{ transform:rotate(2deg) translateX(10px); z-index:2; box-shadow:0 26px 46px -18px rgba(0,0,0,0.6); }
.stub-3{ transform:rotate(-1.5deg) translateX(-2px); }

.seal{
  position:absolute; right:6%; top:4%; width:104px; height:104px; border-radius:50%;
  background:conic-gradient(from 180deg, var(--gold), var(--gold-light), var(--gold));
  display:flex; align-items:center; justify-content:center; text-align:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,0.6);
  transform:rotate(8deg);
}
.seal span{
  font-family:var(--font-mono); font-size:0.62rem; font-weight:700; letter-spacing:0.06em;
  color:var(--ink); background:var(--cream-soft); border-radius:50%; width:78px; height:78px;
  display:flex; align-items:center; justify-content:center; line-height:1.3;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{ padding:100px 0; background:var(--cream); }
.about-inner{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:64px; align-items:center; }
.about-frame{
  aspect-ratio:1/1; border-radius:var(--radius); background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line-cream);
  overflow:hidden; /* penting: supaya sudut foto ikut melengkung & tidak meluber */
}
.about-frame img{
  width:100%; height:100%; object-fit:cover; /* foto mengisi penuh kotak, proporsional, tidak gepeng */
}
.about-frame.img-missing{
  padding:24px; text-align:center;
}
.about-frame.img-missing img{ display:none; }
.about-frame.img-missing::after{
  content:"Taruh foto di assets/tentang-kami.jpg";
  color:var(--line-ink); font-family:var(--font-mono); font-size:0.8rem;
}
.about-svg{ width:100%; height:100%; }
.about-svg rect{ fill:none; stroke:var(--line-ink); stroke-width:1; }
.about-svg path{ stroke:var(--gold-light); }
.about-svg circle{ fill:var(--gold); }
.about-copy h2{ font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:20px; }
.about-copy p{ color:var(--text-muted); font-size:1.02rem; max-width:56ch; }
.about-list{
  margin-top:28px; display:grid; grid-template-columns:1fr 1fr; gap:12px 24px;
}
.about-list li{
  font-weight:600; font-size:0.94rem; padding-left:20px; position:relative; color:var(--text);
}
.about-list li::before{
  content:""; position:absolute; left:0; top:9px; width:8px; height:8px; background:var(--gold); border-radius:50%;
}

/* =========================================================
   CATALOG
   ========================================================= */
.catalog{ background:var(--ink); color:var(--cream); padding:100px 0; }
.section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem,3.2vw,2.5rem); color:var(--cream-soft); }
.section-lead{ margin-top:14px; color:rgba(246,239,224,0.68); font-size:1.02rem; }
.catalog .section-head{ text-align:left; margin-left:0; }

.catalog-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(300px,1fr)); gap:22px;
}

.ticket{
  background:var(--cream-soft); color:var(--text); border-radius:12px;
  position:relative; display:flex; flex-direction:column;
  box-shadow:0 18px 34px -22px rgba(0,0,0,0.5);
}
.ticket-top{ padding:22px 22px 18px; }
.ticket-cat{ font-family:var(--font-mono); font-size:0.68rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--gold-deep); }
.ticket-name{ font-family:var(--font-display); font-size:1.24rem; margin-top:8px; line-height:1.2; }
.ticket-spec{ margin-top:10px; font-size:0.86rem; color:var(--text-muted); line-height:1.55; }
.ticket-spec li{ position:relative; padding-left:14px; }
.ticket-spec li::before{ content:"–"; position:absolute; left:0; color:var(--gold-deep); }

.ticket-top{ display:block; }
.ticket-top:hover .ticket-name{ color:var(--gold-deep); }
.ticket-name{ transition:color .15s; }
.ticket-variant-wrap{ padding:0 22px 18px; margin-top:-4px; }
.ticket-variant-label{
  display:block; margin-top:2px; font-family:var(--font-mono); font-size:0.68rem; text-transform:uppercase;
  letter-spacing:0.08em; color:var(--text-muted);
}
.ticket-variant{
  margin-top:6px; width:100%; padding:10px 12px; border-radius:8px; border:1px solid var(--line-cream);
  background:var(--cream); color:var(--text); font-family:var(--font-body); font-size:0.86rem; font-weight:600;
  cursor:pointer;
}
.price-inquiry{ font-family:var(--font-mono); font-weight:700; font-size:0.92rem; color:var(--text-muted); }
.ticket-cta-wa{ background:var(--wa); color:#fff; }
.ticket-cta-wa:hover{ background:var(--wa-deep); color:#fff; }

.ticket-perf{
  position:relative; height:0; border-top:2px dashed rgba(34,29,23,0.22); margin:4px 0;
}
.ticket-perf::before, .ticket-perf::after{
  content:""; position:absolute; top:-9px; width:18px; height:18px; background:var(--ink); border-radius:50%;
}
.ticket-perf::before{ left:-31px; }
.ticket-perf::after{ right:-31px; }

.ticket-bottom{
  padding:16px 22px 22px; display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto;
}
.ticket-price{ display:flex; flex-direction:column; }
.price-was{ font-family:var(--font-mono); font-size:0.76rem; color:var(--text-muted); text-decoration:line-through; }
.price-now{ font-family:var(--font-mono); font-weight:700; font-size:1.08rem; color:var(--gold-deep); }
.ticket-cta{
  font-family:var(--font-body); font-weight:700; font-size:0.82rem; padding:10px 16px; border-radius:999px;
  background:var(--ink); color:var(--cream-soft); display:inline-flex; align-items:center; gap:6px;
  transition:background .15s;
}
.ticket-cta:hover{ background:var(--gold-deep); color:var(--ink); }

/* =========================================================
   TESTIMONI (carousel)
   ========================================================= */
.testimoni{ background:var(--ink); padding:100px 0; color:var(--cream); }

.testi-carousel{ display:flex; align-items:center; gap:14px; }
.testi-nav{
  flex:none; width:44px; height:44px; border-radius:50%; border:1px solid var(--line-ink);
  background:var(--ink-2); color:var(--cream-soft); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:border-color .15s, background .15s;
}
.testi-nav:hover{ border-color:var(--gold-light); background:var(--ink-3); }
.testi-nav svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.testi-track{
  flex:1; display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding:4px 4px 12px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }

.testi-card{
  scroll-snap-align:start; flex:0 0 calc(33.333% - 15px); min-width:260px;
  background:var(--ink-2); border:1px solid var(--line-ink); border-radius:var(--radius);
  padding:30px 26px; display:flex; flex-direction:column;
}
.testi-quote-mark{
  font-family:var(--font-display); font-size:2.6rem; line-height:1; color:var(--gold);
  margin-bottom:6px; font-style:italic;
}
.testi-quote{ font-size:0.96rem; line-height:1.65; color:rgba(246,239,224,0.82); flex:1; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:24px; }
.testi-avatar{
  width:40px; height:40px; border-radius:50%; background:var(--gold); color:var(--ink);
  font-family:var(--font-mono); font-weight:700; font-size:0.78rem; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.testi-name{ font-weight:700; font-size:0.92rem; color:var(--cream-soft); }
.testi-context{ font-size:0.78rem; color:rgba(246,239,224,0.55); margin-top:2px; }

.testi-dots{ display:flex; justify-content:center; gap:8px; margin-top:8px; }
.testi-dot{
  width:8px; height:8px; border-radius:50%; background:var(--line-ink); border:none; cursor:pointer; padding:0;
  transition:background .2s, transform .2s;
}
.testi-dot.active{ background:var(--gold); transform:scale(1.25); }

/* =========================================================
   WHY
   ========================================================= */
.why{ background:var(--cream); padding:100px 0; }
.why .section-head{ text-align:center; margin:0 auto 52px; }
.why .section-head h2{ color:var(--text); }
.why .section-lead{ color:var(--text-muted); }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.why-card{
  background:var(--cream-soft); border:1px solid var(--line-cream); border-radius:var(--radius); padding:28px 22px;
}
.why-num{ font-family:var(--font-mono); color:var(--gold-deep); font-size:0.85rem; }
.why-card h3{ font-family:var(--font-display); font-size:1.12rem; margin-top:16px; }
.why-card p{ margin-top:10px; font-size:0.9rem; color:var(--text-muted); line-height:1.55; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{ background:linear-gradient(120deg, var(--ink), var(--ink-3)); color:var(--cream); padding:72px 0; }
.cta-inner{ display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap; }
.cta-inner h2{ font-size:clamp(1.5rem,2.6vw,2rem); color:var(--cream-soft); max-width:22ch; }
.cta-inner .section-lead{ max-width:44ch; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink-2); color:var(--cream); padding-top:64px; }
.footer-inner{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:44px; border-bottom:1px solid var(--line-ink); }
.footer-brand{ display:flex; flex-direction:column; gap:10px; align-items:flex-start; max-width:280px; }
.footer-brand .brand-name{ margin-top:4px; }
.footer-brand p{ color:rgba(246,239,224,0.6); font-size:0.9rem; }
.footer-links{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-links h4{ font-family:var(--font-mono); font-size:0.75rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--gold-light); margin-bottom:14px; font-weight:700; }
.footer-links div{ display:flex; flex-direction:column; gap:10px; }
.footer-links a{ font-size:0.92rem; color:rgba(246,239,224,0.78); transition:color .15s; }
.footer-links a:hover{ color:var(--gold-light); }
.footer-bottom{ padding:22px 24px; text-align:center; }
.footer-bottom p{ font-size:0.8rem; color:rgba(246,239,224,0.45); }

/* =========================================================
   CART DRAWER
   ========================================================= */
body.no-scroll{ overflow:hidden; }

.cart-overlay{
  position:fixed; inset:0; background:rgba(21,19,15,0.55); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .25s ease; z-index:200;
}
.cart-overlay.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px, 92vw);
  background:var(--cream-soft); color:var(--text); z-index:201;
  display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .3s ease;
  box-shadow:-24px 0 50px -20px rgba(0,0,0,0.4);
}
.cart-drawer.open{ transform:translateX(0); }

.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between; padding:22px 24px;
  border-bottom:1px solid var(--line-cream);
}
.cart-drawer-head h3{ font-family:var(--font-display); font-size:1.2rem; }
.cart-close{
  background:transparent; border:none; font-size:1.6rem; line-height:1; cursor:pointer; color:var(--text-muted);
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
}
.cart-close:hover{ color:var(--text); }

.cart-empty{
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px; padding:24px;
  text-align:center; color:var(--text-muted);
}

.cart-list{ flex:1; overflow-y:auto; padding:12px 24px; }
.cart-item{
  display:flex; justify-content:space-between; gap:12px; padding:16px 0; border-bottom:1px solid var(--line-cream);
}
.cart-item-name{ font-weight:700; font-size:0.94rem; }
.cart-item-variant{ font-size:0.8rem; color:var(--text-muted); margin-top:2px; }
.cart-item-price{ font-family:var(--font-mono); font-size:0.84rem; color:var(--gold-deep); margin-top:6px; }
.cart-item-controls{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; flex:none; }
.qty-stepper{
  display:flex; align-items:center; gap:10px; border:1px solid var(--line-cream); border-radius:999px; padding:4px 10px;
}
.qty-stepper button{
  background:transparent; border:none; font-size:1rem; width:20px; height:20px; cursor:pointer; color:var(--text);
}
.qty-stepper span{ font-family:var(--font-mono); font-size:0.85rem; min-width:14px; text-align:center; }
.cart-item-remove{
  background:none; border:none; font-size:0.76rem; color:var(--text-muted); text-decoration:underline; cursor:pointer;
}
.cart-item-remove:hover{ color:var(--gold-deep); }

.cart-footer{ padding:20px 24px 26px; border-top:1px solid var(--line-cream); }
.cart-total-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.cart-total-row span:first-child{ font-weight:700; }
.cart-total{ font-family:var(--font-mono); font-weight:700; font-size:1.2rem; color:var(--gold-deep); }
.cart-checkout{ width:100%; justify-content:center; }
.cart-clear{
  display:block; width:100%; text-align:center; background:none; border:none; margin-top:12px;
  font-size:0.8rem; color:var(--text-muted); text-decoration:underline; cursor:pointer;
}
.cart-clear:hover{ color:var(--gold-deep); }

/* =========================================================
   SCROLL REVEAL (JS toggles .in-view)
   ========================================================= */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* =========================================================
   PRODUCT DETAIL PAGE (produk.html)
   ========================================================= */
.pd-breadcrumb-wrap{ background:var(--ink); border-bottom:1px solid var(--line-ink); }
.pd-breadcrumb{
  display:flex; gap:8px; align-items:center; padding:16px 24px; font-size:0.82rem;
  color:rgba(246,239,224,0.55); flex-wrap:wrap;
}
.pd-breadcrumb a{ color:rgba(246,239,224,0.75); transition:color .15s; }
.pd-breadcrumb a:hover{ color:var(--gold-light); }
.pd-breadcrumb span:last-child{ color:var(--gold-light); font-weight:600; }

.pd-section{ background:var(--ink); padding:56px 0 96px; color:var(--cream); }
.pd-wrap{ display:grid; grid-template-columns:0.75fr 1.25fr; gap:56px; align-items:start; }

.pd-frame{
  aspect-ratio:1/1; border-radius:var(--radius); background:var(--ink-2);
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line-ink); position:sticky; top:100px;
  overflow:hidden;
}
.pd-frame img{
  width:100%; height:100%; object-fit:cover;
}
.pd-frame.img-missing{ padding:24px; text-align:center; }
.pd-frame.img-missing img{ display:none; }
.pd-frame.img-missing::after{
  content:attr(data-missing-path);
  color:var(--line-ink); font-family:var(--font-mono); font-size:0.78rem;
}

.pd-title{ font-size:clamp(1.8rem,3.4vw,2.6rem); color:var(--cream-soft); margin-top:6px; }
.pd-desc{ margin-top:20px; font-size:1.02rem; line-height:1.7; color:rgba(246,239,224,0.72); max-width:60ch; }

.pd-spec{ margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.pd-spec li{ position:relative; padding-left:20px; font-size:0.94rem; color:rgba(246,239,224,0.82); }
.pd-spec li::before{ content:"–"; position:absolute; left:0; color:var(--gold-light); }

.pd-variant-label{ margin-top:32px; color:rgba(246,239,224,0.55); }
.pd-variant{
  margin-top:8px; max-width:420px; background:var(--ink-2); color:var(--cream-soft); border-color:var(--line-ink);
}

.pd-price-row{ margin-top:28px; }
.pd-price-now, .pd-price-row .price-now{ font-size:1.5rem; }
.pd-price-row .price-inquiry{ font-size:1.2rem; color:rgba(246,239,224,0.6); }

.pd-actions{ display:flex; gap:14px; margin-top:20px; flex-wrap:wrap; }
.pd-back{
  display:inline-block; margin-top:40px; font-size:0.9rem; color:rgba(246,239,224,0.6);
  border-bottom:1px solid rgba(246,239,224,0.25); padding-bottom:2px; transition:color .15s, border-color .15s;
}
.pd-back:hover{ color:var(--gold-light); border-color:var(--gold-light); }

.pd-notfound{ padding:40px 0; }
.pd-notfound h1{ font-size:2rem; color:var(--cream-soft); margin-top:10px; }
.pd-notfound p{ margin-top:14px; color:rgba(246,239,224,0.7); }
.pd-notfound .btn{ margin-top:26px; }

@media (max-width:900px){
  .pd-wrap{ grid-template-columns:1fr; }
  .pd-frame{ max-width:220px; margin:0 auto; position:static; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:320px; order:-1; }
  .about-inner{ grid-template-columns:1fr; }
  .about-frame{ max-width:280px; margin:0 auto; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .testi-card{ flex-basis:calc(50% - 11px); }
}
@media (max-width:760px){
  .main-nav{
    position:fixed; inset:64px 0 0 0; background:var(--ink); flex-direction:column; padding:32px 24px;
    transform:translateY(-12px); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s;
    gap:20px; border-top:1px solid var(--line-ink);
  }
  .main-nav.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav a{ font-size:1.1rem; }
  .header-cta{ display:none; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; width:34px; height:34px; align-items:center; justify-content:center;
    background:transparent; border:none; cursor:pointer;
  }
  .nav-toggle span{ width:22px; height:2px; background:var(--cream); transition:transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  .about-list{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .ticket-perf::before{ left:-9px; }
  .ticket-perf::after{ right:-9px; }
  .testi-card{ flex-basis:100%; min-width:0; }
  .testi-nav{ width:36px; height:36px; }
}
