:root {
  --ink: #2b1620;
  --ink-soft: #7a5563;
  --cream: #f3e6e2;
  --paper: #faf5f1;
  --plum: #4a1942;
  --plum-dark: #33122e;
  --gold: #a9762e;
  --gold-soft: #ecd9b6;
  --rose: #a3475a;
  --rose-deep: #7a2e3d;
  --line: #e4d3cc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(43, 22, 32, .14);
  --radius: 12px;
  --radius-lg: 24px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Work Sans", Arial, sans-serif;
  --mono: "Space Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; letter-spacing: -.02em; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.3rem; }
.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.muted { color: var(--ink-soft); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--gold); font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; border-top: 1px solid currentColor; }
.section { padding: 104px 0; }
.section--cream { background: var(--cream); }
.section--plum { background: var(--plum); color: var(--gold-soft); }
.section--plum .eyebrow, .section--plum h2 { color: var(--white); }
.section--plum .eyebrow::before { background: var(--white); border-top: none; height: 1px; }
.section--plum p { color: rgba(236, 217, 182, .78); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; }
.section-head h2 { max-width: 16ch; margin-bottom: 0; }
.section-head p { max-width: 46ch; margin-bottom: 4px; color: var(--ink-soft); }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 245, 241, .92); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-mark { height: 52px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.nav-links a { position: relative; padding: 25px 0; color: var(--ink-soft); font-size: .82rem; font-weight: 600; letter-spacing: .03em; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; border-bottom: 2px solid var(--gold); transition: right .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.cart-link { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--ink); }
.cart-link svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: -2px; right: -4px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; background: var(--rose-deep); color: var(--white); font-family: var(--mono); font-size: .62rem; line-height: 17px; text-align: center; }
.cart-count[hidden] { display: none; }
.nav-toggle { display: none; padding: 8px; border: 0; background: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 22px; border: 1px solid transparent; border-radius: 2px; cursor: pointer; font-size: .82rem; font-weight: 600; letter-spacing: .01em; transition: transform .18s, background .18s, box-shadow .18s, border-color .18s, color .18s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--plum); color: var(--white); }
.btn--primary:hover { background: var(--plum-dark); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--light { background: var(--white); color: var(--plum); }
.btn--light:hover { background: var(--gold-soft); }

/* ---------- home hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; min-height: 560px; padding: 70px 0; }
.hero__lead { max-width: 46ch; color: var(--ink-soft); font-size: 1.06rem; margin: 22px 0 30px; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub { font-family: var(--mono); font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; margin-bottom: 6px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.hero-art svg { width: 100%; height: 100%; max-width: 360px; }
.hero-art .ring-orbit { position: absolute; inset: 8%; border: 1px dashed var(--line); border-radius: 50%; }
.hero-art--photo { aspect-ratio: 4 / 3; }
.hero-art--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- home editorial ---------- */
.collection-story { padding-top: 40px; background: var(--paper); }
.collection-story__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: center; }
.collection-story__grid > *, .page-hero__grid > *, .story-grid > * { min-width: 0; }
.collection-story__media { position: relative; margin: 0; }
.collection-story__media picture { display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.collection-story__media img { width: 100%; height: 100%; object-fit: cover; }
.collection-story__media figcaption { position: absolute; right: 22px; bottom: 20px; max-width: 29ch; padding: 11px 14px; background: rgba(51, 18, 46, .9); color: var(--white); font-family: var(--mono); font-size: .65rem; line-height: 1.55; letter-spacing: .03em; }
.collection-story__copy h2 { max-width: 11ch; margin-bottom: 22px; }
.collection-story__copy p { color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--rose-deep); font-size: .84rem; font-weight: 600; }
.text-link span { transition: transform .18s; }
.text-link:hover span { transform: translateX(4px); }

