/* ===================================================================
   Kreations by Erica — Brand Stylesheet
   Feminine · Elegant · Boutique · Faith-Inspired
   Palette: Red #B11226 · Deep Red #7A0F1B · Black #111111
            Gold #D8B76A · Ivory #FFF8F0 · Blush #F7E9E7 · White #FFF
   =================================================================== */

:root {
  --red: #B11226;
  --deep-red: #7A0F1B;
  --black: #111111;
  --gold: #D8B76A;
  --gold-dark: #b9974b;
  --ivory: #FFF8F0;
  --blush: #F7E9E7;
  --white: #FFFFFF;

  --ink: #2a2320;          /* softened body text */
  --muted: #6f6157;        /* muted captions */
  --line: #ece1d6;         /* hairline dividers */

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, "Segoe UI", sans-serif; /* dark-theme overrides live at end of file */
  --font-script: 'Great Vibes', cursive;

  --shadow-sm: 0 4px 18px rgba(122, 15, 27, 0.06);
  --shadow-md: 0 14px 40px rgba(122, 15, 27, 0.10);
  --shadow-lg: 0 26px 70px rgba(122, 15, 27, 0.14);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--black);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--ink); }

.accent-red { color: var(--red); }
.script {
  font-family: var(--font-script);
  color: var(--red);
  font-weight: 400;
  line-height: 1;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-blush { background: var(--blush); }
.bg-blush-soft { background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%); }
.bg-dark { background: var(--black); color: var(--ivory); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255, 248, 240, 0.82); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  color: var(--gold-dark);
  display: inline-block;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.divider-gold {
  width: 78px; height: 2px; border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto;
}
.section-head.left .divider-gold { margin-left: 0; margin-right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 50px; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: 0.76rem; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 26px rgba(177, 18, 38, 0.28); }
.btn-primary:hover { background: var(--deep-red); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(122, 15, 27, 0.34); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--ivory); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 10px 26px rgba(216, 183, 106, 0.35); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost-light:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--container); margin: 0 auto; padding: 0 26px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--red); background: var(--white);
}
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.28rem;
  color: var(--black); line-height: 1.05;
}
.brand-name small {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink); position: relative; padding: 6px 0;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.main-nav .mobile-only { display: none; } /* shown only in mobile menu (see 860px query) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--black); transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, var(--blush) 0%, var(--ivory) 55%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--gold) 0.7px, transparent 0.7px);
  background-size: 26px 26px; opacity: 0.08; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}
.hero-copy .script { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 6px; }
.hero-copy h1 { margin: 8px 0 18px; }
.hero-copy h1 .accent-red { color: var(--red); }
.hero-copy p.lead { font-size: 1.12rem; color: var(--ink); max-width: 540px; margin-bottom: 30px; }
.hero-copy .divider-gold { margin: 0 0 26px; }
.hero-media { position: relative; }
.hero-media .img-ph { aspect-ratio: 4/5; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; color: var(--red); font-size: 1.2rem; }
.hero-badge b { font-family: var(--font-head); font-size: 1rem; display: block; }
.hero-badge span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Image placeholders ---------- */
.img-ph {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(135deg, var(--blush) 0%, var(--ivory) 60%, var(--white) 100%);
  border: 1px dashed rgba(216, 183, 106, 0.65);
  display: grid; place-content: center; text-align: center; gap: 6px;
  color: var(--muted); padding: 20px;
}
.img-ph::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(216,183,106,0.35);
  border-radius: 8px; pointer-events: none;
}
.img-ph-mono {
  font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--gold-dark);
  border: 1.5px solid var(--gold); border-radius: 50%; width: 58px; height: 58px;
  display: grid; place-items: center; margin: 0 auto 4px; background: rgba(255,255,255,0.6);
}
.img-ph-label { font-family: var(--font-head); font-size: 1.05rem; color: var(--black); }
.img-ph-note { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); }
.img-ph.tall { aspect-ratio: 3/4; }
.img-ph.wide { aspect-ratio: 16/9; }
.img-ph.square { aspect-ratio: 1/1; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column; border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .img-ph { border-radius: 0; border: 0; aspect-ratio: 4/3; }
.card .img-ph::after { inset: 14px; }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { color: var(--black); }
.card-body p { color: var(--muted); font-size: 0.95rem; }
.card-price { font-family: var(--font-head); color: var(--red); font-weight: 700; font-size: 1.05rem; }
.card-price small { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; }
.card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }

/* Category card (link-style) */
.cat-card { text-align: center; }
.cat-card .card-body { align-items: center; text-align: center; }
.cat-card .card-link {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); margin-top: 6px; display: inline-flex; gap: 7px; align-items: center;
  transition: gap 0.3s ease;
}
.cat-card:hover .card-link { gap: 12px; }

/* Feature card */
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 1.6rem; color: var(--red);
  background: var(--blush); border: 1px solid rgba(216,183,106,0.5);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* Step card */
.step-card { text-align: center; position: relative; padding: 8px 10px; }
.step-num {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  font-size: 1.7rem; color: var(--white); background: var(--red);
  box-shadow: 0 12px 26px rgba(177,18,38,0.28); position: relative; z-index: 2;
}
.step-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: 0.92rem; }
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; top: 37px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 1;
}

/* ---------- Split / About preview ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split .img-ph { aspect-ratio: 4/5; }
.split-copy .divider-gold { margin: 18px 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { max-width: 720px; margin: 0 auto 10px; }
.cta-band p { max-width: 560px; margin: 0 auto 26px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: radial-gradient(120% 130% at 50% 0%, var(--blush) 0%, var(--ivory) 60%);
  text-align: center; padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line); position: relative;
}
.page-hero .script { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.page-hero h1 { margin: 6px 0 6px; }
.page-hero p { max-width: 640px; margin: 12px auto 0; color: var(--muted); font-size: 1.08rem; }
.breadcrumb { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--ivory); transition: border-color 0.25s ease, box-shadow 0.25s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,183,106,0.2); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .file-note { font-size: 0.75rem; color: var(--muted); }
.form-note {
  margin-top: 22px; padding: 16px 18px; border-radius: 12px; background: var(--blush);
  border: 1px solid rgba(216,183,106,0.4); font-size: 0.9rem; color: var(--deep-red);
}
.form-success {
  display: none; margin-top: 22px; padding: 20px; border-radius: 12px;
  background: #f1f8f1; border: 1px solid #cfe6cf; color: #2f6b34; text-align: center;
}
.form-success.show { display: block; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 38px; }
.filter-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 20px; border-radius: 50px; cursor: pointer;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink); transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .img-ph { border: 0; border-radius: var(--radius); }
.gallery-item.hide { display: none; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s ease; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: rgba(216,183,106,0.6); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--black);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--red); transition: transform 0.3s ease;
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.faq-item.open .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Policy / legal content ---------- */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-size: 1.5rem; color: var(--deep-red); margin: 38px 0 12px; }
.doc h2:first-child { margin-top: 0; }
.doc p { margin-bottom: 14px; color: var(--ink); }
.doc ul.bullets { margin: 0 0 16px; padding-left: 4px; }
.doc ul.bullets li { position: relative; padding-left: 24px; margin-bottom: 9px; color: var(--ink); }
.doc ul.bullets li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-dark); }
.doc .note-line { color: var(--muted); font-size: 0.9rem; font-style: italic; }

