/* ============================================================
   MABA GROUP / GUILTY — main.css (static seed → theme)
   Tokens: .opencode/DESIGN.md — do not invent values, extend them.
   ============================================================ */

:root {
  --noir: #0B0A0B;
  --noir-2: #171215;
  --noir-3: #211B1F;
  --wine: #7A0A10;
  --crimson: #A62B34;
  --crimson-bright: #CC584F;
  --gold: #BD965A;
  --gold-bright: #D9BC7F;
  --bone: #F4EEE7;
  --ink: #1C1418;
  --text: #F5EFE9;
  --text-muted: rgba(245, 239, 233, 0.62);
  --text-muted-light: rgba(28, 20, 24, 0.62);
  --success: #4F9E7A;
  --danger: #D64545;
  --info: #8FA6C9;
  --border-dark: rgba(189, 150, 90, 0.28);
  --border-light: rgba(28, 20, 24, 0.14);

  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-script: 'Grand Hotel', cursive;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius-card: 2px;
  --glow-crimson: 0 24px 64px -24px rgba(166, 43, 52, 0.45);
  --glow-gold: 0 24px 64px -28px rgba(189, 150, 90, 0.35);
  --container: 1200px;
  --header-h: 72px;
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  background: var(--noir);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--crimson-bright); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.num { font-variant-numeric: tabular-nums; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.on-light .eyebrow, .eyebrow--light { color: var(--wine); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

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

.skip-link {
  position: absolute; top: 0; left: 0;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%);
  border: 0; white-space: nowrap; background: var(--noir-2); color: var(--gold);
}
.skip-link:focus {
  width: auto; height: auto; margin: 12px; padding: 10px 16px;
  clip: auto; clip-path: none; z-index: 300;
}

/* ---------- signature: pack-frame + foil divider ---------- */

.frame {
  position: relative;
  border: 1px solid var(--gold);
  background: rgba(11, 10, 11, 0.55);
}
.frame::after {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(189, 150, 90, 0.45);
  pointer-events: none;
}
.frame--bone { background: var(--bone); }
.frame--bone::after { border-color: rgba(189, 150, 90, 0.55); }

.foil-divider {
  display: flex; align-items: center; gap: 14px;
  max-width: 320px; margin: 22px auto 0;
}
.foil-divider::before, .foil-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.foil-divider__diamond {
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); flex: none;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius-card);
  border: 1px solid transparent; cursor: pointer;
  transition: all .25s ease; text-decoration: none;
}
.btn-primary { background: var(--crimson); color: var(--text); }
.btn-primary:hover { background: var(--crimson-bright); color: var(--text); border-color: var(--gold); box-shadow: var(--glow-crimson); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { color: var(--gold-bright); border-color: var(--gold-bright); box-shadow: var(--glow-gold); }
.btn--light { background: var(--crimson); color: var(--text); }
.btn--light:hover { background: var(--wine); }

/* ---------- announcement bar ---------- */

.announcement {
  background: var(--wine);
  color: var(--gold-bright);
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 9px 16px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; letter-spacing: 0.06em; color: var(--text);
  display: flex; align-items: baseline; gap: 8px; white-space: nowrap;
}
.brand em { font-family: var(--font-script); font-weight: 400; font-size: 24px; color: var(--crimson-bright); letter-spacing: 0; }
.brand:hover { color: var(--text); }

.nav { display: none; }
.nav__list { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); padding: 8px 0; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--gold); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: transparent; border: 1px solid transparent;
  border-radius: var(--radius-card); color: var(--text); cursor: pointer;
  transition: all .25s ease;
}
.icon-btn:hover { color: var(--gold); border-color: var(--border-dark); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--crimson); color: var(--text);
  font-size: 10px; font-weight: 600; line-height: 16px; text-align: center;
  border-radius: 999px;
}

.burger { display: inline-flex; }

/* mobile drawer (LTR: slides from left) */
.drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.drawer.is-open { visibility: visible; }
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(11, 10, 11, 0.7);
  opacity: 0; transition: opacity .3s ease;
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--noir-2); border-right: 1px solid var(--border-dark);
  padding: 28px 24px;
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close { align-self: flex-end; }
.drawer .nav__link { font-size: 15px; letter-spacing: 0.14em; padding: 14px 4px; border-bottom: 1px solid var(--border-dark); }
.drawer .nav__link::after { display: none; }
.drawer__ctas { margin-top: 20px; display: grid; gap: 10px; }

/* ---------- hero slideshow ---------- */

