:root{
  /* Upscale, warm-neutral palette */
  --paper: #FBF7F2;         /* warm ivory */
  --paper-deep: #F3EEE9;    /* slightly warmer surface */
  --ink: #13110f;           /* near-black charcoal */
  --ink-soft: #625950;      /* warm taupe */
  --gold: #B98F3B;          /* rich warm gold accent */
  --muted: #877c72;        /* muted stone */
  --accent: #C27A6B;       /* soft terracotta accent for subtle highlights */
  --line: rgba(19,16,13,0.08);
  --radius: 14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background: radial-gradient(1200px 600px at 10% 8%, rgba(195,138,92,0.03), transparent 12%),
              linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  color:var(--ink);
  font-family:'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  line-height:1.7;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
h1,h2,h3{ font-family:'Playfair Display', serif; font-weight:600; color:var(--ink); }
.script{ font-family:'Yellowtail', cursive; font-weight:400; }
.label{ font-family:'Jost', sans-serif; text-transform:uppercase; letter-spacing:0.2em; font-size:0.72rem; color:var(--ink-soft); }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:980px; margin:0 auto; padding:0 28px; }

/* Header */
header{
  position:sticky; top:0; z-index:50; background:rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:18px 20px; }
.brand{ display:flex; align-items:center; gap:14px; }
.brand img{ height:46px; width:auto; filter:drop-shadow(0 6px 18px rgba(20,18,15,0.06)); background:transparent; }
.brand .wordmark{ font-family:'Playfair Display', serif; font-size:1.15rem; letter-spacing:0.01em; color:var(--ink); }
.brand .wordmark{ display:inline-block; }
.hero-mark img{ width:min(300px, 80vw); height:auto; display:block; margin:0 auto; filter:drop-shadow(0 22px 40px rgba(19,16,13,0.09)); background:transparent; }
nav ul{ list-style:none; display:flex; gap:28px; font-size:0.95rem; }
nav a{ color:var(--muted); padding:6px 0; position:relative; }
nav a:hover, nav a:focus{ color:var(--ink); }

.mobile-toggle{ display:none; }
.mobile-nav{ display:none; }
@media (max-width:760px){
  nav ul{ display:none; }
  .mobile-toggle{ display:block; background:transparent; border:0; padding:8px; cursor:pointer; }
  .mobile-nav{ display:none; position:absolute; top:72px; right:16px; background:var(--paper); border:1px solid var(--line); padding:14px; border-radius:10px; box-shadow:0 20px 50px rgba(20,18,15,0.08); }
}

/* Header actions: Instagram and schedule button */
.header-actions{ display:flex; gap:12px; align-items:center; }
.header-actions .insta{ color:var(--muted); font-weight:600; font-size:0.95rem; }
.header-actions .insta:hover{ color:var(--ink); }
.header-actions .schedule{ padding:8px 14px; font-size:0.9rem; }

/* Hero */
.hero{ padding:96px 0 72px; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.hero h1{ font-size:clamp(2.4rem, 5.6vw, 3.6rem); line-height:1.08; max-width:14ch; color:var(--ink); }
.hero p.sub{ margin-top:18px; max-width:56ch; color:var(--muted); font-size:1.05rem; }
.cta-row{ display:flex; gap:16px; margin-top:34px; }
.btn{ font-weight:600; padding:12px 28px; border-radius:999px; border:1px solid transparent; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease; }
.btn-solid{ background:var(--ink); color:white; box-shadow: 0 8px 24px rgba(20,18,15,0.08); }
.btn-outline{ background:transparent; color:var(--ink); border:1px solid rgba(20,18,15,0.06); }
.btn:hover{ transform:translateY(-2px); }
.btn:focus{ outline:2px solid var(--gold); outline-offset:4px; }

hr.ornament{ border:none; height:1px; background:var(--line); position:relative; margin:0; }
hr.ornament::after{ content:"❊"; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); background:var(--paper); padding:0 14px; color:var(--gold); font-size:1rem; }

section{ padding:64px 0; }
.section-head{ text-align:center; margin-bottom:46px; }
.section-head h2{ font-size:1.9rem; }

.grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:28px; }
.product-card{ text-align:left; padding:18px 18px 12px; border-radius:18px; background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.35)); box-shadow:0 6px 26px rgba(19,16,13,0.04); transition:transform .22s ease, box-shadow .22s ease; }
.product-card:hover{ transform:translateY(-6px); box-shadow:0 28px 70px rgba(19,16,13,0.08); }
.product-frame{ width:100%; min-height:280px; display:flex; align-items:center; justify-content:center; margin:0 0 18px 0; padding:18px 12px 12px; background:radial-gradient(circle at 50% 32%, rgba(201,153,105,0.06), transparent 35%), linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.25)); border-radius:18px; position:relative; overflow:visible; }

/* soft vignette to blend transparent product edges into background */
.product-frame::after{ content:""; position:absolute; inset:6px; border-radius:14px; pointer-events:none; box-shadow: inset 0 22px 40px rgba(19,16,13,0.02); }
.carousel-item.gajra .product-frame{ background:transparent; padding:0; }
.carousel-item.gajra .product-frame img{ filter:none; box-shadow:none; background:transparent; border-radius:0; }
.product-frame svg{ width:56%; height:56%; }
.product-frame img{ width:100%; max-width:360px; height:100%; object-fit:contain; display:block; filter:drop-shadow(0 22px 34px rgba(19,16,13,0.10)); background:transparent; cursor:zoom-in; transition:transform .22s ease, filter .22s ease; will-change:transform, filter; border-radius:10px; }

/* Images with transparent PNGs often need a subtle inner glow to avoid looking 'patched' */
.product-frame img.transparent-enhance{ mix-blend-mode:normal; box-shadow: 0 10px 30px rgba(19,16,13,0.06); }
.product-card h3{ font-size:1.1rem; margin-bottom:6px; }
.product-card .meta{ font-size:0.9rem; color:var(--muted); margin-bottom:6px; }

.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
@media (max-width:820px){ .process{ grid-template-columns:repeat(2,1fr);} }
.process-step{ text-align:center; }
.process-step .ring{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; background:linear-gradient(180deg, rgba(191,162,106,0.12), transparent); color:var(--ink); font-family:'Playfair Display', serif; }

.about{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:48px; align-items:center; background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.45)); padding:56px 0; border-radius:14px; }
.about-frame{ display:flex; align-items:center; justify-content:center; max-width:360px; margin:0 auto; border-radius:12px; background:linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6)); box-shadow:0 18px 40px rgba(20,18,15,0.04); padding:20px; }
.about h2{ font-size:1.9rem; margin-bottom:12px; }
.about p{ color:var(--muted); margin-bottom:12px; max-width:56ch; }
.about .sig{ font-family:'Yellowtail', cursive; font-size:1.4rem; color:var(--gold); }
@media (max-width:800px){ .about{ grid-template-columns:1fr; } }

.quote-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:26px; }
.quote-card{ text-align:left; padding:18px; border-left:4px solid rgba(185,143,59,0.14); background:linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.25)); }
.quote-card p{ font-family:'Playfair Display', serif; font-style:italic; font-size:1.05rem; margin-bottom:12px; color:var(--ink); }
.quote-card .who{ font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); }

.artistry-intro{
  padding:92px 0 54px;
  text-align:center;
}
.artistry-intro .wrap{
  max-width:920px;
}
.artistry-intro .label{
  display:inline-block;
  letter-spacing:0.28em;
  margin-bottom:22px;
  font-size:0.72rem;
}
.artistry-intro h2{
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  margin-bottom:16px;
}
.artistry-intro p{
  max-width:760px;
  margin:0 auto;
  font-size:1.1rem;
  line-height:1.8;
  color:var(--muted);
}

.artistry-intro .artistry-logo{
  display:block;
  margin:0 auto 22px;
  width:auto;
  height:120px;
  object-fit:contain;
  filter:drop-shadow(0 18px 30px rgba(19,16,13,0.06));
}

@media (max-width:720px){ .artistry-intro .artistry-logo{ height:96px; margin-bottom:16px; } }

