/* ============================================================
   Deep Ink Letters — design system
   Ink & paper. Luxury calligraphy & precision engraving.
   ============================================================ */

:root{
  --ink:#171a24;            /* deep ink */
  --ink-2:#242a3a;
  --navy:#1d2740;
  --paper:#f7f1e7;          /* warm cream */
  --paper-2:#efe6d6;
  --cream-card:#fbf7f0;
  --gold:#b08a4f;           /* engraving gold */
  --gold-2:#c9a870;
  --gold-soft:#e7d4b0;
  --blush:#e8d9d2;
  --line:rgba(23,26,36,.14);
  --muted:#6b6357;
  --white:#ffffff;

  --f-display:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-body:"Jost", "Segoe UI", system-ui, sans-serif;
  --f-script:"Italiana", serif;

  --wrap:1240px;
  --gutter:clamp(20px, 5vw, 64px);
  --radius:2px;
  --shadow:0 18px 50px -20px rgba(23,26,36,.28);
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--paper);
  font-size:16px;
  line-height:1.65;
  font-weight:300;
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

h1,h2,h3,h4{
  font-family:var(--f-display);
  font-weight:500;
  line-height:1.08;
  letter-spacing:.005em;
  margin:0 0 .5em;
}
h1{font-size:clamp(2.6rem,6vw,5rem)}
h2{font-size:clamp(2rem,4vw,3.2rem)}
h3{font-size:clamp(1.4rem,2.4vw,1.9rem)}
p{margin:0 0 1.1em}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding:clamp(64px,9vw,130px) 0}
.section--tight{padding:clamp(48px,6vw,80px) 0}
.bg-ink{background:var(--ink);color:#efe9dd}
.bg-paper2{background:var(--paper-2)}
.bg-navy{background:var(--navy);color:#eee}
.center{text-align:center}

/* ---- eyebrow / kicker ---- */
.kicker{
  font-family:var(--f-body);
  text-transform:uppercase;
  letter-spacing:.42em;
  font-size:.7rem;
  font-weight:400;
  color:var(--gold);
  display:inline-block;
  margin-bottom:1.2rem;
}
.bg-ink .kicker{color:var(--gold-2)}
.lead{font-size:clamp(1.05rem,1.6vw,1.28rem);color:var(--muted);max-width:60ch}
.bg-ink .lead{color:#c9c2b4}
.center .lead{margin-inline:auto}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;gap:.6em;
  font-family:var(--f-body);
  text-transform:uppercase;letter-spacing:.22em;
  font-size:.72rem;font-weight:400;
  padding:1.05em 2.2em;
  border:1px solid var(--ink);
  background:var(--ink);color:var(--paper);
  cursor:pointer;transition:.4s var(--ease);
  border-radius:var(--radius);
}
.btn:hover{background:transparent;color:var(--ink)}
.btn--ghost{background:transparent;color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:var(--paper)}
.btn--gold{background:var(--gold);border-color:var(--gold);color:#fff}
.btn--gold:hover{background:transparent;color:var(--gold)}
.btn--light{border-color:var(--paper);background:transparent;color:var(--paper)}
.btn--light:hover{background:var(--paper);color:var(--ink)}
.btn--sm{padding:.85em 1.6em;font-size:.66rem}

.link-underline{
  position:relative;text-transform:uppercase;letter-spacing:.2em;font-size:.72rem;
  padding-bottom:.35em;color:var(--gold);
}
.link-underline::after{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;background:currentColor;transform:scaleX(.4);transform-origin:left;transition:.4s var(--ease)}
.link-underline:hover::after{transform:scaleX(1)}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  transition:background .45s var(--ease), box-shadow .45s var(--ease), color .45s var(--ease);
  color:var(--paper);
}
.site-header .bar{
  display:flex;align-items:center;justify-content:space-between;
  height:84px;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter);
}
.brand{display:flex;flex-direction:row;align-items:center;gap:.7rem;line-height:1}
.brand-logo{width:44px;height:44px;object-fit:contain;flex-shrink:0}
.brand-logo--dark{display:none}
.site-header.solid .brand-logo--light{display:none}
.site-header.solid .brand-logo--dark{display:block}
.brand-text{display:flex;flex-direction:column;gap:.2em}
.brand .mark{font-family:var(--f-display);font-size:1.5rem;letter-spacing:.02em;font-weight:500}
.brand .sub{font-size:.55rem;letter-spacing:.42em;text-transform:uppercase;opacity:.85;font-weight:300;padding-left:.15em}
.nav{display:flex;gap:2.1rem;align-items:center}
.nav a{font-size:.76rem;text-transform:uppercase;letter-spacing:.16em;font-weight:400;position:relative;padding:.3em 0;transition:.3s}
.nav a::after{content:"";position:absolute;left:0;bottom:-2px;width:100%;height:1px;background:var(--gold-2);transform:scaleX(0);transform-origin:center;transition:.35s var(--ease)}
.nav a:hover::after,.nav a.active::after{transform:scaleX(1)}
.header-cta{display:flex;align-items:center;gap:1.2rem}

/* scrolled / solid state */
.site-header.solid{background:rgba(247,241,231,.94);backdrop-filter:blur(10px);color:var(--ink);box-shadow:0 1px 0 var(--line)}
.site-header.solid .brand .sub{opacity:.6}
.site-header.solid .nav a::after{background:var(--gold)}
.site-header.solid .icon-btn{color:var(--ink)}
/* pages without a hero use solid header from the start */
body.has-topbar{padding-top:0}

.icon-btn{background:none;border:none;color:var(--paper);cursor:pointer;display:inline-flex;padding:.3em}
.menu-toggle{display:none;flex-direction:column;gap:5px;width:30px}
.menu-toggle span{display:block;height:1.5px;width:100%;background:currentColor;transition:.35s var(--ease)}

/* mobile drawer */
.drawer{position:fixed;inset:0;z-index:200;visibility:hidden;pointer-events:none}
.drawer__scrim{position:absolute;inset:0;background:rgba(10,12,18,.55);opacity:0;transition:.4s}
.drawer__panel{position:absolute;top:0;right:0;height:100%;width:min(84vw,380px);background:var(--paper);color:var(--ink);
  transform:translateX(100%);transition:transform .5s var(--ease);display:flex;flex-direction:column;padding:2rem 2rem 2.5rem;box-shadow:var(--shadow)}
.drawer.open{visibility:visible;pointer-events:auto}
.drawer.open .drawer__scrim{opacity:1}
.drawer.open .drawer__panel{transform:none}
.drawer__panel .close{align-self:flex-end;font-size:1.6rem;background:none;border:none;cursor:pointer;line-height:1}
.drawer nav{display:flex;flex-direction:column;margin-top:1.5rem}
.drawer nav a{font-family:var(--f-display);font-size:1.7rem;padding:.5rem 0;border-bottom:1px solid var(--line)}
.drawer .drawer-contact{margin-top:auto;font-size:.8rem;letter-spacing:.05em;color:var(--muted)}
.drawer .drawer-contact a{color:var(--gold);display:block;margin-top:.3em}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;color:var(--paper);overflow:hidden}
.hero__media{position:absolute;inset:0;z-index:0}
.hero__media video,.hero__media img{width:100%;height:100%;object-fit:cover}
.hero__media::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.34)}
.hero__inner{position:relative;z-index:2;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter);width:100%}
.hero__inner .kicker{color:var(--gold-soft);text-shadow:0 1px 12px rgba(0,0,0,.5)}
.hero h1{max-width:16ch;margin-bottom:.3em;text-shadow:0 2px 26px rgba(0,0,0,.55),0 1px 3px rgba(0,0,0,.4)}
.hero .hero-sub{font-size:clamp(1rem,1.5vw,1.25rem);max-width:46ch;color:#f0ebe0;font-weight:300;margin-bottom:2em;text-shadow:0 1px 14px rgba(0,0,0,.6)}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero__scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:2;
  font-size:.62rem;letter-spacing:.35em;text-transform:uppercase;color:#e9e3d6;display:flex;flex-direction:column;align-items:center;gap:.6rem}
.hero__scroll::after{content:"";width:1px;height:42px;background:linear-gradient(var(--gold-2),transparent);animation:pulseline 2.4s var(--ease) infinite}
@keyframes pulseline{0%,100%{opacity:.3;height:26px}50%{opacity:1;height:46px}}

/* page hero (interior) */
.page-hero{position:relative;padding:clamp(140px,18vw,220px) 0 clamp(50px,7vw,90px);color:var(--paper);text-align:center;overflow:hidden}
.page-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,17,24,.72),rgba(15,17,24,.82))}
.page-hero .bgimg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1}
.page-hero .wrap{position:relative;z-index:2}
.page-hero h1{margin-bottom:.2em}
.page-hero p{color:#d8d1c3;max-width:52ch;margin-inline:auto}
.crumbs{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-soft);margin-top:1rem}
.crumbs a:hover{color:#fff}

/* ============================================================
   MARQUEE (brands)
   ============================================================ */
.marquee{overflow:hidden;border-block:1px solid var(--line);padding:1.4rem 0;background:var(--paper)}
.marquee__track{display:flex;gap:4rem;width:max-content;animation:scrollx 32s linear infinite}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee span{font-family:var(--f-display);font-size:clamp(1.3rem,2.4vw,2rem);white-space:nowrap;color:var(--ink);opacity:.72;letter-spacing:.02em}
.marquee span::after{content:"✦";margin-left:4rem;color:var(--gold);font-size:.7em;vertical-align:middle}
@keyframes scrollx{to{transform:translateX(-50%)}}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,80px);align-items:center}
.split--wide-img{grid-template-columns:1.15fr .85fr}
.split img{border-radius:var(--radius);box-shadow:var(--shadow)}
/* keep split-section images balanced against the text (no towering portraits) */
.split .split-img img{width:100%;aspect-ratio:4/5;max-height:520px;object-fit:cover;object-position:center}
.stack>*+*{margin-top:1rem}

