/* Aaradhyaa Tanaya — brand stylesheet
 * Palette:
 *   cream    #f6efe1
 *   parchment#faf5ea
 *   gold     #b8935a
 *   gold-dk  #8a6a3a
 *   forest   #2d4030
 *   maroon   #6b1f2a
 *   ink      #2a241d
 */

:root {
    --cream:     #f6efe1;
    --parchment: #faf5ea;
    --gold:      #b8935a;
    --gold-dk:   #8a6a3a;
    --gold-lt:   #d9be8a;
    --forest:    #2d4030;
    --maroon:    #6b1f2a;
    --ink:       #2a241d;
    --muted:     #7a6f60;
    --line:      #e6dcc6;
    --shadow:    0 20px 60px -20px rgba(60, 44, 20, 0.25);
    --serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --display:'Cinzel', 'Trajan Pro', serif;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--parchment);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dk); text-decoration: none; transition: color .2s; }
a:hover { color: var(--maroon); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); letter-spacing: .01em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; margin: 0 0 .6rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 .6rem; }
h3 { font-size: 1.35rem; margin: 0 0 .4rem; }
h4 { font-size: 1rem; margin: 0 0 .6rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--display); color: var(--forest); }
p  { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* Buttons */
.btn {
    display: inline-block; padding: 14px 28px; border-radius: 2px;
    font-family: var(--display); font-size: .78rem; letter-spacing: .18em;
    text-transform: uppercase; cursor: pointer; border: 1px solid transparent;
    transition: all .25s ease; background: transparent;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-outline-gold { background: transparent; color: var(--gold-dk); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* Header */
.site-header { background: var(--parchment); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.topbar { background: var(--forest); color: var(--cream); font-size: .78rem; letter-spacing: .1em; }
.topbar-inner { display: flex; justify-content: space-between; padding: 8px 24px; font-family: var(--display); }
.topbar-right { opacity: .8; }
@media (max-width: 640px) { .topbar-right { display: none; } }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 16px; color: var(--ink); }
.brand-mark { display: inline-flex; align-items: center; width: 74px; }
.brand-mark svg { width: 100%; height: auto; display: block; }
.brand .logo-wrapper { width: 74px; height: 74px; color: var(--gold-dk); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 600; letter-spacing: .28em; color: var(--gold-dk); font-size: 1.1rem; }
.brand-name-2 { color: var(--ink); margin-top: 2px; }
.brand-tag { font-family: var(--serif); font-style: italic; font-size: .72rem; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-family: var(--display); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); position: relative; padding: 4px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-dk); }
.main-nav a.active::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:1px; background: var(--gold); }
.cart-link { display: inline-flex; align-items: center; gap: 6px; position: relative; }
.cart-badge { background: var(--maroon); color: #fff; font-size: .65rem; padding: 2px 6px; border-radius: 10px; min-width: 18px; text-align: center; font-family: var(--sans); letter-spacing: 0; }

.nav-toggle { display: none; background: none; border: 0; width: 34px; height: 34px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 4px 0; transition: transform .2s; }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--parchment); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; display: none; }
    .main-nav.open { display: flex; }
    .brand-tag { display: none; }
}

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.hero-eyebrow { font-family: var(--display); letter-spacing: .32em; font-size: .75rem; color: var(--gold-dk); text-transform: uppercase; margin-bottom: 18px; }
.hero-title { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; color: var(--ink); }
.hero-title em { font-family: var(--serif); font-style: italic; color: var(--gold-dk); font-weight: 500; }
.hero-lede { font-family: var(--serif); font-size: 1.25rem; color: var(--muted); max-width: 46ch; margin: 20px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, #2d4030 0%, #1e2a1f 100%); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.hero-visual::before { content:''; position: absolute; inset: 20px; border: 1px solid rgba(184,147,90,.35); border-radius: 2px; pointer-events: none; }
.hero-visual svg { width: 62%; opacity: .95; }
.logo-medallion { background: var(--cream); border: 1px solid rgba(184,147,90,.55); padding: 24px; width: 78%; aspect-ratio: 302 / 258; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 30px 60px -25px rgba(0,0,0,.5); }
.logo-medallion svg { width: 100%; height: 100%; display: block; }
.logo-medallion::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(184,147,90,.35);
    pointer-events: none;
}
.logo-medallion img { width: 100%; height: auto; display: block; }
.logo-medallion .swan-mark,
.logo-medallion .web-logo { width: 100%; height: auto; display: block; color: var(--gold-dk); }

/* Reusable inline-SVG logo wrapper */
.logo-wrapper { display: inline-flex; align-items: center; background: transparent; }
.web-logo { width: 100%; height: auto; color: var(--gold); transition: color .25s ease-in-out; }
.logo-wrapper:hover .web-logo { color: var(--gold-dk); }
@media (max-width: 820px) {
    .hero-inner { grid-template-columns: 1fr; padding: 48px 24px; }
    .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* Ornament divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 8px 0 24px; color: var(--gold); }