.hero-slideshow {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(122, 10, 16, 0.55), transparent 60%),
    var(--noir);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility .7s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1);
}
.hero-slide.is-active .hero-slide__bg { animation: kenburns 8s ease-out forwards; }
.hero-slide__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(11, 10, 11, 0.25), rgba(11, 10, 11, 0.72) 78%),
    linear-gradient(to top, var(--noir) 0%, rgba(11, 10, 11, 0) 34%);
}
.hero-slide__content {
  position: relative; z-index: 2;
  max-width: 780px; width: calc(100% - 48px);
  padding: 52px 48px; text-align: center;
}
.hero-slide__content .eyebrow { color: var(--gold-bright); }
.hero-slide__content h1 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700; color: var(--text);
  text-wrap: balance;
}
.hero-slide__content h1 .script { color: var(--crimson-bright); }
.hero-slide__content p {
  color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 18px auto 30px;
}
.hero-slide__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(11, 10, 11, 0.5); border: 1px solid var(--gold);
  color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.hero-arrow:hover { background: var(--gold); color: var(--noir); }
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 14px;
}
.hero-dot {
  width: 9px; height: 9px; padding: 0;
  background: transparent; border: 1px solid var(--gold);
  transform: rotate(45deg); cursor: pointer; transition: all .25s ease;
}
.hero-dot.is-active { background: var(--gold); }

@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }

/* ---------- marquee ---------- */

.guilty-marquee {
  background: var(--wine);
  border-block: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 14px 0;
}
.guilty-marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
  color: var(--gold);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  white-space: nowrap;
}
.guilty-marquee:hover .guilty-marquee__track { animation-play-state: paused; }
.guilty-marquee__track span { padding: 0 28px; }
.guilty-marquee__track .script { color: var(--gold-bright); font-size: 18px; letter-spacing: 0.08em; text-transform: none; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

section { padding: 80px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); color: var(--text); }
.section-head h2 .script { color: var(--crimson-bright); }
.on-light .section-head h2 { color: var(--ink); }
.on-light .section-head h2 .script { color: var(--wine); }
.section-head p { color: var(--text-muted); margin: 16px 0 0; }
.on-light .section-head p { color: var(--text-muted-light); }

/* ---------- features strip ---------- */

.features-strip {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.feature { text-align: center; padding: 0 12px; }
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dark); border-radius: var(--radius-card);
  color: var(--gold);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.feature h3 em { font-family: var(--font-script); font-weight: 400; color: var(--crimson-bright); }
.feature p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---------- line sections + shade cards ---------- */

.line-section { padding: 96px 0; }
.on-light { background: var(--bone); color: var(--ink); }

.line-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.line-head__note {
  text-align: center; color: var(--text-muted); max-width: 520px; margin: -28px auto 48px;
  font-size: 15px;
}
.on-light .line-head__note { color: var(--text-muted-light); }

.shade-card {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--border-light);
  padding: 18px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shade-card:hover { transform: translateY(-4px); box-shadow: var(--glow-crimson); }
.shade-card--dark { background: var(--noir-2); border-color: var(--border-dark); }
.shade-card__media { overflow: hidden; }
.shade-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; height: auto; transition: transform .5s ease; }
.shade-card:hover .shade-card__media img { transform: scale(1.04); }
.shade-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--crimson); color: var(--text);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.shade-card__name { font-size: 21px; font-weight: 600; margin: 18px 0 4px; color: var(--ink); }
.shade-card--dark .shade-card__name { color: var(--text); }
.shade-card__line {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--wine); margin: 0 0 10px;
}
.shade-card--dark .shade-card__line { color: var(--gold); }
.shade-card__swatches { display: flex; gap: 8px; justify-content: center; margin-bottom: 10px; }
.shade-card__swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.2); }
.shade-card__price { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--crimson); margin: 0 0 12px; }
.shade-card__cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine);
}
.shade-card--dark .shade-card__cta { color: var(--gold); }
.shade-card__cta:hover { color: var(--crimson); }

/* ---------- story band ---------- */

.story { position: relative; overflow: hidden; }
.story::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 30%, rgba(122, 10, 16, 0.4), transparent 55%);
  pointer-events: none;
}
.story__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
.story__media { padding: 10px; }
.story__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story__body h2 { font-size: clamp(30px, 4vw, 48px); }
.story__body h2 .script { color: var(--crimson-bright); }
.story__body p { color: var(--text-muted); margin: 20px 0 30px; }

/* ---------- reviews ---------- */

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.review-card {
  background: var(--bone); border: 1px solid var(--border-light);
  padding: 32px 28px; text-align: center;
}
.review-card__stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 16px; color: var(--gold); }
.review-card__stars svg { width: 15px; height: 15px; }
.review-card__quote { color: var(--ink); font-style: italic; font-size: 15.5px; margin: 0 0 20px; }
.review-card__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); margin: 0; }
.review-card__verified {
  display: inline-block; margin-top: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--success);
}

/* ---------- newsletter ---------- */

