/* =================================================================
   ByTriumphant — styles.css
   Brand: black background, dark elevated cards, teal (trust/calm)
   + magenta (energy/emphasis) accents. No other accent colors.

   EASY EDITING: most colors, fonts and spacing live in :root below.
   Change a value once here and it updates everywhere.
   ================================================================= */

:root {
  /* --- Brand colors --- */
  --bg:           #0a0a0c;   /* black background */
  --bg-soft:      #111116;   /* slightly raised dark band */
  --bg-deep:      #050506;   /* footer / deepest */

  --cream:        #17171d;   /* primary card surface (dark) */
  --cream-soft:   #1e1e25;   /* secondary card surface */
  --ink:          #f2f1f5;   /* text on card */
  --ink-soft:     #a4a3ad;   /* muted text on card */

  --paper:        #f2f1f5;   /* text on background */
  --paper-soft:   #a4a3ad;   /* muted text on background */

  /* Brand accents — teal (trust/calm) + magenta (energy/emphasis) */
  --teal:         #2bb7a8;   /* primary accent: links, labels, icons, prices */
  --teal-deep:    #1f8b80;   /* teal hover */
  --magenta:      #d6248c;   /* emphasis: buttons, dividers, callouts */
  --magenta-deep: #b11a72;   /* magenta hover */
  /* legacy alias so older rules resolve to teal */
  --brown:        var(--teal);
  --brown-deep:   var(--teal-deep);

  --line:         rgba(255, 255, 255, 0.10); /* hairline on dark bg */
  --line-ink:     rgba(255, 255, 255, 0.10); /* hairline on card */

  /* --- Type --- */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Layout --- */
  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 26px 60px -28px rgba(0, 0, 0, 0.6);
}

/* ----------------------------- Reset ---------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; }
p { margin: 0 0 1em; text-wrap: pretty; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.visually-hidden,
.skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--magenta); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200;
}
.hidden-field { display: none; }

/* ------------------------- Eyebrow / labels --------------------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paper-soft);
  margin: 0 0 0.9rem;
}
.eyebrow--brown { color: var(--brown); }

/* ============================== NAV ============================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, var(--teal), var(--magenta) 78%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  flex: none;
}
.brand__name { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.01em; }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links a:not(.btn) {
  font-size: 0.92rem; font-weight: 600; color: var(--paper-soft); position: relative; padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--brown); transition: right 0.28s ease;
}
.nav__links a:not(.btn):hover { color: var(--paper); }
.nav__links a:not(.btn):hover::after { right: 0; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 10px; margin-right: -10px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--paper); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ BUTTONS =========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn--solid { background: var(--magenta); color: #ffffff; box-shadow: 0 10px 24px -14px rgba(214,36,140,0.55); }
.btn--solid:hover { background: var(--magenta-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(214,36,140,0.6); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--paper-soft); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn--small { padding: 9px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ============================= HERO ============================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 13vw, 150px) 0 clamp(64px, 11vw, 130px);
  background:
    radial-gradient(120% 90% at 80% 6%, rgba(43,183,168,0.16), transparent 55%),
    radial-gradient(90% 75% at 10% 100%, rgba(214,36,140,0.16), transparent 60%),
    var(--bg);
}
.hero__inner { max-width: 860px; }
.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  letter-spacing: -0.015em; margin: 0 0 0.55em; color: var(--paper);
}
.hero__lead { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--paper-soft); max-width: 620px; margin-bottom: 2em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================== SECTIONS =========================== */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section__title { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.01em; }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__sub { color: var(--paper-soft); font-size: 1.08rem; margin-top: 0.8em; }

/* ---------------------------- Our Work -------------------------- */
.work { background: var(--bg-soft); }
.work__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 6vw, 80px); align-items: start; }
.work__intro .section__title { color: var(--paper); }
.work__body p { font-size: 1.15rem; color: var(--paper-soft); }
.work__body strong { color: var(--paper); font-weight: 600; }