.newsletter{ background:linear-gradient(180deg, #15120f 0%, #1a1917 100%); color:var(--paper); text-align:center; padding:56px 0; border-radius:12px; }
.newsletter h2{ color:var(--paper); font-size:2rem; margin-bottom:10px; }
.newsletter p{ color:rgba(255,255,255,0.85); max-width:44ch; margin:0 auto 24px; }
.signup{ display:flex; max-width:480px; margin:0 auto; background:rgba(255,255,255,0.04); padding:6px; border-radius:999px; align-items:center; }
.signup input{ flex:1; padding:12px 16px; border:0; background:transparent; color:var(--paper); font-size:0.95rem; }
.signup input::placeholder{ color:rgba(255,255,255,0.6); }
.signup button{ background:var(--gold); color:var(--ink); border-radius:999px; border:0; padding:10px 18px; margin-right:4px; font-weight:700; }
@media (max-width:480px){ .signup{ flex-direction:column; gap:8px; padding:8px; } }

footer{ padding:44px 0; }
.footer-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.9rem; color:var(--muted); }

.reveal{ opacity:0; transform:translateY(14px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* Responsive layout tweaks */
@media (max-width:920px){
  .hero{ grid-template-columns:1fr; text-align:center; padding:56px 0; }
  .hero-mark{ order:-1; margin-bottom:18px; }
}

/* Carousel styles */
.product-carousel{ position:relative; display:flex; align-items:center; gap:12px; }
.carousel-track{ display:flex; gap:20px; overflow-x:auto; padding:14px 8px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.carousel-item{ flex:0 0 260px; scroll-snap-align:center; display:flex; align-items:stretch; }
.carousel-item .product-card{ width:100%; }
.carousel-btn{ background:var(--paper); border:1px solid var(--line); padding:10px 12px; border-radius:10px; cursor:pointer; box-shadow:0 8px 20px rgba(20,18,15,0.06); font-size:20px; line-height:1; }
.carousel-btn:focus{ outline:2px solid var(--gold); }
.carousel-btn.prev{ margin-left:6px; }
.carousel-btn.next{ margin-right:6px; }
.product-card .view{ display:inline-block; margin-top:10px; color:var(--ink); font-weight:700; }

/* Selected (centered) card styling */
.product-card.selected{ transform:translateY(-8px); box-shadow:0 24px 60px rgba(20,18,15,0.12); }
.product-card:hover .product-frame img{ transform:scale(1.03); }

.btn:focus, .carousel-btn:focus{ outline:3px solid var(--gold); outline-offset:4px; }

/* Placeholder visuals when product images are removed */
.product-frame.placeholder{ min-height:220px; padding:28px; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.45)); }
.product-frame.placeholder .placeholder-visual{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--muted); }
.product-frame.placeholder svg{ opacity:0.95; filter:drop-shadow(0 12px 24px rgba(19,16,13,0.06)); }

@media (min-width:1100px){ .carousel-item{ flex:0 0 320px; } }
@media (max-width:520px){ .carousel-item{ flex:0 0 80%; } .carousel-track{ gap:12px; } }

/* visually hide default scrollbar on most browsers while keeping functionality */
.carousel-track{ scrollbar-width:thin; }
.carousel-track::-webkit-scrollbar{ height:8px; }
.carousel-track::-webkit-scrollbar-thumb{ background:rgba(20,18,15,0.07); border-radius:8px; }

.lightbox{ position:fixed; inset:0; display:none; place-items:center; background:rgba(20,18,15,0.78); z-index:100; padding:24px; }
.lightbox.open{ display:grid; }
.lightbox img{ max-width:min(92vw, 800px); max-height:88vh; object-fit:contain; border-radius:12px; box-shadow:0 34px 80px rgba(0,0,0,0.45); background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)); }
.lightbox-close{ position:absolute; top:20px; right:20px; width:42px; height:42px; border:1px solid rgba(255,255,255,0.3); border-radius:50%; background:rgba(255,255,255,0.08); color:#fff; font-size:28px; cursor:pointer; }

/* Specific styling to blend the gajra asset into the page */
.product-frame img[src*="hnh_white_gajra"]{ background:transparent; box-shadow:none; filter:none; }
.product-frame img[src*="hnh_white_gajra"]::selection{ background:transparent; }

/* utility: apply softer edges for PNGs with alpha by adding a faint warm backdrop */
.product-frame .png-backdrop{ position:absolute; inset:18px; border-radius:12px; background:radial-gradient(circle at 50% 32%, rgba(201,153,105,0.04), transparent 40%); pointer-events:none; }
