/* Golden Deals — refined: Goldin/PWCC inspired, restrained, fully responsive */
:root {
  --bg: #ffffff;
  --bg-soft: #f8f6f1;
  --bg-2: #f1ede4;
  --bg-dark: #0f0d0a;
  --ink: #14110d;
  --ink-2: #3a342c;
  --ink-3: #6f6759;
  --line: #e6e0d2;
  --line-2: #efeae0;
  --gold: #b08940;
  --gold-deep: #8a6a2f;
  --gold-soft: #f4eddc;
  --red: #9a1c1c;
  --red-deep: #6e1010;
  --shadow-sm: 0 1px 2px rgba(20,17,13,.04);
  --shadow: 0 1px 2px rgba(20,17,13,.05), 0 12px 32px rgba(20,17,13,.06);
  --shadow-lg: 0 24px 60px rgba(20,17,13,.10);
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --container: 1280px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; font-size: 16px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-deep); }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.018em; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 700; }
h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 24px; }
h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; color: var(--ink-3); margin-bottom: 14px; }

.kicker { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .22em; font-weight: 600; color: var(--gold-deep); margin-bottom: 18px; }
.lede { font-size: 17px; color: var(--ink-2); max-width: 640px; margin-top: 14px; line-height: 1.6; }

/* HEADER */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; gap: 32px; }
.logo { display: inline-flex; align-items: baseline; gap: 8px; font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: .14em; text-transform: uppercase; }
.logo-mark { display: none; }
.logo-text { color: var(--ink); }
.logo-text em { color: var(--gold-deep); font-style: normal; font-weight: 700; letter-spacing: .14em; }
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { color: var(--ink-2); font-size: 14px; font-weight: 500; padding: 6px 0; border-bottom: 1.5px solid transparent; transition: all .15s; }
.nav-links a:hover { color: var(--ink); border-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* MOBILE MENU TOGGLE */
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: all .2s; }

/* BUTTONS */
.btn { display: inline-block; padding: 11px 22px; border-radius: 3px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: all .15s; text-align: center; border: 1.5px solid transparent; }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 14px 30px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-link { color: var(--ink-2); font-size: 13px; font-weight: 500; padding: 6px 0; border-bottom: 1.5px solid transparent; text-transform: uppercase; letter-spacing: .08em; }
.btn-link:hover { color: var(--ink); border-color: var(--gold); }