/* --------------------- Inclusive statement ---------------------- */
.inclusive { text-align: center; }
.inclusive__title {
  font-size: clamp(2rem, 5vw, 3.5rem); max-width: 880px; margin: 0 auto clamp(44px, 7vw, 72px);
  letter-spacing: -0.01em; color: var(--paper);
}
.inclusive__title { font-style: italic; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: 36px 30px; text-align: left; box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
/* Consistent turquoise icon treatment across feature blocks */
.feature__icon {
  display: block; width: 30px; height: 30px; border-radius: 8px; margin-bottom: 18px;
  background: var(--teal);
}
.feature h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
.feature p { color: var(--ink-soft); margin: 0; }

/* ---------------------------- Cards ----------------------------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow); position: relative;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card__title { font-size: 1.45rem; margin-bottom: 0.55em; }
.card p { color: var(--ink-soft); }
.card__list { margin: 1em 0 0; padding: 0; list-style: none; }
.card__list li {
  position: relative; padding-left: 22px; margin-bottom: 0.5em; color: var(--ink-soft); font-size: 0.97rem;
}
.card__list li::before {
  content: ""; position: absolute; left: 4px; top: 0.62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--brown);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.service-card--merch { background: var(--cream-soft); }

.tag {
  display: inline-block; font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #ffffff; background: var(--teal);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.tag--accent { background: var(--magenta); }

.link-arrow {
  display: inline-block; margin-top: 16px; font-weight: 700; font-size: 0.95rem; color: var(--brown);
  transition: color 0.2s ease, transform 0.2s ease;
}
.link-arrow:hover { color: var(--brown-deep); transform: translateX(3px); }

.services__note, .shop__note {
  text-align: center; max-width: 680px; margin: clamp(36px, 5vw, 52px) auto 0;
  color: var(--paper-soft); font-size: 0.98rem; font-style: italic;
}

/* ----------------------------- Shop ----------------------------- */
.shop { background: var(--bg-soft); }
.cards--products { grid-template-columns: repeat(3, 1fr); }
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card__media {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  /* placeholder texture — replace this div with a real <img> */
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0 10px, rgba(255,255,255,0.06) 10px 20px),
    var(--cream-soft);
  border-bottom: 1px solid var(--line-ink);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ph-label {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-soft);
  text-transform: uppercase; background: rgba(255,255,255,0.08); padding: 5px 10px; border-radius: 6px;
}
.product-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__body .card__title { font-size: 1.3rem; }
.product-card__body p { font-size: 0.97rem; }
.price { color: var(--ink) !important; font-size: 1.02rem; margin-top: auto; padding-top: 0.6em; }
.price strong { color: var(--brown-deep); font-size: 1.15rem; }
.product-card .btn { margin: 14px 0 4px; }

/* ---------------------------- Process --------------------------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step;
}
.step {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-5px); border-color: rgba(43,183,168,0.5); }
.step__num { font-family: var(--serif); font-size: 1.6rem; color: var(--brown); display: block; margin-bottom: 0.5em; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5em; color: var(--paper); }
.step p { color: var(--paper-soft); margin: 0; font-size: 0.97rem; }

/* ------------------ Requests / Revisions / Pricing -------------- */
.details { background: var(--bg-soft); }
.details__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.detail-block {
  background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.detail-block h3 { font-size: 1.4rem; margin-bottom: 0.6em; }
.detail-block h3::before {
  content: ""; display: block; width: 34px; height: 3px; background: var(--magenta);
  border-radius: 2px; margin-bottom: 16px;
}
.detail-block p { color: var(--ink-soft); }
.detail-block p:last-child { margin-bottom: 0; }

/* ----------------------------- FAQs ----------------------------- */
.faqs__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.faqs .section__head { margin: 0; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.25s ease;
}
.faq[open] { border-color: rgba(43,183,168,0.5); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; font-size: 1.02rem;
  color: var(--paper); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--brown); line-height: 1;
  transition: transform 0.3s ease; flex: none;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 24px 22px; }
.faq__body p { margin: 0; color: var(--paper-soft); }

/* ---------------------------- Contact --------------------------- */
.contact { background: var(--bg-deep); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact__intro .section__title { color: var(--paper); }
.contact__intro > p { color: var(--paper-soft); font-size: 1.1rem; max-width: 420px; }
.contact__details { list-style: none; margin: 2em 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact__details li { display: flex; flex-direction: column; gap: 3px; }
.contact__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brown); font-weight: 700; }
.contact__details a { color: var(--paper); font-size: 1.15rem; font-weight: 600; transition: color 0.2s ease; }
.contact__details a:hover { color: var(--brown); }
.contact__details span:not(.contact__label) { color: var(--paper-soft); }

/* Form */
.form {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.form__row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form__row label { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.optional { font-weight: 500; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--line-ink); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,183,168,0.22);
}
.form .btn { margin-top: 6px; }

/* ---------------------------- Footer ---------------------------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 72px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { color: var(--paper-soft); margin-top: 16px; max-width: 280px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: var(--brown); font-weight: 700; margin-bottom: 6px; }
.footer__col a, .footer__col span { color: var(--paper-soft); font-size: 0.96rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 24px; padding-bottom: 28px; }
.footer__bottom p { margin: 0; color: var(--paper-soft); font-size: 0.86rem; }

/* -------------- Subsection heading (e.g. "monthly plans") ------- */
.subhead {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; font-weight: 700; color: var(--paper-soft);
  margin: clamp(28px, 4vw, 44px) 0 18px;
}