.section-head{max-width:640px;margin:0 auto clamp(40px,5vw,64px)}
.section-head.left{margin-inline:0}

/* feature cards / services */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:clamp(20px,2.5vw,32px)}
.fcard{position:relative;overflow:hidden;border-radius:var(--radius);background:var(--cream-card);border:1px solid var(--line)}
.fcard__img{aspect-ratio:4/5;overflow:hidden}
.fcard__img img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.fcard:hover .fcard__img img{transform:scale(1.06)}
.fcard__body{padding:1.6rem 1.6rem 1.9rem}
.fcard h3{margin-bottom:.35em}
.fcard p{font-size:.92rem;color:var(--muted);margin-bottom:1em}

/* small feature list (why / process) */
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem 2.4rem}
.feature{padding-top:1.4rem;border-top:1px solid var(--line)}
.bg-ink .feature{border-color:rgba(255,255,255,.16)}
.feature .num{font-family:var(--f-display);font-size:1.1rem;color:var(--gold);letter-spacing:.1em}
.feature h3{font-size:1.25rem;margin:.4em 0 .3em}
.feature p{font-size:.9rem;color:var(--muted);margin:0}
.bg-ink .feature p{color:#bdb6a8}

/* always two columns (client request) — even on mobile, to save vertical space */
.check-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:.65rem 1.6rem}
.check-list li{position:relative;padding-left:1.5em;font-size:.92rem;line-height:1.35}
.check-list li::before{content:"✦";position:absolute;left:0;color:var(--gold);font-size:.85em;top:.15em}