/* ---------- product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__image { aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { display: flex; flex-direction: column; gap: 6px; flex: 1; padding: 20px 22px 24px; }
.product-card__cat { font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.product-card h3 { margin: 0; font-size: 1.12rem; }
.product-card p { margin: 0; color: var(--ink-soft); font-size: .86rem; flex: 1; }
.product-card__price { font-family: var(--mono); font-weight: 700; color: var(--ink); }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.product-card .btn { min-height: 40px; padding: 10px 16px; font-size: .78rem; }

/* ---------- cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 0 0 14px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; align-items: center; gap: 16px; }
.cart-item img { width: 68px; height: 68px; border-radius: var(--radius); object-fit: cover; background: var(--cream); }
.cart-item h3 { margin: 0 0 3px; font-size: .98rem; }
.cart-item span { color: var(--ink-soft); font-size: .78rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer; font-size: 1rem; }
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper span { min-width: 26px; text-align: center; font-family: var(--mono); font-size: .85rem; }
.cart-remove { color: var(--rose-deep); font-family: var(--mono); font-size: .72rem; text-decoration: underline; background: none; border: 0; cursor: pointer; padding: 0; }
.cart-summary { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); position: sticky; top: 96px; }
.cart-summary h2 { font-size: 1.3rem; margin-bottom: 18px; }
.summary-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.summary-line.total { border-bottom: 0; padding-top: 16px; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.cart-empty { text-align: center; padding: 80px 20px; color: var(--ink-soft); }
.cart-empty h2 { color: var(--ink); margin-bottom: 10px; }

/* ---------- checkout ---------- */
.notice-card { display: flex; gap: 16px; padding: 24px 26px; border: 1px solid var(--gold-soft); background: #fbf3e4; border-radius: var(--radius-lg); margin-bottom: 32px; }
.notice-card svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--gold); }
.notice-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.notice-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.checkout-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

/* ---------- inner page hero ---------- */
.page-hero { padding: 88px 0 76px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 18ch; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 18px; }
.page-hero p { max-width: 62ch; color: var(--ink-soft); font-size: 1.06rem; }
.page-hero__grid { display: grid; grid-template-columns: 1fr .72fr; gap: 76px; align-items: center; }
.page-hero--visual { padding: 68px 0; }
.about-hero-photo { position: relative; min-height: 460px; margin: 0; }
.about-hero-photo picture { position: absolute; inset: 0; overflow: hidden; border-radius: 180px 180px var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow); }
.about-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.about-hero-photo figcaption { position: absolute; right: -18px; bottom: 28px; width: min(230px, 76%); padding: 14px 16px; background: var(--plum); color: var(--white); font-family: var(--mono); font-size: .66rem; line-height: 1.55; letter-spacing: .02em; }