.newsletter__box {
  max-width: 680px; margin: 0 auto;
  padding: 56px 40px; text-align: center;
  background: var(--noir-2);
  box-shadow: var(--glow-gold);
}
.newsletter__box h2 { font-size: clamp(28px, 3.5vw, 40px); }
.newsletter__box h2 .script { color: var(--gold-bright); }
.newsletter__box p { color: var(--text-muted); margin: 14px auto 28px; max-width: 460px; }
.newsletter__box code {
  font-family: var(--font-body); color: var(--gold-bright); letter-spacing: 0.14em;
  border: 1px dashed var(--border-dark); padding: 2px 8px;
}
.newsletter__form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; min-width: 0;
  background: var(--noir); border: 1px solid var(--border-dark);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 15px 18px; border-radius: var(--radius-card);
}
.newsletter__form input::placeholder { color: var(--text-muted); }
.newsletter__form input:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.newsletter__note { margin-top: 16px !important; font-size: 12px !important; }

/* ---------- instagram band ---------- */

.insta { text-align: center; }
.insta__handle {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 34px);
  color: var(--ink); margin-bottom: 8px; display: inline-block;
}
.insta__sub { color: var(--text-muted-light); margin: 0 0 36px; }
.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.insta-grid a { display: block; overflow: hidden; border: 1px solid var(--border-light); }
.insta-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; height: auto; transition: transform .4s ease; }
.insta-grid a:hover img { transform: scale(1.05); }
.insta__socials { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.insta__socials .icon-btn { color: var(--wine); border-color: var(--border-light); }
.insta__socials .icon-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--noir);
  border-top: 1px solid var(--border-dark);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-bottom {
  margin-top: 56px; border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
}
.footer-bottom p { margin: 0; color: var(--text-muted); font-size: 12.5px; }
.footer-bottom .script { color: var(--crimson-bright); font-size: 19px; }
.pay-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chips span {
  border: 1px solid var(--border-dark); border-radius: var(--radius-card);
  color: var(--text-muted); font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  padding: 5px 10px; text-transform: uppercase;
}

/* ---------- floating chrome ---------- */

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 26px; height: 26px; }

.to-top {
  position: fixed; left: 20px; bottom: 20px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .3s ease; cursor: pointer;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--noir); }
.to-top i { width: 8px; height: 8px; border: none; background: currentColor; transform: rotate(45deg); display: block; }

/* ---------- toast ---------- */

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
  z-index: 250; max-width: min(420px, calc(100vw - 40px));
  background: var(--noir-2); border: 1px solid var(--gold);
  color: var(--text); font-size: 14px;
  padding: 14px 22px; display: flex; align-items: center; gap: 10px;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast--success::before { content: "✓"; color: var(--success); font-weight: 700; }
.toast--error::before { content: "✕"; color: var(--danger); font-weight: 700; }

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- inner pages ---------- */

.page-hero {
  position: relative;
  padding: 110px 0 90px; text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(122, 10, 16, 0.5), transparent 62%),
    var(--noir);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.page-hero h1 .script { color: var(--crimson-bright); }
.page-hero p { color: var(--text-muted); max-width: 540px; margin: 18px auto 0; }

.content-block { padding: 88px 0; }
.content-block__inner { max-width: 760px; margin: 0 auto; }

.prose { color: var(--text-muted); font-size: 16.5px; }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--text); font-weight: 600; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
.value-card { padding: 32px 24px; text-align: center; }
.value-card h3 { font-size: 19px; margin: 14px 0 8px; }
.value-card h3 em { font-family: var(--font-script); font-weight: 400; color: var(--crimson-bright); }
.value-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.contact-form { padding: 36px; }
.contact-form label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 8px;
}
.contact-form .field { margin-bottom: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: var(--noir); border: 1px solid var(--border-dark);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px; border-radius: var(--radius-card);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.contact-info { padding: 36px; }
.contact-info__row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info__row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-info__row h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-info__row p, .contact-info__row a { margin: 0; color: var(--text-muted); font-size: 15px; }
.contact-info__row a { color: var(--text); }
.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); border: 0; white-space: nowrap; }

/* ---------- responsive ---------- */

@media (min-width: 640px) {
  .features-strip { grid-template-columns: repeat(3, 1fr); }
  .line-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .line-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  section { padding: 104px 0; }
}

@media (min-width: 1024px) {
  .nav { display: block; }
  .burger { display: none; }
  .story__grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  section { padding: 128px 0; }
  .hero-slide__content { padding: 64px 56px; }
}

