:root {
  --navy: #071832;
  --navy-2: #0b2750;
  --blue: #123f78;
  --cream: #f6f0e4;
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --gold: #d4a83f;
  --gold-light: #f3d982;
  --ink: #111827;
  --muted: #657083;
  --line: rgba(7, 24, 50, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.topbar { background: #030913; color: #f7f2e9; min-height: 32px; display: grid; place-items: center; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 7px 24px; }
.topbar i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.topbar a:hover { color: var(--gold-light); }

.site-header { min-height: 82px; padding: 10px clamp(20px, 5vw, 82px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; background: rgba(250, 246, 237, .96); border-bottom: 1px solid rgba(7, 24, 50, .09); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; min-width: 270px; gap: 11px; }
.brand > img { width: 54px; height: 54px; object-fit: contain; }
.brand > span { display: grid; gap: 2px; }
.brand strong { color: var(--navy); font-family: var(--serif); font-size: 17px; letter-spacing: .055em; }
.brand small { color: #8b6a1d; font-size: 10px; letter-spacing: .06em; }
.site-header nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.3vw, 36px); }
.site-header nav a { color: #2b3441; font-size: 13px; font-weight: 650; position: relative; padding: 12px 0; }
.site-header nav a::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px; background: var(--gold); transition: .25s ease; transform: translateX(-50%); }
.site-header nav a:hover, .site-header nav a[data-active="true"] { color: var(--navy); }
.site-header nav a:hover::after, .site-header nav a[data-active="true"]::after { width: 100%; }
.menu-button { display: none; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 0 22px; border: 1px solid transparent; border-radius: 2px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 28px rgba(212, 168, 63, .17); }
.button-gold:hover { box-shadow: 0 13px 32px rgba(212, 168, 63, .3); }
.button-navy { background: var(--navy); color: white; }
.button-navy:hover { background: var(--blue); }
.button-ghost-light { border-color: rgba(255,255,255,.4); color: white; background: rgba(255,255,255,.04); }
.button-ghost-light:hover { background: white; color: var(--navy); }
.button-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-outline:hover { background: var(--navy); color: white; }
.header-button { min-height: 42px; padding: 0 18px; }

.hero { min-height: calc(100vh - 114px); display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); background: var(--navy); color: white; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(30deg, transparent 47%, rgba(212,168,63,.5) 48%, transparent 49%), linear-gradient(150deg, transparent 47%, rgba(212,168,63,.35) 48%, transparent 49%); background-size: 120px 70px; pointer-events: none; }
.hero-copy { padding: clamp(70px, 9vw, 142px) clamp(38px, 7vw, 112px); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.kicker, .eyebrow { color: #a57d22; font-size: 11px; font-weight: 800; letter-spacing: .18em; line-height: 1.5; text-transform: uppercase; }
.kicker { color: var(--gold-light); display: flex; align-items: center; gap: 12px; }
.kicker span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 760px; margin: 23px 0 24px; font-family: var(--serif); font-size: clamp(50px, 6.1vw, 92px); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lede { max-width: 620px; margin: 0 0 34px; color: #d5dbe5; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-notes { display: flex; gap: 22px; margin-top: 44px; color: #bdc7d7; font-size: 11px; letter-spacing: .04em; }
.hero-notes span { display: flex; align-items: center; gap: 7px; }
.hero-notes span::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.hero-visual { position: relative; min-height: 650px; padding: 4.5vw 5vw 4.5vw 0; display: grid; place-items: center; z-index: 2; }
.hero-image-frame { width: 100%; height: 100%; min-height: 580px; overflow: hidden; position: relative; border: 1px solid rgba(243,217,130,.48); box-shadow: 22px 25px 0 rgba(5,14,29,.54); }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,24,50,.02) 50%, rgba(7,24,50,.66)); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.owner-card { position: absolute; left: -24px; bottom: 8%; width: min(330px, 70%); padding: 18px 22px; display: grid; gap: 5px; background: rgba(251,248,241,.96); color: var(--navy); border-left: 4px solid var(--gold); box-shadow: 0 18px 46px rgba(0,0,0,.22); }
.owner-card span { color: #9a7420; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.owner-card strong { font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.25; }
.hero-seal { position: absolute; right: 18px; top: 8%; width: 92px; height: 92px; display: grid; place-items: center; align-content: center; background: var(--navy); border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 10px 32px rgba(0,0,0,.25); }
.hero-seal b { color: var(--gold-light); font-family: var(--serif); font-size: 22px; letter-spacing: .14em; }
.hero-seal small { color: white; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); border-bottom: 1px solid var(--line); padding: 0 clamp(24px, 6vw, 96px); }
.trust-strip > div { padding: 28px clamp(18px, 4vw, 62px); display: flex; align-items: center; justify-content: center; gap: 16px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border: 0; }
.trust-strip strong { color: var(--gold); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.trust-strip span { color: var(--navy); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }

.section { padding: clamp(76px, 9vw, 132px) clamp(22px, 6vw, 96px); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: white; }
.section-head { max-width: 1320px; margin: 0 auto 45px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section h2, .page-hero h1, .royal-cta h2 { margin: 10px 0 0; color: var(--navy); font-family: var(--serif); font-size: clamp(38px, 4.2vw, 66px); line-height: 1.05; font-weight: 400; letter-spacing: -.035em; }
.section-head h2 { max-width: 690px; }
.text-link { color: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding-bottom: 6px; border-bottom: 1px solid currentColor; white-space: nowrap; }
.text-link span { color: var(--gold); margin-left: 5px; }

.collection-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.collection-card { min-width: 0; background: var(--paper); border: 1px solid rgba(7,24,50,.08); position: relative; transition: transform .3s ease, box-shadow .3s ease; }
.collection-card.reveal, .product-card.reveal { opacity: 1; transform: none; }
.collection-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(7,24,50,.13); }
.collection-image { aspect-ratio: 4 / 3; overflow: hidden; background: #d9d5cc; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collection-card-wedding-pagris .collection-image img,
.product-card-wedding-pagris .product-image img { object-position: center top; }
.collection-card-rajasthani-safas .collection-image img,
.product-card-rajasthani-safas .product-image img { object-position: center 22%; }
.collection-card:hover img { transform: scale(1.045); }
.collection-copy { padding: 21px 23px 25px; }
.collection-copy p { margin: 0 0 8px; color: var(--gold); font-family: var(--serif); font-size: 14px; }
.collection-copy h3 { margin: 0 0 9px; color: var(--navy); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.collection-copy span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.collection-card > a { position: absolute; right: 22px; bottom: 22px; color: var(--navy); font-size: 18px; }

.editorial-split { max-width: 1512px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 7vw, 110px); align-items: center; background: var(--paper); }
.editorial-image { min-height: 650px; position: relative; }
.editorial-image > img { width: 100%; height: 650px; object-fit: cover; object-position: center 28%; }
.image-caption { width: 75%; position: absolute; left: -20px; bottom: 25px; padding: 20px 24px; display: grid; gap: 4px; background: var(--navy); color: white; border-top: 2px solid var(--gold); }
.image-caption span { color: var(--gold-light); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.image-caption strong { font-family: var(--serif); font-size: 19px; }
.editorial-copy { max-width: 570px; }
.editorial-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.85; }
.process-list { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { padding: 17px 0; display: flex; gap: 18px; border-bottom: 1px solid var(--line); }
.process-list b { color: var(--gold); font-family: var(--serif); font-size: 19px; }
.process-list div { display: grid; gap: 4px; }
.process-list strong { color: var(--navy); font-size: 14px; }
.process-list span { color: var(--muted); font-size: 13px; }

.experience-band { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr); gap: clamp(45px, 7vw, 100px); align-items: center; }
.experience-copy { max-width: 510px; }
.eyebrow.light { color: var(--gold-light); }
.experience-band h2 { color: white; }
.experience-copy > p:not(.eyebrow) { color: #bec8d7; line-height: 1.85; margin: 22px 0 30px; }
.experience-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 255px 255px; gap: 14px; }
.experience-gallery img { width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(243,217,130,.23); }
.experience-gallery .wide { grid-row: 1 / 3; }

.royal-cta { padding: clamp(78px, 10vw, 145px) 22px; text-align: center; color: white; background: linear-gradient(rgba(7,24,50,.82), rgba(7,24,50,.94)), url("brand/turban-shop.webp") center / cover; }
.royal-cta .eyebrow { color: var(--gold-light); }
.royal-cta h2 { color: white; max-width: 850px; margin: 13px auto; }
.royal-cta > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 28px; color: #d9e0e9; line-height: 1.7; }

.site-footer { background: #030913; color: #c9d0da; padding: 70px clamp(24px, 6vw, 96px) 22px; }
.footer-main { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr .65fr 1fr; gap: 70px; }
.footer-brand { display: flex; gap: 18px; align-items: start; }
.footer-brand img { width: 78px; height: 78px; object-fit: contain; }
.footer-brand strong { color: white; font-family: var(--serif); font-size: 22px; letter-spacing: .05em; }
.footer-brand p, .footer-main p { max-width: 430px; margin: 10px 0; font-size: 13px; line-height: 1.8; }
.footer-main h3 { margin: 3px 0 16px; color: var(--gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main a { font-size: 13px; }
.footer-main a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1320px; margin: 55px auto 0; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #7f8997; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-whatsapp { display: none; }
.quick-actions { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: grid; justify-items: end; gap: 10px; }
.quick-action { width: 148px; min-height: 52px; padding: 5px 5px 5px 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: white; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; box-shadow: 0 12px 30px rgba(3,9,19,.28); backdrop-filter: blur(10px); transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.quick-action:hover, .quick-action:focus-visible { transform: translateX(-4px); box-shadow: 0 16px 38px rgba(3,9,19,.38); filter: brightness(1.05); }
.quick-action:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.quick-action-label { font-size: 10px; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; white-space: nowrap; }
.quick-action-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); }
.quick-action-icon svg { width: 21px; height: 21px; fill: currentColor; }
.quick-action-whatsapp { background: linear-gradient(135deg, #159847, #25d366); }
.quick-action-call { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.quick-action-location { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-color: rgba(7,24,50,.16); }

/* Internal pages */
.page-hero { padding: clamp(60px, 8vw, 112px) clamp(22px, 6vw, 96px); color: white; background: var(--navy); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(120deg, transparent 0 42px, rgba(212,168,63,.35) 43px, transparent 44px 86px); }
.page-hero-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr .74fr; align-items: center; gap: clamp(42px, 7vw, 100px); position: relative; z-index: 2; }
.page-hero h1 { color: white; max-width: 780px; font-size: clamp(48px, 5.5vw, 82px); }
.page-hero-copy > p:not(.eyebrow) { max-width: 640px; margin: 22px 0 0; color: #c8d1df; font-size: 17px; line-height: 1.8; }
.page-hero-image { height: 450px; overflow: hidden; border: 1px solid rgba(243,217,130,.45); box-shadow: 18px 18px 0 rgba(2,9,20,.42); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.content-wrap { max-width: 1320px; margin: 0 auto; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.intro-grid h2 { margin-top: 0; }
.rich-copy p { color: var(--muted); font-size: 16px; line-height: 1.9; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.feature-card { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.feature-card b { color: var(--gold); font-family: var(--serif); font-size: 21px; }
.feature-card h3 { color: var(--navy); font-family: var(--serif); font-size: 23px; margin: 18px 0 8px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.story-grid img { width: 100%; height: 520px; object-fit: cover; }
.story-panel { padding: clamp(40px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.story-panel p:not(.eyebrow) { color: var(--muted); line-height: 1.85; }

.products-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.products-intro p:last-child { color: var(--muted); line-height: 1.8; }
.product-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { scroll-margin-top: 120px; background: white; border: 1px solid var(--line); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 25px 55px rgba(7,24,50,.13); }
.product-image { aspect-ratio: 4 / 3; overflow: hidden; background: #ddd7cc; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.product-card:nth-child(2) .product-image img { object-position: center 18%; }
.product-card:hover img { transform: scale(1.05); }
.product-body { padding: 25px; }
.product-body h2 { font-size: 29px; margin: 7px 0 11px; }
.product-body > p:not(.eyebrow) { min-height: 70px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.photo-credit { display: inline-block; margin: 3px 0 2px; color: #7d8796; font-size: 9px; line-height: 1.45; text-decoration: underline; text-underline-offset: 2px; }
.product-meta { margin: 20px 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.stock-note { max-width: 1320px; margin: 30px auto 0; color: var(--muted); font-size: 12px; text-align: center; }

.wedding-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wedding-card { padding: 34px; min-height: 270px; display: flex; flex-direction: column; justify-content: end; color: white; background: var(--navy); border-top: 3px solid var(--gold); }
.wedding-card span { color: var(--gold-light); font-family: var(--serif); font-size: 25px; }
.wedding-card h3 { margin: 15px 0 8px; font-family: var(--serif); font-size: 27px; }
.wedding-card p { margin: 0; color: #c7d0dd; font-size: 14px; line-height: 1.75; }
.wedding-editorial { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.wedding-editorial > img { width: 100%; min-height: 620px; object-fit: cover; object-position: center 20%; }
.wedding-editorial > div { padding: clamp(45px, 7vw, 100px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.wedding-editorial p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.check-list { padding: 0; margin: 24px 0 32px; list-style: none; }
.check-list li { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 14px; }
.check-list li::before { content: "◆"; color: var(--gold); font-size: 8px; margin-right: 12px; }

.contact-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px; }
.contact-details { padding: clamp(38px, 5vw, 66px); background: var(--navy); color: white; }
.contact-details h2 { color: white; margin-bottom: 24px; }
.contact-item { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-item small { display: block; margin-bottom: 7px; color: var(--gold-light); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.contact-item p, .contact-item a { margin: 0; color: #d7dee8; font-size: 14px; line-height: 1.75; }
.contact-form { padding: clamp(38px, 5vw, 66px); background: white; border: 1px solid var(--line); }
.contact-form h2 { margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d7d8dc; background: #fbfaf7; padding: 13px 14px; color: var(--ink); outline: 0; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,63,.12); }
.map-band { min-height: 330px; display: grid; place-items: center; text-align: center; background: linear-gradient(rgba(246,240,228,.9), rgba(246,240,228,.9)), url("brand/store-wall.webp") center / cover; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

/* Approved royal homepage polish */
.topbar-ticker {
  min-height: 34px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #020711 0%, #091b36 48%, #020711 100%);
}
.topbar-ticker::before,
.topbar-ticker::after {
  content: "";
  width: clamp(28px, 7vw, 110px);
  position: absolute;
  inset-block: 0;
  z-index: 2;
  pointer-events: none;
}
.topbar-ticker::before { left: 0; background: linear-gradient(90deg, #020711, transparent); }
.topbar-ticker::after { right: 0; background: linear-gradient(270deg, #020711, transparent); }
.topbar-viewport { width: 100%; overflow: hidden; }
.topbar-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: topbar-scroll 28s linear infinite;
}
.topbar-set {
  flex: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 42px 8px 0;
}
.topbar-item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.topbar-diamond { width: 5px; height: 5px; flex: 0 0 5px; background: var(--gold); transform: rotate(45deg); }
@keyframes topbar-scroll { to { transform: translateX(-50%); } }

.hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(35, 83, 143, .32), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(212, 168, 63, .08), transparent 31%),
    linear-gradient(135deg, #020914 0%, #071a36 50%, #0a2b55 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(243, 217, 130, .25);
  pointer-events: none;
}
.hero-copy::before {
  content: "";
  width: 1px;
  position: absolute;
  left: clamp(24px, 3.6vw, 58px);
  top: 17%;
  bottom: 17%;
  background: linear-gradient(transparent, rgba(243, 217, 130, .72), transparent);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4% 8%;
  background: radial-gradient(circle, rgba(36, 92, 156, .36), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.hero-image-frame {
  border-color: rgba(243, 217, 130, .62);
  box-shadow: 22px 25px 0 rgba(2, 8, 17, .62), 0 25px 70px rgba(0, 0, 0, .3);
}
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: 2;
  border: 1px solid rgba(255, 247, 221, .28);
  pointer-events: none;
}
.hero-seal {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(7, 24, 50, .72), 0 14px 38px rgba(0, 0, 0, .34);
}
.hero .button-gold { box-shadow: 0 12px 34px rgba(212, 168, 63, .3); }

.collection-card-wedding-pagris .collection-image img,
.product-card-wedding-pagris .product-image img {
  object-position: center 12%;
  transform: scale(1.12);
}
.collection-card-wedding-pagris:hover .collection-image img,
.product-card-wedding-pagris:hover .product-image img { transform: scale(1.16); }
.collection-card-rajasthani-safas .collection-image,
.product-card-rajasthani-safas .product-image {
  background: linear-gradient(180deg, #08172e 0 58%, #f1dfc4 58% 100%);
}
.collection-card-rajasthani-safas .collection-image img,
.product-card-rajasthani-safas .product-image img {
  object-fit: contain;
  object-position: center;
  transform: none;
}
.collection-card-rajasthani-safas:hover .collection-image img,
.product-card-rajasthani-safas:hover .product-image img { transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 18px; }
  .site-header nav { position: absolute; left: 0; right: 0; top: 100%; padding: 18px 24px 24px; display: none; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(7,24,50,.12); }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 10px 0; }
  .menu-button { display: grid; place-items: center; gap: 5px; justify-self: end; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; }
  .menu-button span { width: 19px; height: 2px; background: var(--navy); transition: .2s; }
  .menu-button.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .header-button { justify-self: end; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 70px 42px; }
  .hero-visual { padding: 42px 36px 42px 0; }
  .hero h1 { font-size: clamp(48px, 7vw, 70px); }
  .hero-notes { flex-direction: column; gap: 9px; }
  .collection-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-band { grid-template-columns: 1fr; }
  .experience-copy { max-width: 700px; }
}

@media (max-width: 760px) {
  .topbar { min-height: 30px; font-size: 8.5px; letter-spacing: .1em; }
  .topbar-inner { width: 100%; justify-content: center; gap: 7px; padding: 6px 10px; white-space: nowrap; overflow: hidden; }
  .topbar-phone, .topbar-phone + i { display: none; }
  .site-header { min-height: 64px; padding: 6px 14px; grid-template-columns: 1fr auto; background: rgba(251, 248, 241, .985); box-shadow: 0 8px 24px rgba(3, 9, 19, .08); }
  .brand { min-width: 0; gap: 8px; }
  .brand > img { width: 43px; height: 43px; }
  .brand strong { font-size: 12px; letter-spacing: .045em; }
  .brand small { font-size: 7.5px; }
  .header-button { display: none; }
  .site-header nav { top: 64px; padding-top: 12px; }
  .menu-button { width: 40px; height: 40px; border-color: rgba(7, 24, 50, .18); border-radius: 50%; }

  .hero { min-height: calc(100svh - 94px); display: block; isolation: isolate; background: #030a15; }
  .hero::before { z-index: 1; opacity: .09; background-size: 78px 46px; }
  .hero-visual { position: absolute; inset: 0; z-index: 0; min-height: 0; padding: 0; display: block; }
  .hero-image-frame { width: 100%; height: 100%; min-height: 0; border: 0; box-shadow: none; }
  .hero-image-frame::after {
    background:
      linear-gradient(180deg, rgba(3,10,21,.08) 0%, rgba(3,10,21,.04) 30%, rgba(3,10,21,.66) 59%, rgba(3,10,21,.97) 100%),
      linear-gradient(90deg, rgba(3,10,21,.22), transparent 68%);
  }
  .hero-image-frame img { object-position: 73% center; }
  .owner-card { display: none; }
  .hero-seal { z-index: 4; width: 66px; height: 66px; right: 15px; top: 18px; background: rgba(7,24,50,.76); backdrop-filter: blur(8px); box-shadow: 0 10px 26px rgba(0,0,0,.24); }
  .hero-seal b { font-size: 17px; }
  .hero-seal small { font-size: 6.5px; }
  .hero-copy { min-height: calc(100svh - 94px); padding: 300px 18px 22px; justify-content: flex-end; }
  .kicker { margin: 0; gap: 9px; font-size: 9px; letter-spacing: .16em; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
  .kicker span { width: 24px; }
  .hero h1 { margin: 12px 0 13px; max-width: 360px; font-size: clamp(39px, 11.9vw, 50px); line-height: .94; text-shadow: 0 3px 26px rgba(0,0,0,.42); }
  .hero-lede { max-width: 350px; margin-bottom: 17px; color: #edf0f5; font-size: 13px; line-height: 1.55; text-shadow: 0 2px 16px rgba(0,0,0,.48); }
  .hero .button-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8px; }
  .hero .button { min-height: 44px; padding: 0 10px; font-size: 9.5px; letter-spacing: .055em; border-radius: 3px; }
  .hero .button-ghost-light { background: rgba(5,16,33,.5); backdrop-filter: blur(8px); }
  .hero-notes { margin-top: 13px; padding: 10px 11px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 10px; color: #e3e8ef; background: rgba(6,19,39,.54); border: 1px solid rgba(255,255,255,.16); border-radius: 3px; backdrop-filter: blur(8px); }
  .hero-notes span { gap: 6px; font-size: 8.5px; line-height: 1.3; }
  .hero-notes span:last-child { display: none; }

  .trust-strip { grid-template-columns: repeat(3, minmax(205px, 1fr)); gap: 0; padding: 0 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip > div { justify-content: flex-start; min-height: 74px; padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 0; scroll-snap-align: start; }
  .trust-strip strong { font-size: 23px; }
  .trust-strip span { font-size: 10px; }
  .section { padding: 72px 20px; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .section h2, .page-hero h1, .royal-cta h2 { font-size: clamp(38px, 11vw, 52px); }
  .collection-grid, .product-grid, .feature-list, .wedding-service-grid { grid-template-columns: 1fr; }
  .collection-grid { gap: 18px; }
  .editorial-split { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .editorial-image, .editorial-image > img { min-height: 500px; height: 500px; }
  .image-caption { left: -7px; width: 88%; }
  .experience-band { padding-left: 20px; padding-right: 20px; }
  .experience-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 190px; }
  .experience-gallery .wide { grid-column: 1 / -1; grid-row: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { flex-direction: column; margin-top: 42px; }
  .quick-actions { right: 12px; bottom: 12px; gap: 8px; }
  .quick-action { width: 49px; min-height: 49px; padding: 4px; }
  .quick-action:hover, .quick-action:focus-visible { transform: translateX(-2px); }
  .quick-action-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .quick-action-icon { width: 39px; height: 39px; flex-basis: 39px; }
  .page-hero { padding: 56px 20px 70px; }
  .page-hero-grid, .intro-grid, .story-grid, .wedding-editorial, .contact-grid { grid-template-columns: 1fr; }
  .page-hero-image { height: 430px; }
  .story-grid img { height: 470px; }
  .story-panel { padding: 50px 25px; }
  .product-body > p:not(.eyebrow) { min-height: 0; }
  .wedding-editorial > img { min-height: 500px; }
  .wedding-editorial > div { padding: 55px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 760px) {
  .topbar-ticker { min-height: 32px; font-size: 8.5px; letter-spacing: .105em; }
  .topbar-ticker .topbar-track { animation-duration: 21s; }
  .topbar-ticker .topbar-set { gap: 14px; padding: 7px 30px 7px 0; }
  .topbar-ticker .topbar-phone { display: inline-flex; }
  .topbar-ticker .topbar-diamond { width: 4px; height: 4px; flex-basis: 4px; }
  .hero::after { inset: 8px; border-color: rgba(243, 217, 130, .32); }
  .hero-copy::before { display: none; }
  .hero-image-frame::before { inset: 9px; border-color: rgba(255, 247, 221, .25); }
  .hero-seal { right: 19px; top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .topbar-track { animation: none !important; }
  .topbar-set[aria-hidden="true"] { display: none; }
}

/* ===== Professional product catalogue ===== */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.catalog-page.modal-open { overflow: hidden; }

.catalog-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(66, 124, 190, .35), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(212, 168, 63, .12), transparent 28%),
    linear-gradient(130deg, #020914 0%, #071832 52%, #0b2d59 100%);
}
.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(30deg, transparent 47%, rgba(212,168,63,.6) 48%, transparent 49%), linear-gradient(150deg, transparent 47%, rgba(212,168,63,.4) 48%, transparent 49%);
  background-size: 108px 64px;
  pointer-events: none;
}
.catalog-hero-inner { max-width: 1440px; margin: 0 auto; min-height: 560px; padding: clamp(54px, 7vw, 96px) clamp(22px, 5.5vw, 80px); display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 6vw, 88px); align-items: center; position: relative; z-index: 2; }
.catalog-hero-copy h1 { margin: 16px 0 22px; max-width: 760px; color: #fff; font-family: var(--serif); font-size: clamp(50px, 5.6vw, 82px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.catalog-hero-copy h1 em { color: var(--gold-light); font-weight: 400; }
.catalog-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 0; color: #cbd5e2; font-size: 16px; line-height: 1.8; }
.catalog-hero-stats { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.catalog-hero-stats span { min-width: 142px; padding: 13px 17px; display: grid; gap: 2px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.catalog-hero-stats b { color: var(--gold-light); font-family: var(--serif); font-size: 22px; font-weight: 500; }
.catalog-hero-stats small { color: #d1d8e3; font-size: 9px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.catalog-hero-visual { height: 420px; position: relative; }
.catalog-hero-visual::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(243,217,130,.42); }
.catalog-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; position: relative; z-index: 1; box-shadow: 0 30px 65px rgba(0,0,0,.28); }
.catalog-hero-badge { position: absolute; right: -16px; bottom: -21px; z-index: 3; width: 108px; height: 108px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 15px 35px rgba(0,0,0,.28); }
.catalog-hero-badge span, .catalog-hero-badge small { font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.catalog-hero-badge strong { margin: -1px 0 -2px; font-family: var(--serif); font-size: 34px; font-weight: 500; }

.catalog-section { padding: clamp(72px, 8vw, 118px) clamp(18px, 5.5vw, 80px) clamp(90px, 9vw, 132px); background: linear-gradient(180deg, #f7f1e5 0%, #fbf8f1 52%, #f4ede0 100%); }
.catalog-heading { max-width: 1320px; margin: 0 auto 34px; display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.catalog-heading h2 { margin: 8px 0 0; color: var(--navy); font-family: var(--serif); font-size: clamp(38px, 4.4vw, 62px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.catalog-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.catalog-toolbar { max-width: 1320px; margin: 0 auto 34px; padding: 12px; display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.84); border: 1px solid rgba(7,24,50,.12); box-shadow: 0 14px 40px rgba(7,24,50,.065); position: sticky; top: 93px; z-index: 22; backdrop-filter: blur(14px); }
.catalog-search-wrap { min-width: 0; flex: 1; height: 52px; display: flex; align-items: center; gap: 11px; padding: 0 14px 0 17px; background: #fffdf8; border: 1px solid rgba(7,24,50,.14); }
.catalog-search-wrap svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-width: 1.8; flex: 0 0 auto; }
.catalog-search-wrap input { width: 100%; height: 100%; min-width: 0; border: 0; outline: 0; color: var(--navy); background: transparent; font-size: 14px; }
.catalog-search-wrap input::placeholder { color: #8c94a1; }
.catalog-search-wrap button { border: 0; padding: 7px 9px; color: #7c8490; background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s ease, color .2s ease; }
.catalog-search-wrap.has-value button { opacity: 1; pointer-events: auto; }
.catalog-search-wrap button:hover { color: var(--navy); }
.catalog-result-count { min-width: 124px; padding: 0 12px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.catalog-result-count span { color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 600; margin-right: 4px; }

.catalog-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.catalog-card { min-width: 0; display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); min-height: 340px; overflow: hidden; background: rgba(255,255,255,.96); border: 1px solid rgba(7,24,50,.11); box-shadow: 0 10px 28px rgba(7,24,50,.045); cursor: pointer; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.catalog-card:hover, .catalog-card:focus-visible { transform: translateY(-5px); border-color: rgba(212,168,63,.48); box-shadow: 0 24px 52px rgba(7,24,50,.12); outline: none; }
.catalog-card[hidden] { display: none !important; }
.catalog-card-image { min-height: 340px; overflow: hidden; position: relative; background: linear-gradient(145deg, #e8e1d5, #d7cdbd); }
.catalog-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(3,11,23,.54)); pointer-events: none; }
.catalog-card-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .58s ease; }
.catalog-card:hover .catalog-card-image > img { transform: scale(1.035); }
.catalog-card-image-contain { background: linear-gradient(145deg, #efe7d9, #ded2bf); }
.catalog-card-image-contain > img { object-fit: contain; padding: 18px; }
.catalog-card-image > span { position: absolute; left: 15px; bottom: 15px; z-index: 2; padding: 7px 9px; color: #fff; background: rgba(4,14,29,.78); border: 1px solid rgba(255,255,255,.18); font-size: 8px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(8px); }
.catalog-view-icon { position: absolute; right: 14px; top: 14px; z-index: 3; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(7,24,50,.68); font-size: 18px; cursor: pointer; backdrop-filter: blur(9px); transition: transform .2s ease, background .2s ease; }
.catalog-view-icon:hover { transform: rotate(8deg); background: var(--navy); }
.catalog-card-body { min-width: 0; padding: 27px 26px 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.catalog-number { margin: 0 0 7px; color: #a17a20; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.catalog-card h3 { margin: 0 0 9px; color: var(--navy); font-family: var(--serif); font-size: clamp(27px, 2.2vw, 35px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.catalog-card-body > div:first-child > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.catalog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.catalog-tags span, .product-modal-tags span { padding: 6px 8px; color: #5c6470; background: #f6f1e8; border: 1px solid rgba(7,24,50,.09); font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.catalog-whatsapp { min-height: 45px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; background: #0b7b42; border: 1px solid #086b3a; font-size: 10px; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.catalog-whatsapp:hover { transform: translateY(-2px); background: #096a39; box-shadow: 0 11px 22px rgba(9,106,57,.2); }
.catalog-whatsapp span { font-size: 16px; }
.catalog-empty { max-width: 1320px; margin: 18px auto 0; padding: 58px 22px; text-align: center; border: 1px dashed rgba(7,24,50,.2); background: rgba(255,255,255,.55); }
.catalog-empty strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 28px; }
.catalog-empty p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.catalog-help { padding: clamp(70px, 8vw, 108px) clamp(20px, 5.5vw, 80px); color: #fff; background: linear-gradient(135deg, #06142a 0%, #0a2a55 100%); }
.catalog-help-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: center; }
.catalog-help h2 { margin: 9px 0 0; color: #fff; font-family: var(--serif); font-size: clamp(38px, 4.3vw, 62px); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
.catalog-help-inner > div:last-child p { margin: 0 0 25px; color: #c8d2df; line-height: 1.8; font-size: 14px; }

.product-modal { position: fixed; inset: 0; z-index: 250; display: none; align-items: center; justify-content: center; padding: 22px; }
.product-modal.open { display: flex; }
.product-modal-backdrop { position: absolute; inset: 0; background: rgba(2,8,18,.78); backdrop-filter: blur(9px); }
.product-modal-panel { width: min(1040px, 100%); max-height: min(760px, calc(100vh - 44px)); display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); overflow: hidden; position: relative; z-index: 1; background: #fffdf8; box-shadow: 0 35px 100px rgba(0,0,0,.38); border: 1px solid rgba(243,217,130,.35); }
.product-modal-close { position: absolute; right: 12px; top: 12px; z-index: 8; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(7,24,50,.14); border-radius: 50%; color: var(--navy); background: rgba(255,253,248,.92); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 8px 20px rgba(7,24,50,.1); }
.product-modal-gallery { min-width: 0; padding: 16px; background: #ebe4d8; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 10px; }
.product-modal-stage { min-height: 0; position: relative; overflow: hidden; background: #ddd4c6; }
.product-modal-stage img { width: 100%; height: 100%; min-height: 490px; max-height: 620px; object-fit: contain; background: #efe9df; }
.product-gallery-nav { position: absolute; top: 50%; z-index: 4; width: 43px; height: 43px; margin-top: -21px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(7,24,50,.78); font-size: 29px; line-height: 1; cursor: pointer; backdrop-filter: blur(6px); }
.product-gallery-nav:disabled { display: none; }
.product-gallery-prev { left: 13px; }
.product-gallery-next { right: 13px; }
.product-gallery-count { position: absolute; right: 12px; bottom: 12px; z-index: 3; padding: 7px 9px; color: #fff; background: rgba(7,24,50,.78); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.product-gallery-thumbs { min-width: 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 2px; }
.product-gallery-thumb { width: 70px; height: 62px; flex: 0 0 70px; padding: 0; overflow: hidden; border: 2px solid transparent; background: #ddd4c6; cursor: pointer; }
.product-gallery-thumb.active { border-color: var(--gold); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-info { min-width: 0; padding: 62px 42px 34px; overflow-y: auto; }
.product-modal-info h2 { margin: 8px 0 10px; color: var(--navy); font-family: var(--serif); font-size: clamp(36px, 3.5vw, 52px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.product-modal-caption { margin: 0 0 18px; color: #9a7420; font-family: var(--serif); font-size: 18px; }
.product-modal-description { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.product-modal-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.product-modal-whatsapp { width: 100%; min-height: 51px; margin-bottom: 14px; }
.product-modal-info > small { display: block; color: #87909d; font-size: 10px; line-height: 1.6; }

@media (max-width: 1120px) {
  .catalog-hero-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .catalog-grid { gap: 18px; }
  .catalog-card { grid-template-columns: 1fr; min-height: 0; }
  .catalog-card-image { min-height: 280px; aspect-ratio: 4 / 3; }
  .catalog-card-body { min-height: 280px; }
  .catalog-toolbar { top: 86px; }
}

@media (max-width: 760px) {
  .catalog-hero-inner { min-height: 0; padding: 48px 18px 64px; grid-template-columns: 1fr; gap: 34px; }
  .catalog-hero-copy h1 { margin-top: 12px; font-size: clamp(42px, 12vw, 56px); }
  .catalog-hero-copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.7; }
  .catalog-hero-stats { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .catalog-hero-stats span { min-width: 0; padding: 10px 8px; }
  .catalog-hero-stats b { font-size: 18px; }
  .catalog-hero-stats small { font-size: 6.8px; letter-spacing: .06em; }
  .catalog-hero-visual { height: 330px; }
  .catalog-hero-visual::before { inset: 10px -7px -10px 10px; }
  .catalog-hero-badge { right: 7px; bottom: -28px; width: 88px; height: 88px; }
  .catalog-hero-badge strong { font-size: 28px; }

  .catalog-section { padding: 68px 14px 84px; }
  .catalog-heading { margin-bottom: 24px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .catalog-heading h2 { font-size: clamp(37px, 11vw, 48px); }
  .catalog-heading > p { font-size: 12.5px; }
  .catalog-toolbar { top: 72px; margin-bottom: 18px; padding: 8px; gap: 7px; }
  .catalog-search-wrap { height: 47px; padding: 0 10px 0 12px; gap: 8px; }
  .catalog-search-wrap svg { width: 17px; height: 17px; }
  .catalog-search-wrap input { font-size: 12px; }
  .catalog-search-wrap input::placeholder { font-size: 11px; }
  .catalog-search-wrap button { padding: 6px 4px; font-size: 8px; }
  .catalog-result-count { min-width: 48px; padding: 0 4px; font-size: 0; text-align: center; }
  .catalog-result-count span { font-size: 18px; margin: 0; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-card { grid-template-columns: 1fr; min-height: 0; border-radius: 10px; }
  .catalog-card-image { min-height: 0; aspect-ratio: 1 / 1; }
  .catalog-card-image-contain > img { padding: 8px; }
  .catalog-card-image > span { left: 7px; bottom: 7px; max-width: calc(100% - 14px); padding: 4px 5px; font-size: 5.5px; letter-spacing: .07em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .catalog-view-icon { right: 7px; top: 7px; width: 28px; height: 28px; font-size: 13px; }
  .catalog-card-body { min-height: 0; padding: 11px 9px 9px; gap: 8px; }
  .catalog-number { margin-bottom: 3px; font-size: 6px; letter-spacing: .09em; }
  .catalog-card h3 { margin-bottom: 0; font-size: clamp(17px, 4.7vw, 21px); line-height: 1.08; }
  .catalog-card-body > div:first-child > p:last-child { display: none; }
  .catalog-tags { display: none; }
  .catalog-whatsapp { min-height: 35px; padding: 0 8px; justify-content: center; font-size: 6.8px; letter-spacing: .04em; text-align: center; border-radius: 6px; }
  .catalog-whatsapp span { display: none; }

  .catalog-help { padding: 66px 18px; }
  .catalog-help-inner { grid-template-columns: 1fr; gap: 24px; }
  .catalog-help h2 { font-size: clamp(38px, 11vw, 49px); }
  .catalog-help-inner > div:last-child p { font-size: 12.5px; }

  .product-modal { padding: 0; align-items: stretch; }
  .product-modal-panel { width: 100%; max-height: 100svh; grid-template-columns: 1fr; grid-template-rows: minmax(0, 55vh) minmax(0, 45vh); }
  .product-modal-close { right: 10px; top: 10px; width: 38px; height: 38px; font-size: 24px; }
  .product-modal-gallery { padding: 10px; }
  .product-modal-stage img { min-height: 0; max-height: none; }
  .product-gallery-nav { width: 38px; height: 38px; margin-top: -19px; font-size: 25px; }
  .product-gallery-thumb { width: 58px; height: 50px; flex-basis: 58px; }
  .product-modal-info { padding: 25px 18px 28px; }
  .product-modal-info h2 { font-size: 35px; }
  .product-modal-caption { font-size: 15px; }
  .product-modal-description { font-size: 12px; line-height: 1.65; }
  .product-modal-tags { margin-bottom: 18px; }
  .product-modal-whatsapp { min-height: 46px; font-size: 8px; }
}

@media (max-width: 470px) {
  .catalog-section { padding-left: 10px; padding-right: 10px; }
  .catalog-grid { gap: 8px; }
  .catalog-card-image { aspect-ratio: 1 / 1; }
  .catalog-card-body { padding: 9px 7px 7px; }
  .catalog-card h3 { font-size: clamp(15px, 4.5vw, 18px); }
  .catalog-whatsapp { min-height: 33px; padding: 0 5px; font-size: 6.2px; }
}