/* ============================================================
   PRODUCT GRID + CARDS
   ============================================================ */
.filters{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:clamp(32px,4vw,52px)}
.filter{border:1px solid var(--line);background:transparent;padding:.7em 1.4em;font-size:.68rem;text-transform:uppercase;letter-spacing:.16em;cursor:pointer;border-radius:100px;transition:.3s;color:var(--muted)}
.filter:hover{border-color:var(--ink);color:var(--ink)}
.filter.active{background:var(--ink);color:var(--paper);border-color:var(--ink)}

.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(270px,1fr));gap:clamp(22px,2.6vw,40px)}
.pcard{display:flex;flex-direction:column;background:var(--cream-card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:.5s var(--ease)}
.pcard:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.pcard__img{position:relative;aspect-ratio:4/5;overflow:hidden;background:var(--paper-2)}
.pcard__img img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
.pcard:hover .pcard__img img{transform:scale(1.07)}
.badge{position:absolute;top:.9rem;left:.9rem;background:var(--gold);color:#fff;font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;padding:.5em .9em;border-radius:2px}
.pcard__cat{position:absolute;bottom:.8rem;left:.9rem;background:rgba(23,26,36,.72);color:#f3ead9;font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;padding:.4em .8em;backdrop-filter:blur(4px)}
.pcard__body{padding:1.2rem 1.2rem 1.5rem;display:flex;flex-direction:column;flex:1}
.pcard__body h3{font-size:1.32rem;margin-bottom:.15em;min-height:2.5em;display:flex;align-items:flex-start}
.pcard__body .tl{font-size:.85rem;color:var(--muted);margin-bottom:.9em;flex:1;min-height:2.6em}
.pcard__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:auto}
.price{font-family:var(--f-display);font-size:1.35rem;color:var(--ink)}
.price small{font-size:.62rem;font-family:var(--f-body);letter-spacing:.14em;text-transform:uppercase;color:var(--muted);display:block}
.price .from{font-size:.62rem;color:var(--muted)}

/* About page — tighter spacing (reduce spacing, not font) + square founder photo */
body[data-page="about"] .section{padding-block:clamp(44px,6vw,80px)}
.founders-split{gap:clamp(28px,4vw,60px);align-items:center}
.founder-bio p{margin-bottom:.8em}
/* small founder portrait tucked under the bio (left column) */
.founder-portrait-small{margin:2rem 0 0;padding-top:1.6rem;border-top:1px solid var(--line);display:flex;align-items:center;gap:1.1rem}
.founder-portrait-small img{width:150px;aspect-ratio:5/4;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow);flex-shrink:0}
.founder-portrait-small figcaption{font-family:var(--f-display);font-size:1.25rem;color:var(--ink);line-height:1.3}
.founder-portrait-small figcaption span{display:block;font-family:var(--f-body);font-size:.66rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-top:.35em}

/* services page groups */
.svc-group + .svc-group{margin-top:clamp(40px,5vw,64px)}
.svc-group__title{font-family:var(--f-display);font-size:clamp(1.3rem,2.4vw,1.9rem);color:var(--gold-2);
  margin-bottom:1.4rem;padding-bottom:.6rem;border-bottom:1px solid rgba(255,255,255,.14)}
.bg-ink .pcard{background:#20242f;border-color:rgba(255,255,255,.1)}
.bg-ink .pcard__body h3{color:#f3efe4}
.bg-ink .pcard .price,.bg-ink .pcard .tl{color:#c9c2b4}

/* branded placeholder (products with no photos yet) */
.ph{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.6rem;text-align:center;padding:1.5rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(176,138,79,.10), transparent 60%),
    repeating-linear-gradient(45deg, rgba(23,26,36,.02) 0 12px, transparent 12px 24px),
    var(--paper-2);
  border:1px solid var(--line);color:var(--ink)}
.ph-emblem{color:var(--gold);opacity:.85;margin-bottom:.2rem}
.ph-name{font-family:var(--f-display);font-size:1.5rem;line-height:1.15;color:var(--ink);max-width:14ch}
.ph-note{font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;color:var(--muted)}
.pd__main .ph{position:relative}
.ph--lg .ph-emblem svg{width:72px;height:72px}
.ph--lg .ph-name{font-size:2.2rem;max-width:16ch}
.ph--lg .ph-note{font-size:.68rem}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,4vw,64px);align-items:start}
.pd__gallery{position:sticky;top:100px}
/* ecommerce stage: vertical thumbnails beside a capped main image */
.pd__stage{display:grid;grid-template-columns:72px 1fr;gap:12px;align-items:start}
.pd__main{position:relative;aspect-ratio:4/5;max-height:600px;overflow:hidden;border-radius:var(--radius);background:var(--paper-2);cursor:zoom-in}
.pd__main img{width:100%;height:100%;object-fit:cover;transition:transform .12s ease-out;will-change:transform}
.pd__main.zoomed img{transform:scale(2.3)}
.zoom-hint{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);background:rgba(23,26,36,.72);color:#f3ead9;font-size:.58rem;letter-spacing:.14em;text-transform:uppercase;padding:.45em .9em;border-radius:100px;pointer-events:none;backdrop-filter:blur(3px);white-space:nowrap}
.pd__main.zoomed .zoom-hint{opacity:0}
.pd__thumbs{display:flex;gap:.7rem;margin-top:.8rem;flex-wrap:wrap}
.pd__thumbs--v{flex-direction:column;margin-top:0;flex-wrap:nowrap;max-height:600px;overflow-y:auto;gap:.55rem;padding-right:2px}
.pd__thumbs button{width:74px;height:90px;border:1px solid var(--line);padding:0;overflow:hidden;cursor:pointer;border-radius:2px;background:none;opacity:.55;transition:.3s;flex-shrink:0}
.pd__thumbs--v button{width:72px;height:88px}
.pd__thumbs button.active,.pd__thumbs button:hover{opacity:1;border-color:var(--gold)}
.pd__thumbs img{width:100%;height:100%;object-fit:cover}

/* fullscreen lightbox */
.lightbox{position:fixed;inset:0;z-index:300;background:rgba(15,16,22,.95);display:flex;align-items:center;justify-content:center;cursor:zoom-out;animation:lbfade .2s ease}
@keyframes lbfade{from{opacity:0}to{opacity:1}}
.lb-img{max-width:90vw;max-height:88vh;object-fit:contain;border-radius:2px;cursor:zoom-in;transition:transform .25s ease}
.lb-img.zin{transform:scale(1.9);cursor:zoom-out}
.lb-close{position:absolute;top:16px;right:24px;font-size:2.4rem;color:#fff;background:none;border:none;cursor:pointer;line-height:1;z-index:2;opacity:.85}
.lb-close:hover{opacity:1}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);font-size:2.4rem;color:#fff;background:rgba(0,0,0,.28);border:none;cursor:pointer;width:52px;height:66px;z-index:2;transition:.25s;display:grid;place-items:center}
.lb-nav:hover{background:var(--gold)}
.lb-prev{left:14px}.lb-next{right:14px}
.lb-count{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);color:#e9e3d6;font-size:.72rem;letter-spacing:.22em}
@media(max-width:760px){
  .pd__stage{grid-template-columns:1fr}
  .pd__thumbs--v{flex-direction:row;flex-wrap:wrap;max-height:none;overflow:visible;margin-top:.8rem;order:2}
  .lb-nav{width:44px;height:56px;font-size:2rem}
}
.pd h1{margin-bottom:.15em}
.pd .tagline{font-family:var(--f-display);font-size:1.3rem;color:var(--gold);font-style:italic;margin-bottom:1.4em}
.price-table{width:100%;border-collapse:collapse;margin:1.2em 0 1.6em}
.price-table td{padding:.7em 0;border-bottom:1px solid var(--line);font-size:.95rem}
.price-table td:last-child{text-align:right;font-family:var(--f-display);font-size:1.2rem;white-space:nowrap;padding-left:1rem}
.rupee::before{content:"₹ "}
/* variant selector */
.variant-box{margin:1.4em 0;padding:1.3rem 1.4rem;background:var(--cream-card);border:1px solid var(--line);border-radius:var(--radius)}
.variant-select{width:100%;font-family:var(--f-body);font-size:.95rem;font-weight:300;color:var(--ink);
  background:var(--white);border:1px solid var(--line);padding:.9em 1em;border-radius:2px;margin-top:.5em;cursor:pointer}
.variant-select:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(176,138,79,.12)}
.variant-price{font-family:var(--f-display);font-size:2.1rem;color:var(--ink);margin-top:.6rem;line-height:1}
.opt-group{margin:1.2em 0}
.opt-group .opt-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.2em;color:var(--muted);margin-bottom:.6em}
.chips{display:flex;flex-wrap:wrap;gap:.5rem}
.chip{border:1px solid var(--line);padding:.5em 1em;font-size:.8rem;border-radius:100px;cursor:default;background:var(--cream-card)}
.pd .note{background:var(--paper-2);border-left:2px solid var(--gold);padding:1em 1.2em;font-size:.88rem;color:#5a5346;margin:1.4em 0}
.pd-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin:1.6em 0}
.accordion{border-top:1px solid var(--line);margin-top:1.8em}
.acc-item{border-bottom:1px solid var(--line)}
.acc-head{width:100%;text-align:left;background:none;border:none;padding:1.1em 0;font-family:var(--f-body);font-size:.78rem;text-transform:uppercase;letter-spacing:.14em;cursor:pointer;display:flex;justify-content:space-between;align-items:center;color:var(--ink)}
.acc-head .pm{font-size:1.2rem;transition:.3s;color:var(--gold)}
.acc-item.open .pm{transform:rotate(45deg)}
.acc-body{max-height:0;overflow:hidden;transition:max-height .45s var(--ease)}
.acc-body-inner{padding:0 0 1.3em;font-size:.92rem;color:var(--muted)}
.acc-body-inner ul{margin:.4em 0 0;padding-left:1.1em}