/* HERO */
.hero { padding: 80px 0 70px; background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.hero-text h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 22px; font-weight: 700; }
.hero-text .lede { font-size: 19px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: .04em; }
.hero-art { position: relative; height: 440px; }
.hero-card { position: absolute; width: 220px; height: 320px; border-radius: 6px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.hero-card-1 { top: 30px; left: 0; transform: rotate(-6deg); z-index: 1; background: linear-gradient(160deg, #1a1612 0%, #2a221a 100%); border-color: var(--gold-deep); }
.hero-card-2 { top: 50px; left: 100px; z-index: 3; background: #fff; border-color: var(--line); }
.hero-card-2::before { content: ""; position: absolute; inset: 16px; border: 1px solid var(--gold); border-radius: 3px; }
.hero-card-2::after { content: "GOLDEN DEALS"; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; font-size: 10px; letter-spacing: .25em; color: var(--gold-deep); font-weight: 600; }
.hero-card-3 { top: 30px; left: 200px; transform: rotate(7deg); z-index: 2; background: linear-gradient(160deg, #f7f5f1 0%, #e8e1d0 100%); border-color: var(--line); }

/* CATEGORIES STRIP */
.categories-strip { padding: 70px 0 30px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-tile { display: flex; flex-direction: column; justify-content: space-between; padding: 28px 28px 26px; border: 1px solid var(--line); border-radius: 4px; background: #fff; transition: all .2s; min-height: 160px; position: relative; }
.cat-tile::after { content: ""; position: absolute; left: 28px; right: 28px; bottom: 18px; height: 1px; background: var(--line); transition: all .2s; }
.cat-tile:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-tile:hover::after { background: var(--gold); }
.cat-tile-label { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.cat-tile-meta { font-size: 12px; color: var(--ink-3); margin-top: 6px; letter-spacing: .04em; padding-bottom: 14px; }

/* SECTION HEADS */
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.section-head h2 { margin-bottom: 0; }
.link-arrow { font-size: 13px; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: .08em; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover { color: var(--red-deep); border-color: var(--red-deep); }

/* FEATURED + GENERIC PRODUCT GRID */
.featured { padding: 50px 0 80px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: all .2s; display: block; color: inherit; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ink); }
.product-image { aspect-ratio: 3/4; background: var(--bg-soft) center/contain no-repeat; border-bottom: 1px solid var(--line); }
.product-info { padding: 14px 16px 18px; }
.product-grade { display: inline-block; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--ink); border: 1px solid var(--line); padding: 3px 7px; border-radius: 2px; margin-bottom: 10px; background: var(--bg-2); }
.product-card h3 { font-size: 14px; line-height: 1.35; min-height: 38px; margin-bottom: 12px; font-weight: 500; color: var(--ink); }
.product-meta { display: flex; justify-content: space-between; align-items: baseline; }
.product-cat { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); font-weight: 500; }
.product-price { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }

/* VALUE STRIP (dark) */
.value-strip { padding: 70px 0; background: var(--bg-dark); color: #f5f1e8; border-top: 1px solid var(--gold-deep); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.value-item h3 { color: #fff; font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.value-item p { color: rgba(245,241,232,.65); font-size: 14px; line-height: 1.6; }
.value-icon { display: inline-block; width: 28px; height: 1.5px; background: var(--gold); margin-bottom: 18px; }

/* CTA BANNER */
.cta-banner { padding: 80px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.cta-banner-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--ink-2); margin-bottom: 30px; font-size: 16px; }

/* FOOTER */
.site-footer { background: var(--bg-dark); color: rgba(245,241,232,.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.logo-footer { color: #fff; margin-bottom: 18px; }
.logo-footer .logo-text, .logo-footer .logo-text em { color: #fff; }
.footer-tag { font-size: 13px; line-height: 1.6; max-width: 280px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; font-size: 13px; }
.site-footer ul li a { color: rgba(245,241,232,.65); }
.site-footer ul li a:hover { color: var(--gold); }
.site-footer h4 { color: var(--gold); font-size: 11px; letter-spacing: .2em; }
.footer-bottom { border-top: 1px solid rgba(245,241,232,.10); padding-top: 22px; font-size: 11px; color: rgba(245,241,232,.45); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; letter-spacing: .03em; }
.footer-fineprint { font-size: 11px; }
.contact-list li { font-size: 13px; line-height: 1.55; margin-bottom: 12px; }
.contact-list li strong { color: rgba(245,241,232,.85); display: block; margin-bottom: 2px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* PAGE HEAD */
.page-head { padding: 64px 0 40px; background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
.page-head h1 { margin-bottom: 12px; }

/* SHOP */
.shop { padding: 48px 0 80px; }
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.shop-filters { position: sticky; top: 90px; }
.shop-filters h4 { margin-bottom: 12px; }
.shop-filters ul { list-style: none; }
.shop-filters li { margin-bottom: 4px; }
.shop-filters a { display: block; padding: 8px 0; color: var(--ink-2); font-size: 14px; border-bottom: 1px solid var(--line); }
.shop-filters a.active, .shop-filters a:hover { color: var(--ink); border-color: var(--gold); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* PRODUCT DETAIL */
.product-detail { padding: 48px 0 80px; }
.product-grid-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail-image { aspect-ratio: 3/4; background: var(--bg-soft) center/contain no-repeat; border: 1px solid var(--line); border-radius: 6px; }
.product-detail-info h1 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0; font-weight: 700; }
.product-detail-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.grade-badge { display: inline-block; padding: 7px 12px; background: var(--bg-2); color: var(--ink); border: 1px solid var(--line); border-radius: 3px; font-weight: 700; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.product-detail-price { font-size: 32px; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
.product-detail-price .aud { font-size: 13px; color: var(--ink-3); font-weight: 500; letter-spacing: .08em; margin-left: 6px; }
.product-detail-blurb { color: var(--ink-2); margin-bottom: 24px; font-size: 15px; line-height: 1.65; }
.product-spec { list-style: none; margin-bottom: 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-spec li { padding: 6px 0; font-size: 13px; color: var(--ink-2); }
.product-spec li strong { color: var(--ink); display: inline-block; min-width: 160px; font-weight: 600; }
.purchase-note { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; line-height: 1.5; }

/* SERVICES */
.services { padding: 48px 0 80px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 64px; align-items: stretch; }
.service-tier { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 32px 28px; display: flex; flex-direction: column; }
.service-tier-featured { border-color: var(--ink); position: relative; }
.service-tier-featured::before { content: "MOST POPULAR"; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 10px; padding: 4px 12px; letter-spacing: .15em; font-weight: 600; border-radius: 2px; }
.tier-badge { display: inline-block; font-size: 10px; letter-spacing: .2em; padding: 5px 10px; background: var(--bg-2); color: var(--ink); border: 1px solid var(--line); border-radius: 2px; margin-bottom: 18px; font-weight: 600; align-self: flex-start; }
.tier-badge-gold { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-deep); }
.service-tier h3 { font-size: 36px; color: var(--ink); margin-bottom: 18px; font-weight: 700; letter-spacing: -0.02em; }
.service-tier h3 .per { font-size: 13px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; }
.service-tier ul { list-style: none; margin-bottom: 24px; flex: 1; }
.service-tier ul li { padding: 8px 0; border-bottom: 1px solid var(--line-2); font-size: 13px; color: var(--ink-2); }
.service-tier ul li:last-child { border: 0; }
.service-tier ul li::before { content: ""; display: inline-block; width: 12px; height: 1.5px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
.services-h2-2 { margin-top: 64px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.services-other { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.other-item h3 { color: var(--ink); margin-bottom: 8px; font-size: 17px; }
.other-item h3::after { content: ""; display: block; width: 24px; height: 1.5px; background: var(--gold); margin-top: 8px; }
.other-item p { color: var(--ink-2); font-size: 14px; line-height: 1.65; }

/* ABOUT */
.about { padding: 48px 0 80px; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.about h3 { margin-top: 28px; margin-bottom: 8px; color: var(--ink); font-size: 18px; }
.about h3:first-child { margin-top: 0; }
.about h3::after { content: ""; display: block; width: 24px; height: 1.5px; background: var(--gold); margin-top: 8px; }
.about p { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.about-card { background: var(--bg-soft); border: 1px solid var(--line); padding: 28px; border-radius: 4px; }
.about-card h4 { margin-bottom: 14px; }
.about-card ul { list-style: none; }
.about-card ul li { padding: 5px 0; font-size: 13px; color: var(--ink-2); }
.about-card ul li:first-child { font-weight: 700; color: var(--ink); font-size: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }

/* CONTACT */
.contact-section { padding: 48px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.contact-form, .auth-form { display: flex; flex-direction: column; gap: 16px; background: #fff; padding: 32px; border: 1px solid var(--line); border-radius: 4px; }
.contact-form label, .auth-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; }
.contact-form label small, .auth-form label small { font-weight: 400; color: var(--ink-3); text-transform: none; letter-spacing: 0; }
.contact-form input, .contact-form textarea, .auth-form input { padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px; font-family: inherit; font-size: 14px; color: var(--ink); background: #fff; transition: border-color .15s; text-transform: none; letter-spacing: 0; font-weight: 400; }
.contact-form input:focus, .contact-form textarea:focus, .auth-form input:focus { outline: none; border-color: var(--ink); }
.contact-card { background: var(--bg-soft); border: 1px solid var(--line); padding: 28px; border-radius: 4px; }
.contact-card h4 { margin-bottom: 16px; }
.contact-card p { margin-bottom: 16px; font-size: 13px; line-height: 1.5; }
.contact-card p strong { color: var(--gold-deep); display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; font-weight: 700; }
.contact-fineprint { font-size: 11px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 16px; line-height: 1.5; }

/* AUTH */
.auth-page { padding: 64px 0 100px; background: var(--bg-soft); min-height: 60vh; }
.auth-narrow { max-width: 460px; margin: 0 auto; }
.auth-narrow h1 { font-size: clamp(26px, 3.6vw, 34px); margin-bottom: 12px; text-align: left; }
.auth-narrow .lede { font-size: 14px; }
.auth-form { margin-top: 28px; }
.auth-note { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 8px; }

/* DASHBOARD */
.dashboard { padding: 48px 0 80px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dash-card { background: #fff; border: 1px solid var(--line); padding: 26px; border-radius: 4px; }
.dash-card h3 { color: var(--ink); font-size: 15px; }
.dash-card h3::after { content: ""; display: block; width: 22px; height: 1.5px; background: var(--gold); margin-top: 8px; margin-bottom: 12px; }
.dash-card p { font-size: 13px; color: var(--ink-2); margin-bottom: 10px; }
.dash-card a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--gold); }
.dash-card a:hover { color: var(--red-deep); border-color: var(--red-deep); }
.status-pill { display: inline-block; padding: 5px 12px; background: var(--gold-soft); color: var(--gold-deep); border: 1px solid var(--gold); border-radius: 14px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* FLASH */
.flash-stack { display: flex; flex-direction: column; gap: 8px; padding: 16px 0; }
.flash { padding: 13px 18px; border-radius: 3px; font-size: 14px; }
.flash-error { background: #fef0f0; color: var(--red-deep); border-left: 3px solid var(--red); }
.flash-success { background: #eff7ee; color: #1f6e1f; border-left: 3px solid #1f6e1f; }

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav { padding: 14px 24px; gap: 16px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 24px; gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-2); border-radius: 0; font-size: 15px; }
  .nav-links a:last-child { border-bottom: 0; }
  .menu-toggle { display: block; }
  .nav-cta .btn-link { display: none; }
  .hero { padding: 56px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 320px; max-width: 380px; margin: 0 auto; }
  .hero-card { width: 180px; height: 260px; }
  .hero-card-1 { left: 10px; }
  .hero-card-2 { left: 90px; }
  .hero-card-3 { left: 170px; }
  .hero-trust { gap: 18px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .shop-layout { grid-template-columns: 1fr; gap: 32px; }
  .shop-filters { position: static; }
  .shop-filters ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .shop-filters li { margin: 0; }
  .shop-filters a { border: 1px solid var(--line); padding: 8px 14px; border-radius: 3px; font-size: 13px; }
  .shop-filters a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .product-grid-detail { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-tier-featured::before { top: -12px; }
  .services-other { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .dashboard-grid { grid-template-columns: 1fr; gap: 18px; }
  .value-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============================================================
   RESPONSIVE — PHONE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .nav { padding: 12px 18px; }
  .logo { font-size: 15px; letter-spacing: .12em; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 11px; }
  .hero { padding: 40px 0 36px; }
  .hero-text h1 { font-size: clamp(28px, 8vw, 38px); }
  .hero-text .lede { font-size: 16px; }
  .hero-cta { flex-direction: column; gap: 10px; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 12px 18px; font-size: 11px; }
  .hero-art { height: 240px; max-width: 300px; }
  .hero-card { width: 130px; height: 190px; }
  .hero-card-1 { left: 0; }
  .hero-card-2 { left: 65px; }
  .hero-card-3 { left: 130px; }
  .categories-strip { padding: 48px 0 16px; }
  .cat-grid { grid-template-columns: 1fr; gap: 12px; }
  .cat-tile { min-height: 110px; padding: 22px 22px 24px; }
  .cat-tile-label { font-size: 19px; }
  .featured { padding: 40px 0 60px; }
  .section-head { margin-bottom: 24px; padding-bottom: 14px; }
  .section-head h2 { font-size: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 12px 12px 16px; }
  .product-card h3 { font-size: 13px; min-height: 34px; }
  .product-price { font-size: 15px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .value-strip { padding: 50px 0; }
  .value-grid { gap: 28px; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 22px; }
  .cta-banner p { font-size: 14px; }
  .cta-banner-inner .btn { width: 100%; }
  .page-head { padding: 44px 0 28px; }
  .product-detail { padding: 32px 0 60px; }
  .product-detail-info h1 { font-size: 24px; margin: 10px 0; }
  .product-detail-meta { gap: 12px; }
  .product-detail-price { font-size: 26px; }
  .product-spec li strong { display: block; min-width: 0; margin-bottom: 2px; }
  .services { padding: 32px 0 60px; }
  .service-tier { padding: 26px 22px; }
  .service-tier h3 { font-size: 30px; }
  .services-h2-2 { margin-top: 48px; }
  .services-other { gap: 20px; margin-top: 24px; }
  .about, .contact-section, .dashboard, .shop { padding: 32px 0 60px; }
  .contact-form, .auth-form { padding: 22px; }
  .auth-page { padding: 40px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { font-size: 10px; }
  .btn-lg { padding: 13px 22px; font-size: 12px; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (≤380px)
   ============================================================ */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .nav { padding: 10px 14px; gap: 8px; }
  .nav-cta .btn { padding: 8px 10px; font-size: 10px; letter-spacing: .04em; }
  .hero-art { height: 200px; max-width: 260px; }
  .hero-card { width: 110px; height: 160px; }
  .hero-card-2 { left: 55px; }
  .hero-card-3 { left: 110px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* HERO VISUAL — real product showcase instead of abstract cards */
.hero-art { display: none; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 420px; }
.showcase-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform .2s; }
.showcase-card:nth-child(2) { transform: translateY(-12px); }
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.showcase-card:nth-child(2):hover { transform: translateY(-16px); }
.showcase-img { aspect-ratio: 3/4; background: var(--bg-soft) center/contain no-repeat; }
.showcase-label { padding: 8px 10px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.showcase-grade { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); }
.showcase-price { font-size: 13px; font-weight: 700; color: var(--ink); }

@media (max-width: 960px) {
  .hero-showcase { max-width: 340px; gap: 10px; }
}
@media (max-width: 640px) {
  .hero-visual { margin-top: 24px; }
  .hero-showcase { max-width: 280px; gap: 8px; }
  .showcase-label { padding: 6px 8px; }
  .showcase-grade { font-size: 8px; }
  .showcase-price { font-size: 11px; }
}