.ornament::before, .ornament::after { content:''; height: 1px; background: var(--gold); width: 60px; opacity: .6; }
.ornament svg { width: 20px; height: 20px; }

/* Section */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark h4 { color: var(--gold-lt); }
.section-dark p { color: rgba(246,239,225,.85); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-eyebrow { font-family: var(--display); letter-spacing: .3em; font-size: .75rem; color: var(--gold-dk); text-transform: uppercase; margin-bottom: 14px; }
.section-dark .section-eyebrow { color: var(--gold-lt); }
.section-lede { font-family: var(--serif); font-size: 1.2rem; color: var(--muted); }
.section-dark .section-lede { color: rgba(246,239,225,.75); }

/* Category pills */
.category-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 820px) { .category-strip { grid-template-columns: repeat(2, 1fr); } }
.cat-card { background: var(--parchment); border: 1px solid var(--line); padding: 28px 16px; text-align: center; text-decoration: none; color: var(--ink); transition: all .25s; }
.cat-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.cat-card h3 { font-family: var(--display); font-size: .95rem; letter-spacing: .18em; margin-top: 12px; color: var(--forest); }
.cat-swatch { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto; border: 2px solid var(--gold); }

/* Product grid */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 900px) { .products { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }
.product-card { background: var(--parchment); border: 1px solid var(--line); transition: all .25s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-lt); }
.product-media { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.product-media .swatch { position: absolute; inset: 0; }
.product-media .weave { position: absolute; inset: 0; background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.06) 0 2px, transparent 2px 10px);
}
.product-media .border-band { position: absolute; left: 0; right: 0; bottom: 0; height: 22%; background: linear-gradient(180deg, transparent 0%, rgba(184,147,90,.15) 30%, rgba(184,147,90,.55) 100%); }
.product-media .border-band::after { content:''; position:absolute; left:0; right:0; bottom:0; height: 8px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, var(--gold-dk) 8px 16px); opacity: .85; }
.product-media .mark { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.9); color: var(--maroon); font-family: var(--display); font-size: .65rem; letter-spacing: .18em; padding: 6px 10px; text-transform: uppercase; }
.product-media .peacock { position:absolute; inset: 0; display:flex; align-items:center; justify-content:center; opacity:.28; }
.product-media .peacock svg { width: 55%; }