/* ============================================================
   CART & CHECKOUT
   ============================================================ */
.cart-link{position:relative;display:inline-flex;align-items:center;color:inherit}
.cart-count{position:absolute;top:-6px;right:-9px;background:var(--gold);color:#fff;font-size:.58rem;
  min-width:17px;height:17px;border-radius:100px;display:grid;place-items:center;padding:0 4px;font-weight:400}
.cart-layout{display:grid;grid-template-columns:1.55fr .95fr;gap:clamp(28px,4vw,56px);align-items:start}
.cart-item{display:grid;grid-template-columns:92px 1fr auto auto;gap:1.2rem;align-items:center;
  padding:1.3rem 0;border-bottom:1px solid var(--line)}
.ci-img{width:92px;height:112px;object-fit:cover;border-radius:2px;background:var(--paper-2)}
.ph-mini{display:grid;place-items:center;color:var(--gold);border:1px solid var(--line);background:var(--paper-2)}
.ph-mini svg{width:30px;height:30px}
.ci-info h3{font-size:1.2rem;margin:0 0 .15em}
.ci-variant{font-size:.82rem;color:var(--muted)}
.ci-perso{font-size:.8rem;color:var(--gold);margin-top:.3em;line-height:1.45}
.ci-remove{background:none;border:none;color:var(--muted);font-size:.7rem;text-transform:uppercase;
  letter-spacing:.16em;cursor:pointer;padding:.5em 0 0;text-decoration:underline}
