/* ============================================
   MEMORA — Editorial Vintage Restoration Studio
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #F4ECE0;
  --bg-deep: #EADFCF;
  --paper: #FFFEF9;
  --ink: #2B1F18;
  --ink-soft: #5C4A3D;
  --ink-mute: #8A7868;
  --gold: #B8895E;
  --gold-deep: #8E6440;
  --burgundy: #7B2D26;
  --line: #D9CCB8;
  --line-soft: #E8DCC8;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Mulish', system-ui, sans-serif;
  --script: 'Caveat', cursive;

  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at top left, rgba(184, 137, 94, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(123, 45, 38, 0.05) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type Helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--center { display: block; text-align: center; margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--burgundy);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -10px rgba(43, 31, 24, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--small { padding: 0.65rem 1.25rem; font-size: 0.85rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 8px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  line-height: 1;
  padding-bottom: 2px;
}
.nav__brand-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .nav__brand-text { font-size: 1rem; }
  .nav__brand-mark { width: 30px; height: 30px; font-size: 1.2rem; }
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--burgundy); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--pad) clamp(3rem, 8vw, 6rem);
  position: relative;
}
.hero__decor--top { margin-bottom: 2rem; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.hero__title-em {
  font-style: italic;
  color: var(--burgundy);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  position: relative;
  display: inline-block;
}
.hero__title-em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 0.45em;
  background: rgba(184, 137, 94, 0.25);
  z-index: -1;
  transform: skew(-3deg);
}

.hero__lede {
  margin-top: 1.75rem;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "SOFT" 50;
}
.trust-item span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Hero Slider ---------- */
.hero__slider-wrap { position: relative; }
.hero__frame-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  z-index: 5;
  background: var(--paper);
  padding: 0.4rem 0.9rem;
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--burgundy);
  border: 1px solid var(--line);
  transform: rotate(-2deg);
}
.hero__slider-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--script);
  font-size: 1.15rem;
  color: var(--ink-mute);
}

/* Before/After slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  user-select: none;
  cursor: ew-resize;
  background: var(--bg-deep);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 30px 60px -20px rgba(43, 31, 24, 0.4),
    0 12px 24px -10px rgba(43, 31, 24, 0.25);
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__before {
  filter: sepia(0.45) contrast(0.92) brightness(0.95);
  clip-path: inset(0 50% 0 0);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--paper);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.ba-slider__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.ba-slider__handle span::before,
.ba-slider__handle span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.ba-slider__handle span::before {
  border-width: 5px 7px 5px 0;
  border-color: transparent var(--ink) transparent transparent;
  left: 8px;
}
.ba-slider__handle span::after {
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--ink);
  right: 8px;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(43, 31, 24, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  z-index: 3;
}
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  overflow: hidden;
  padding: 1.4rem 0;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-variation-settings: "SOFT" 100;
  animation: scroll 45s linear infinite;
  width: max-content;
}
.ticker__track span { flex-shrink: 0; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Section Heads ---------- */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  font-variation-settings: "SOFT" 100;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.section-sub {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- How ---------- */
.how {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.how__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 800px) {
  .how__grid { grid-template-columns: 1fr; }
}

.step {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(43, 31, 24, 0.2);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.step__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step__desc {
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
.ba-slider--small { aspect-ratio: 1 / 1; }
.ba-slider--small .ba-slider__handle span {
  width: 32px;
  height: 32px;
}
.gallery__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--script);
  font-size: 1.15rem;
  color: var(--ink-mute);
}

/* ---------- Pricing ---------- */
.pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.pricing__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(43, 31, 24, 0.2);
}
.plan--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan--featured .plan__caption,
.plan--featured .plan__per { color: rgba(255, 254, 249, 0.7); }
.plan--featured .plan__list li { border-color: rgba(255, 254, 249, 0.15); }
.plan--featured .plan__amount { color: var(--paper); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.plan__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-mute);
  margin-top: 0.35rem;
  font-variation-settings: "SOFT" 100;
}
.plan__price {
  margin: 1.75rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.plan__amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 30;
}
.plan__per { font-size: 0.9rem; color: var(--ink-mute); }
.plan__per s { color: var(--ink-mute); margin-right: 0.3rem; }