@media (max-width: 640px) {
  .hero-slideshow { min-height: 74vh; }
  .hero-arrow { display: none; }
  .hero-slide__content { padding: 36px 22px; width: calc(100% - 32px); }
  .hero-slide__content h1 { font-size: clamp(36px, 10vw, 52px); }
  .newsletter__form { flex-direction: column; }
  .footer-bottom { justify-content: center; text-align: center; }
  .announcement { font-size: 10px; letter-spacing: 0.16em; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .guilty-marquee__track { animation: none; transform: none; }
  .hero-slide.is-active .hero-slide__bg { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   WordPress integration layer (added at P3 theme port)
   ============================================================ */

/* hidden-attribute guard (author rules must never beat [hidden]) */
.header-search[hidden] { display: none !important; }

/* custom logo */
.custom-logo { max-height: 52px; width: auto; }

/* walker LIs */
.nav__list li { list-style: none; }
.nav__list .current-menu-item > a,
.nav__list .current_page_item > a { color: var(--gold); }
.nav__list .current-menu-item > a::after,
.nav__list .current_page_item > a::after { width: 100%; }
.drawer__panel ul { list-style: none; margin: 0; padding: 0; display: contents; }

/* header search dropdown */
.header-search { border-bottom: 1px solid var(--border-dark); background: var(--noir-2); }
.header-search__inner { display: flex; align-items: center; gap: 10px; padding: 12px 20px; }
.header-search .search-form { flex: 1; display: flex; gap: 10px; }
.search-form__input {
  flex: 1; min-width: 0;
  background: var(--noir); border: 1px solid var(--border-dark);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px; border-radius: var(--radius-card);
}
.search-form__input:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.search-form__btn {
  width: 48px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  border-radius: var(--radius-card); cursor: pointer; transition: all .25s ease;
}
.search-form__btn:hover { background: var(--gold); color: var(--noir); }
.search-form__btn svg { width: 18px; height: 18px; }
.search-page-form { max-width: 520px; margin: 0 auto 40px; display: flex; }
.search-page-form .search-form { flex: 1; display: flex; gap: 10px; }

/* screen-reader (WP core parity) */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%);
  border: 0; white-space: nowrap;
}

/* server-side notices (contact/newsletter) */
.maba-notice {
  border: 1px solid var(--border-dark); border-left: 3px solid var(--gold);
  background: var(--noir-2); color: var(--text);
  padding: 14px 18px; margin: 0 0 22px; font-size: 14.5px;
}
.maba-notice--success { border-left-color: var(--success); }
.maba-notice--error { border-left-color: var(--danger); }

/* stars helper (reviews + single) */
.stars { display: inline-flex; gap: 4px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.stars i { display: inline-flex; }
.stars i:not(.is-on) { opacity: .22; }

/* blog listing + single */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.blog-card { overflow: hidden; }
.blog-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; height: auto; }
.blog-card__body { padding: 26px 24px; color: var(--ink); }
.blog-card__body h3 { font-size: 22px; margin-bottom: 10px; }
.blog-card__body h3 a { color: var(--ink); }
.blog-card__body h3 a:hover { color: var(--wine); }
.blog-card__body p { color: var(--text-muted-light); font-size: 15px; margin: 0 0 12px; }
.blog-card__date { color: var(--gold); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.prose--page, .prose--post { max-width: 760px; margin: 0 auto; color: var(--ink); font-size: 16.5px; }
.prose--page p, .prose--post p { margin: 0 0 20px; }
.prose--page strong, .prose--post strong { color: var(--ink); }
.prose__media { margin: 0 0 32px; padding: 10px; background: var(--bone); }
.prose--post h2, .prose--page h2 { font-size: clamp(24px, 3vw, 34px); margin: 36px 0 14px; color: var(--ink); }
.prose--post h3, .prose--page h3 { font-size: 21px; margin: 28px 0 10px; color: var(--ink); }
.prose--page a, .prose--post a { color: var(--wine); text-decoration: underline; }
.prose--post ul, .prose--page ul { padding-left: 22px; margin: 0 0 20px; }
.prose--post img, .prose--page img { border: 1px solid var(--border-light); }

.post-nav { max-width: 760px; margin: 48px auto 0; display: grid; gap: 14px; }
.post-nav__link {
  border: 1px solid var(--border-light); background: var(--bone);
  padding: 16px 20px; display: flex; flex-direction: column; gap: 4px;
}
.post-nav__link:hover { border-color: var(--gold); }
.post-nav__dir { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); }
.post-nav__title { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 17px; }
@media (min-width: 768px) { .post-nav { grid-template-columns: 1fr 1fr; } .post-nav__link--next { text-align: right; } }

/* 404 */
.error-404 { max-width: 560px; margin: 0 auto; padding: 56px 36px; text-align: center; }
.error-404__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* line "coming soon" placeholder card */
.shade-card--soon { display: flex; align-items: center; justify-content: center; min-height: 320px; }
.shade-card__soon h3 { color: var(--ink); font-size: 24px; margin-bottom: 10px; }
.shade-card__soon p { color: var(--text-muted-light); max-width: 320px; margin: 0 auto; }