.ci-remove:hover{color:var(--ink)}
.ci-qty{display:flex;align-items:center;border:1px solid var(--line);border-radius:100px;overflow:hidden;background:var(--cream-card)}
.ci-qty button{background:none;border:none;width:32px;height:36px;cursor:pointer;font-size:1rem;color:var(--ink)}
.ci-qty button:hover{background:var(--paper-2)}
.ci-qty input{width:40px;text-align:center;border:none;background:none;font-family:var(--f-body);font-size:.9rem;-moz-appearance:textfield}
.ci-qty input::-webkit-outer-spin-button,.ci-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.ci-price{font-family:var(--f-display);font-size:1.25rem;white-space:nowrap;min-width:86px;text-align:right}
.cart-summary{background:var(--cream-card);border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;position:sticky;top:100px}
.cart-summary h3{font-size:1.35rem;margin-bottom:1.2rem}
.sum-row{display:flex;justify-content:space-between;gap:1rem;padding:.55em 0;font-size:.92rem;color:var(--muted)}
.sum-row strong{color:var(--ink)}
.sum-total{display:flex;justify-content:space-between;gap:1rem;padding-top:.9em;margin-top:.5em;
  border-top:1px solid var(--line);font-family:var(--f-display);font-size:1.5rem}
.co-line{display:flex;justify-content:space-between;gap:1rem;padding:.8em 0;border-bottom:1px solid var(--line);font-size:.88rem}
.co-name small{color:var(--muted)}
.co-var{color:var(--gold);font-size:.76rem;line-height:1.5}
/* personalisation block on product page */
.perso{margin:1.4em 0;padding:1.3rem 1.4rem;background:var(--paper-2);border-left:2px solid var(--gold)}
.perso .opt-group:first-child{margin-top:0}
.qty-input{max-width:110px}
.perso-err{color:#a1332b;font-size:.82rem;margin:.6em 0 0}
.pd__videos{display:grid;gap:14px}
.pd__videos .reel{aspect-ratio:9/16}

/* ============================================================
   GALLERY / REELS
   ============================================================ */
.mosaic{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;grid-auto-rows:220px}
.mosaic a{overflow:hidden;border-radius:var(--radius);position:relative}
.mosaic img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.mosaic a:hover img{transform:scale(1.07)}
.mosaic .tall{grid-row:span 2}
.mosaic .wide{grid-column:span 2}
.reels{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.reel{position:relative;aspect-ratio:9/16;border-radius:var(--radius);overflow:hidden;background:#000;box-shadow:var(--shadow)}
.reel video{width:100%;height:100%;object-fit:cover}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-block{max-width:820px;margin-inline:auto;text-align:center}
.quote-block .q{font-family:var(--f-display);font-size:clamp(1.6rem,3.2vw,2.6rem);line-height:1.3;font-style:italic}
.quote-block .q::before{content:"“";color:var(--gold);font-size:1.2em;line-height:0;vertical-align:-.3em;margin-right:.05em}

/* ============================================================
   FORMS
   ============================================================ */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem 1.4rem}
.field{display:flex;flex-direction:column;gap:.45em}
.field.full{grid-column:1/-1}
.field label{font-size:.68rem;text-transform:uppercase;letter-spacing:.18em;color:var(--muted)}
.field input,.field select,.field textarea{
  font-family:var(--f-body);font-size:.95rem;font-weight:300;color:var(--ink);
  background:var(--cream-card);border:1px solid var(--line);padding:.9em 1em;border-radius:2px;transition:.3s;width:100%}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(176,138,79,.12)}
.form-note{font-size:.8rem;color:var(--muted)}

/* contact info list */
.info-list{list-style:none;padding:0;margin:0;display:grid;gap:1.6rem}
.info-list li{display:flex;gap:1rem;align-items:flex-start}
.info-list .ic{color:var(--gold);flex-shrink:0;margin-top:.2em}
.info-list .lbl{font-size:.68rem;text-transform:uppercase;letter-spacing:.2em;color:var(--muted);margin-bottom:.2em}
.info-list a:hover{color:var(--gold)}

/* ============================================================
   FAQ / POLICY
   ============================================================ */
.prose{max-width:820px;margin-inline:auto}
.prose h2{margin-top:1.6em;font-size:1.9rem}
.prose h3{margin-top:1.4em;color:var(--gold)}
.prose ul{padding-left:1.2em}
.prose li{margin-bottom:.4em}
.policy-nav{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-bottom:3rem}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--ink);color:#c8c1b3;padding:clamp(56px,7vw,90px) 0 2rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem}
.site-footer h4{color:var(--paper);font-family:var(--f-body);font-size:.72rem;text-transform:uppercase;letter-spacing:.24em;font-weight:400;margin-bottom:1.4rem}
.site-footer a{font-size:.9rem;display:inline-block;margin-bottom:.55rem;transition:.3s}
.site-footer a:hover{color:var(--gold-2)}
.site-footer .fbrand .mark{font-family:var(--f-display);font-size:1.9rem;color:var(--paper);letter-spacing:.02em}
.site-footer .fbrand p{font-size:.9rem;max-width:32ch;margin-top:.8rem}
.social{display:flex;gap:1rem;margin-top:1.3rem}
.social a{width:38px;height:38px;border:1px solid rgba(255,255,255,.2);border-radius:50%;display:grid;place-items:center;margin:0}
.social a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.footer-bottom{margin-top:3.5rem;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.12);display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.78rem;color:#8f887b}