/* ---------- Info list (contact) ---------- */
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--blush); display: grid; place-items: center; color: var(--red); font-size: 1.15rem; }
.info-item b { font-family: var(--font-head); font-size: 1.05rem; display: block; }
.info-item span, .info-item a { color: var(--muted); font-size: 0.95rem; }
.info-item a:hover { color: var(--red); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); transition: all 0.3s ease; font-size: 0.9rem;
}
.social-row a:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,248,240,0.72); padding: 64px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-mark { background: transparent; }
.footer-brand p { color: rgba(255,248,240,0.6); font-size: 0.95rem; margin-top: 16px; max-width: 300px; }
.footer-brand .script { color: var(--gold); font-size: 1.5rem; margin-top: 14px; display: block; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,248,240,0.66); font-size: 0.92rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 22px 0; font-size: 0.82rem; color: rgba(255,248,240,0.5);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; }
.max-720 { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps::before { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--ivory); flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 26px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform 0.4s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .main-nav .btn { margin-top: 16px; border: 0; }
  .main-nav .mobile-cta { display: inline-flex !important; width: 100%; }
  .main-nav .mobile-only { display: block; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .split .img-ph { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero-badge { left: 10px; right: 10px; bottom: -18px; }
}

/* ===================================================================
   DARK THEME  (override block — delete this whole section to revert)
   Warm near-black surfaces, ivory text, gold/red accents preserved.
   =================================================================== */
:root {
  --ink: #E9DED2;          /* body text on dark */
  --muted: #A99B8E;        /* captions on dark */
  --line: #2E2620;         /* hairline borders on dark */
}
html, body { background: #0E0B0A; }
body { color: var(--ink); }

/* Section background utilities → dark, with gentle alternating rhythm */
.bg-ivory { background: #0E0B0A; }
.bg-white { background: #151110; }
.bg-blush { background: #151110; }
.bg-blush-soft { background: linear-gradient(180deg, #0E0B0A 0%, #151110 100%); }

/* Headings & label text → light */
h1, h2, h3, h4 { color: #FFF8F0; }
.card-body h3, .brand-name, .faq-q, .info-item b, .hero-badge b,
.step-card h3, .feature-card h3, .footer-brand .brand-name { color: #FFF8F0; }
.eyebrow { color: var(--gold); }
.doc h2 { color: var(--gold); }

/* Surfaces: cards, forms, faq, badges, filters */
.card, .feature-card, .faq-item, .form-card, .hero-badge {
  background: #17120F; border-color: #2E2620;
}
.faq-item.open { border-color: rgba(216,183,106,0.55); }
.filter-btn { background: #17120F; border-color: #2E2620; color: var(--ink); }

/* Header */
.site-header { background: rgba(14,11,10,0.85); border-bottom-color: #2A2320; }
.brand-mark { background: #151110; }
.main-nav a { color: var(--ink); }
.nav-toggle span { background: #FFF8F0; }
@media (max-width: 860px) {
  .main-nav { background: #0E0B0A; border-bottom-color: #2A2320; }
  .main-nav a { border-bottom-color: #2A2320; }
}

/* Buttons: keep red/gold; make outline light on dark */
.btn-outline { color: #FFF8F0; border-color: rgba(255,248,240,0.55); }
.btn-outline:hover { background: #FFF8F0; color: var(--black); }

/* Form inputs */
.field input, .field select, .field textarea {
  background: #221C18; border-color: #2E2620; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { background: #2A231E; }
.form-note { background: #1A1512; border-color: rgba(216,183,106,0.3); color: var(--gold); }

/* Chips / icons that were blush */
.feature-icon, .info-item .ic { background: #221C18; border-color: rgba(216,183,106,0.4); color: var(--gold); }
.social-row a { border-color: #2E2620; color: var(--ink); }

/* Hero + page-hero gradients */
.hero { background: radial-gradient(120% 120% at 80% 0%, #1E1712 0%, #0E0B0A 55%); }
.page-hero { background: radial-gradient(120% 130% at 50% 0%, #1E1712 0%, #0E0B0A 60%); border-bottom-color: #2A2320; }

/* Image placeholders → dark with gold accents */
.img-ph {
  background: linear-gradient(135deg, #1E1712 0%, #0E0B0A 60%, #151110 100%);
  border-color: rgba(216,183,106,0.4); color: var(--muted);
}
.img-ph-mono { background: rgba(255,255,255,0.04); }
.img-ph-label { color: #FFF8F0; }

/* Slightly lift the dark CTA band so it separates from the page */
.cta-band.bg-dark { background: #151110; }

/* ---- Real images ---- */
.brand-logo { height: clamp(54px, 8vw, 66px); width: auto; display: block; }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.portrait-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 18%; display: block; border-radius: var(--radius); }

/* Featured Creation hero: layered real-product composition */
.hero-feature { position: relative; }
.hero-feature-main {
  position: relative; z-index: 2; margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(216, 183, 106, 0.6);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.hero-feature-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 42%; display: block; }
.hero-feature-main figcaption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-size: 0.68rem;
  color: #FFF8F0; background: rgba(14, 11, 10, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(216, 183, 106, 0.45); padding: 7px 13px; border-radius: 50px;
}
.hero-feature-back {
  position: absolute; z-index: 1; top: -24px; right: -20px; width: 44%; aspect-ratio: 4/5;
  object-fit: cover; object-position: 50% 40%; border-radius: 14px;
  border: 1px solid rgba(216, 183, 106, 0.4); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5); opacity: 0.95;
}
@media (max-width: 640px) {
  .hero-feature-back { width: 40%; top: -16px; right: -6px; }
}