/* ------------- Featured one-time "Brand Foundation" card -------- */
.service-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: start; background: var(--cream-soft); border-left: 4px solid var(--magenta);
}
.service-featured .card__title { font-size: clamp(1.5rem, 2.6vw, 1.8rem); }
.service-featured__list { columns: 2; column-gap: 30px; margin-top: 0 !important; }
.service-featured__list li { break-inside: avoid; }

/* ---------------------- Branding pricing ----------------------- */
.pricing__cards { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card .card__title { font-size: 1.35rem; }
.price-card__desc { font-size: 0.95rem; }
.price-card__rate { font-style: italic; color: var(--ink-soft); margin: 0.5em 0 1.5em; font-size: 0.95rem; }
.price-card--featured { background: var(--cream-soft); border: 1.5px solid var(--magenta); }

.rate-list { list-style: none; margin: 1.2em 0 1.5em; padding: 0; }
.rate-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line-ink);
}
.rate-list li:last-child { border-bottom: 0; }
.rate-list span { color: var(--ink-soft); font-size: 0.95rem; }
.rate-list strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.rate-list li:first-child strong { color: var(--brown-deep); }
.price-card .btn { margin-top: auto; }

.pricing__notes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 920px; margin: clamp(36px, 5vw, 52px) auto 0;
}
.pricing__note {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 24px; color: var(--paper-soft); font-size: 0.95rem; margin: 0;
}
.pricing__note strong { color: var(--paper); display: block; margin-bottom: 5px; }

/* ----------------------- FAQ inner list ------------------------ */
.faq__list { margin: 0.7em 0 0; padding-left: 1.15em; color: var(--paper-soft); }
.faq__list li { margin-bottom: 0.35em; }

/* ----------------------- Shop additions ------------------------ */
.shop__lead {
  text-align: center; max-width: 620px; margin: -6px auto 28px; color: var(--paper-soft);
  font-size: 1rem;
}
.shop .subhead { text-align: center; }

/* Product type badge sits on the image */
.product-card__media { position: relative; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; margin: 0; background: var(--brown);
}
.product-card__badge--teal { background: var(--magenta); }

/* Quote-based price (no dollar figure) */
.price--quote { font-style: italic; color: var(--ink-soft) !important; }

/* Sample-work gallery */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px;
}
.gallery__item {
  margin: 0; background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.gallery__media { aspect-ratio: 1 / 1; border-bottom: 1px solid var(--line-ink); }
.gallery__cap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; color: var(--ink); font-weight: 600; font-size: 0.95rem;
}
.gallery__cap .link-arrow { margin: 0; font-size: 0.86rem; white-space: nowrap; }

/* Request Custom Order banner */
.shop-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--cream); color: var(--ink); border: 1px solid var(--line); border-left: 4px solid var(--magenta);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
  margin-top: clamp(36px, 5vw, 56px);
}
.shop-cta__text h3 { font-size: 1.5rem; margin-bottom: 0.3em; }
.shop-cta__text p { color: var(--ink-soft); margin: 0; max-width: 520px; }
.shop-cta .btn { flex: none; }

@media (max-width: 560px) {
  .shop-cta { flex-direction: column; align-items: flex-start; }
  .shop-cta .btn { width: 100%; }
}

/* ------------- Custom Gifts & Personalized Items --------------- */
.gift-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.gift-grid--bundles { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gift-card { display: flex; flex-direction: column; padding: 30px 32px; }
.gift-card .card__title { font-size: 1.3rem; margin-bottom: 0.7em; }
.gift-list { list-style: none; margin: 0 0 auto; padding: 0; }
.gift-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--line-ink);
}
.gift-list li:last-child { border-bottom: 0; }
.gift-list span { color: var(--ink-soft); font-size: 0.92rem; }
.gift-list strong {
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--brown-deep);
  white-space: nowrap;
}
.gift-card__note { font-size: 0.82rem; font-style: italic; color: var(--ink-soft); margin: 12px 0 0; }
.gift-card__actions { margin-top: 22px; }
.gift-card__buy { display: block; text-align: center; margin-top: 10px; font-size: 0.9rem; }
.gift-card--bundle .gift-list { margin-bottom: 0; }

.gifts__footer { max-width: 720px; margin: clamp(36px, 5vw, 52px) auto 0; text-align: center; }
.gifts__footer .shop__note { margin: 0 0 22px; }

/* ========================== RESPONSIVE ========================== */
@media (max-width: 980px) {
  .feature-grid, .cards, .cards--products, .steps, .details__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards, .pricing__notes { grid-template-columns: 1fr; }
  .work__grid, .faqs__inner, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg-soft); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px; transform: translateY(-130%); transition: transform 0.32s ease;
    box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 14px; }
}

@media (max-width: 680px) {
  .service-featured { grid-template-columns: 1fr; }
  .service-featured__list { columns: 1; }
}

@media (max-width: 560px) {
  .feature-grid, .cards, .cards--products, .steps, .details__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .card, .feature, .detail-block { padding: 28px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