/* ---------- trust strip ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-item { padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.02rem; }
.trust-item span { color: var(--ink-soft); font-size: .78rem; }

/* ---------- category grid (product photography) ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { position: relative; min-height: 200px; padding: 26px; border-radius: var(--radius-lg); display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .3s; }
.category-card:hover .category-card__bg { transform: scale(1.04); }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,10,20,.15) 0%, rgba(20,10,20,.72) 100%); z-index: 1; }
.category-card h3, .category-card span { position: relative; z-index: 2; }
.category-card h3 { margin-bottom: 4px; font-size: 1.35rem; color: var(--white); }
.category-card span { color: rgba(255, 255, 255, .78); font-size: .82rem; }
.category-card--wide { grid-column: span 2; }
.category-card--plum { background: var(--plum); }
.category-card--rose { background: var(--rose-deep); }
.category-card--gold { background: #8a5f22; }

/* ---------- shop grid (whatsapp enquiry cards) ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.shop-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 32px 28px; background: var(--paper); transition: background .2s, transform .2s; }
.shop-card:hover { background: var(--cream); }
.shop-card svg { width: 38px; height: 38px; color: var(--gold); }
.shop-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.shop-card .cta-hint { margin-top: auto; padding-top: 14px; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--rose); }

/* ---------- value grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.value-card { min-height: 220px; padding: 32px; background: var(--paper); }
.value-card__number { display: block; margin-bottom: 44px; color: var(--gold); font-family: var(--mono); font-size: 1rem; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* ---------- trade / plum band ---------- */
.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trade-grid h2 { max-width: 13ch; }
.trade-list { border-top: 1px solid rgba(255, 255, 255, .16); }
.trade-list__item { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.trade-list__item span { color: var(--gold-soft); font-family: var(--mono); font-size: .85rem; }
.trade-list__item strong { display: block; margin-bottom: 4px; color: var(--white); }
.trade-list__item p { margin: 0; font-size: .85rem; }

/* ---------- cta band ---------- */
.cta-band { padding: 76px 0; background: var(--rose-deep); color: var(--white); text-align: center; }
.cta-band h2 { margin-bottom: 12px; color: var(--white); }
.cta-band p { margin: 0 auto 28px; max-width: 52ch; color: rgba(255, 255, 255, .82); }

/* ---------- about ---------- */
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.story-grid .lead { font-family: var(--serif); font-size: 1.55rem; line-height: 1.4; }
.story-grid p { color: var(--ink-soft); }
.story-detail-photo { margin: 34px 0 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.story-detail-photo picture { display: block; height: 100%; }
.story-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.timeline { margin-top: 40px; border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 34px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.timeline-item span { color: var(--gold); font-family: var(--mono); font-size: .9rem; }
.timeline-item h3 { margin-bottom: 6px; font-size: 1.08rem; }
.timeline-item p { margin: 0; color: var(--ink-soft); }
.reg-line { font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); padding-top: 24px; border-top: 1px solid var(--line); margin-top: 8px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.contact-line { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line span { display: block; color: var(--ink-soft); font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.contact-line a, .contact-line address, .contact-line strong { display: block; margin-top: 6px; font-style: normal; font-size: 1rem; }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(169, 118, 46, .3); border-color: var(--gold); }
textarea { min-height: 130px; resize: vertical; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 6px; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

/* ---------- policy pages ---------- */
.policy { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.policy h2 { margin: 42px 0 12px; font-size: 1.5rem; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--ink-soft); }
.policy ul { padding-left: 20px; }
.policy a { color: var(--rose); text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { padding: 64px 0 26px; background: var(--plum-dark); color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.2fr; gap: 46px; }
.footer-brand .brand { background: var(--cream); border-radius: 14px; padding: 8px 14px; }
.footer-brand .brand-mark { height: 62px; }
.footer-brand p { max-width: 34ch; margin-top: 18px; color: rgba(236, 217, 182, .62); font-size: .82rem; }
.footer-col h4 { margin-bottom: 16px; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; color: rgba(236, 217, 182, .65); font-size: .82rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(236, 217, 182, .5); font-family: var(--mono); font-size: .68rem; }

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 0; }
  .nav-links a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 40px; }
  .collection-story__grid { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .page-hero__grid { grid-template-columns: 1fr .72fr; gap: 44px; }
  .about-hero-photo { min-height: 390px; }
  .trust-strip, .category-grid, .value-grid, .shop-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card--wide { grid-column: span 2; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trade-grid, .story-grid, .contact-grid, .cart-layout { gap: 46px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1140px); }
  h1 { font-size: 2.4rem; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head h2 { margin-bottom: 16px; }
  .page-hero { padding: 64px 0 52px; }
  .page-hero h1 { font-size: 2.25rem; }
  .page-hero__grid, .collection-story__grid { grid-template-columns: 1fr; }
  .page-hero__grid { gap: 34px; }
  .about-hero-photo { min-height: 430px; width: min(100%, 440px); }
  .about-hero-photo figcaption { right: 8px; }
  .collection-story { padding-top: 24px; }
  .collection-story__grid { gap: 38px; }
  .collection-story__media figcaption { right: 12px; bottom: 12px; max-width: calc(100% - 24px); }
  .trust-strip, .category-grid, .value-grid, .shop-grid, .form-grid, .product-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .category-card--wide { grid-column: auto; }
  .trade-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cart-item { flex-wrap: wrap; }
  .notice-card { flex-direction: column; }
  .nav-actions .btn--primary { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