.plan__list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan__list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.plan__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  top: 0.55rem;
}
.plan__list li:last-child { border-bottom: none; }

.plan__cta { width: 100%; }
.plan--featured .btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.plan--featured .btn--primary:hover { background: var(--paper); }

.pricing__addons {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem var(--pad);
  background: var(--bg-deep);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}
.pricing__addons h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.pricing__addons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing__addons li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 0.6rem;
}
.pricing__addons li:last-child { border-bottom: none; }
.pricing__addons strong { font-weight: 600; }
.pricing__addons span {
  font-family: var(--serif);
  color: var(--burgundy);
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
}

.pricing__payment-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dotted var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}
.pricing__payment-note strong { color: var(--ink); }

.custom-plan {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.custom-plan::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(184, 137, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 700px) {
  .custom-plan {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.custom-plan__content { position: relative; z-index: 1; }
.custom-plan .eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.custom-plan h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.custom-plan p {
  color: rgba(255, 254, 249, 0.75);
  line-height: 1.55;
  font-size: 1rem;
}
.custom-plan .btn {
  background: var(--gold);
  color: var(--ink);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.custom-plan .btn:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 5%;
  font-family: var(--serif);
  font-size: 18rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-style: italic;
  pointer-events: none;
}
.testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.testimonials .eyebrow { color: var(--gold); }

.quote {
  text-align: center;
  margin-bottom: 4rem;
}
.quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.quote footer {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 254, 249, 0.6);
  letter-spacing: 0.05em;
}
.quote cite { font-style: normal; }

.testimonials__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .testimonials__row { grid-template-columns: 1fr; }
}
.mini-quote {
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 254, 249, 0.03);
}
.mini-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-variation-settings: "SOFT" 80;
}
.mini-quote span {
  font-size: 0.82rem;
  color: rgba(255, 254, 249, 0.5);
}

/* ---------- Order ---------- */
.order {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.order__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .order__grid { grid-template-columns: 1fr; }
}

.order__form {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label,
.field__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }

.field--checks { gap: 0.75rem; }
.check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
  cursor: pointer;
}

.field--total {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}
.field--total span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field--total strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 30;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.form-note--small { font-size: 0.78rem; }
.form-note--small a { text-decoration: underline; }

.paypal-wrap {
  min-height: 50px;
  margin-top: 0.5rem;
}

.order__side {
  background: var(--bg-deep);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.order__side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.order__side ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.order__side ol::marker { color: var(--gold-deep); }

.guarantee {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}
.guarantee strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.guarantee p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding-right: 1rem;
  font-variation-settings: "SOFT" 30;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--burgundy);
}
.faq__item p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-right: 2rem;
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section-head--left {
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 0;
}
.section-head--left .section-sub {
  margin-left: 0;
  margin-right: 0;
}
.contact__form {
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 600px) {
  .contact__row { grid-template-columns: 1fr; }
}
.contact__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
#contactStatus {
  margin: 0;
  min-height: 1.2em;
  transition: color 0.2s;
}
#contactStatus.is-success { color: #4A6741; }
#contactStatus.is-error { color: var(--burgundy); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 254, 249, 0.7);
  padding: 4rem 0 2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer__brand .nav__brand-text { color: var(--paper); }
.footer__brand .nav__brand-mark { background: var(--gold); color: var(--ink); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer__brand .nav__brand { gap: 0.7rem; }
.footer__brand .nav__brand-text { font-size: 1.5rem; }
.footer__brand .nav__brand-mark { width: 40px; height: 40px; font-size: 1.6rem; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 254, 249, 0.5);
  font-variation-settings: "SOFT" 80;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
.footer__cols h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__cols a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--gold); }
.footer__base {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid rgba(255, 254, 249, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 254, 249, 0.4);
}
@media (max-width: 600px) {
  .footer__base { flex-direction: column; gap: 0.5rem; }
}

/* ---------- Page entry animation ---------- */
.hero__title,
.hero__lede,
.hero__ctas,
.hero__trust,
.hero__slider-wrap {
  animation: heroIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.hero__title { animation-delay: 0.1s; }
.hero__lede { animation-delay: 0.25s; }
.hero__ctas { animation-delay: 0.4s; }
.hero__trust { animation-delay: 0.55s; }
.hero__slider-wrap { animation-delay: 0.3s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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