.product-body { padding: 22px; display:flex; flex-direction:column; flex:1; }
.product-cat { font-family: var(--display); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dk); }
.product-name { font-family: var(--serif); font-size: 1.35rem; margin: 6px 0 10px; color: var(--ink); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.product-price .now { font-family: var(--serif); font-size: 1.2rem; color: var(--maroon); font-weight: 600; }
.product-price .was { text-decoration: line-through; color: var(--muted); font-size: .95rem; }
.product-actions { display:flex; gap: 10px; margin-top: auto; }
.product-actions .btn { flex: 1; padding: 12px 14px; font-size: .7rem; }

/* Filters */
.filter-bar { display:flex; flex-wrap:wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-bar a { padding: 10px 20px; border: 1px solid var(--line); font-family: var(--display); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); background: var(--parchment); }
.filter-bar a:hover { border-color: var(--gold); color: var(--gold-dk); }
.filter-bar a.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* Product detail */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding: 60px 0; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; } }
.pdp-media { aspect-ratio: 4/5; position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.pdp-info h1 { font-family: var(--serif); font-weight: 500; }
.pdp-info .cat { font-family: var(--display); font-size: .78rem; letter-spacing: .28em; color: var(--gold-dk); text-transform: uppercase; }
.pdp-price { display:flex; align-items: baseline; gap: 14px; margin: 16px 0 8px; }
.pdp-price .now { font-family: var(--serif); font-size: 2rem; color: var(--maroon); font-weight: 600; }
.pdp-price .was { text-decoration: line-through; color: var(--muted); }
.pdp-price .save { background: var(--forest); color: var(--cream); padding: 4px 10px; font-family: var(--display); font-size: .68rem; letter-spacing: .18em; }
.pdp-desc { font-family: var(--serif); font-size: 1.15rem; color: var(--muted); margin: 18px 0; }
.pdp-attrs { list-style:none; padding: 0; margin: 20px 0 28px; border-top: 1px solid var(--line); }
.pdp-attrs li { display:flex; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.pdp-attrs .k { flex: 0 0 140px; font-family: var(--display); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dk); align-self: center; }
.pdp-attrs .v { color: var(--ink); }
.pdp-actions { display:flex; gap: 12px; margin-top: 20px; align-items: center; }
.qty { display:flex; align-items:center; border: 1px solid var(--ink); }
.qty button { width: 40px; height: 46px; background: none; border: 0; font-size: 1.2rem; cursor: pointer; font-family: var(--serif); }
.qty input { width: 46px; height: 46px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-family: var(--serif); font-size: 1rem; background: transparent; }

.pdp-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.pdp-perks div { text-align:center; }
.pdp-perks strong { font-family: var(--display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); display:block; margin-bottom: 4px; }
.pdp-perks span { font-family: var(--serif); font-size: .95rem; color: var(--muted); }

/* Storytelling section */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; gap: 30px; } }
.story-visual { aspect-ratio: 4/5; background: linear-gradient(160deg, #6b1f2a 0%, #3a1218 100%); position: relative; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.story-visual::before { content:''; position:absolute; inset: 24px; border: 1px solid rgba(184,147,90,.4); pointer-events: none; }
.story-visual svg { position:absolute; inset: 0; margin: auto; width: 55%; opacity: .95; }

/* Values row */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 820px) { .values { grid-template-columns: repeat(2, 1fr); } }
.value h3 { font-family: var(--display); font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dk); margin-top: 12px; }
.value .icon { width: 48px; height: 48px; margin: 0 auto; color: var(--gold); }
.value p { font-family: var(--serif); color: var(--muted); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { background: var(--parchment); border: 1px solid var(--line); padding: 30px; position: relative; }
.testimonial::before { content: '“'; position: absolute; top: -20px; left: 20px; font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 1; }
.testimonial p { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.testimonial .who { font-family: var(--display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dk); margin-top: 16px; }

/* CTA banner */
.cta-banner { background: var(--forest); color: var(--cream); text-align: center; padding: 80px 24px; }
.cta-banner h2 { color: var(--cream); font-family: var(--display); font-weight: 500; }
.cta-banner p { color: rgba(246,239,225,.8); font-family: var(--serif); font-size: 1.2rem; max-width: 600px; margin: 12px auto 30px; }

/* Cart page */
.cart-table { width: 100%; border-collapse: collapse; background: var(--parchment); }
.cart-table th, .cart-table td { padding: 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-table th { font-family: var(--display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); background: var(--cream); }
.cart-table .thumb { width: 90px; aspect-ratio: 4/5; position:relative; overflow:hidden; border: 1px solid var(--line); }
.cart-summary { max-width: 400px; margin-left: auto; margin-top: 30px; background: var(--cream); padding: 30px; border: 1px solid var(--line); }
.cart-summary .row { display:flex; justify-content:space-between; padding: 8px 0; font-family: var(--serif); font-size: 1.1rem; }
.cart-summary .row.total { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; font-weight: 700; font-size: 1.3rem; color: var(--maroon); }
.cart-empty { text-align: center; padding: 80px 20px; }

/* Notice / flash */
.flash { background: var(--forest); color: var(--cream); padding: 14px 24px; text-align: center; font-family: var(--display); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.flash.error { background: var(--maroon); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-family: var(--display); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--parchment); font-family: var(--serif); font-size: 1rem; color: var(--ink); border-radius: 2px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-info h4 { color: var(--forest); }
.contact-info p { font-family: var(--serif); font-size: 1.05rem; }
.info-block { padding: 24px 0; border-bottom: 1px solid var(--line); }

/* Footer */
.site-footer { background: #1c1611; color: rgba(246,239,225,.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 60px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--gold-lt); font-family: var(--display); letter-spacing: .18em; margin: 12px 0 6px; font-size: 1.1rem; }
.site-footer h4 { color: var(--gold-lt); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: rgba(246,239,225,.72); font-size: .95rem; }
.site-footer a:hover { color: var(--gold-lt); }
.foot-tag { font-family: var(--serif); font-style: italic; color: var(--gold-lt); }
.foot-note { font-size: .9rem; }
.foot-mark { display: inline-flex; width: 64px; }
.foot-mark svg { width: 100%; height: auto; display: block; }
.foot-brand .logo-wrapper { width: 56px; height: 56px; color: var(--gold-lt); }
.foot-newsletter form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.foot-newsletter input { flex: 1 1 200px; padding: 12px 14px; background: transparent; border: 1px solid rgba(246,239,225,.25); color: var(--cream); font-family: var(--serif); }
.foot-newsletter input::placeholder { color: rgba(246,239,225,.5); }
.foot-newsletter .thanks { color: var(--gold-lt); font-family: var(--serif); font-style: italic; width: 100%; }
.foot-bottom { border-top: 1px solid rgba(246,239,225,.1); padding: 20px 0; }
.foot-bottom-inner { display:flex; justify-content: space-between; font-size: .8rem; font-family: var(--display); letter-spacing: .1em; }
@media (max-width: 640px) { .foot-bottom-inner { flex-direction: column; gap: 8px; text-align: center; } }

/* Page hero (subpages) */
.page-hero { background: var(--cream); text-align: center; padding: 70px 24px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--display); font-weight: 500; }
.page-hero .breadcrumb { font-family: var(--display); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 14px; }
.page-hero p { font-family: var(--serif); font-size: 1.2rem; color: var(--muted); max-width: 600px; margin: 12px auto 0; }