/* floating whatsapp */
.wa-float{position:fixed;bottom:22px;right:22px;z-index:90;width:56px;height:56px;border-radius:50%;background:#25D366;display:grid;place-items:center;box-shadow:0 10px 30px -8px rgba(0,0,0,.4);transition:.3s}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:30px;height:30px;fill:#fff}

/* reveal on scroll — progressive enhancement.
   Content is VISIBLE by default; the hidden start state is only applied when JS
   is confirmed running (html.js). If JS fails, nothing is ever invisible. */
.reveal{opacity:1;transform:none}
html.js .reveal{opacity:0;transform:translateY(28px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
html.js .reveal.in{opacity:1;transform:none}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .nav,.header-cta .link-underline{display:none}
  .menu-toggle{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr}
  .pd__gallery{position:static}
  .mosaic{grid-template-columns:repeat(2,1fr);grid-auto-rows:200px}
}
@media(max-width:760px){
  .split,.pd{grid-template-columns:1fr}
  .split--rev .split-img{order:-1}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cart-layout{grid-template-columns:1fr}
  .cart-summary{position:static}
  .cart-item{grid-template-columns:70px 1fr;gap:.9rem 1rem}
  .ci-img{width:70px;height:86px}
  .ci-qty{grid-column:1/2;justify-self:start}
  .ci-price{grid-column:2/3;text-align:right}
  .hero__scroll{display:none}
  .pd__gallery{position:static}
  /* phones: a touch more veil, still light so the video shows through */
  .hero__media::after{background:rgba(0,0,0,.42)}
  .hero{align-items:flex-end}
  .hero__inner{padding-bottom:12vh}
}
@media(max-width:480px){
  .mosaic{grid-template-columns:1fr;grid-auto-rows:260px}
  .mosaic .wide{grid-column:auto}
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
  html{scroll-behavior:auto}
}
