/* =========================================================
   New Stitch Tailor - Alterations & Garment Care
   Modern editorial tailoring site
   ========================================================= */

:root {
  /* palette */
  --ivory: #f4f0e8;
  --ivory-2: #ece7dc;
  --paper: #faf8f3;
  --ink: #17191d;
  --ink-2: #22252b;
  --slate: #4b515c;
  --muted: #6d727c;
  --gold: #c9a35c;
  --gold-deep: #a8823f;
  --gold-soft: rgba(201, 163, 92, 0.14);
  --line: rgba(23, 25, 29, 0.12);
  --line-light: rgba(244, 240, 232, 0.16);
  --oxblood: #7a1f2b;

  /* type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(23, 25, 29, 0.06), 0 4px 14px rgba(23, 25, 29, 0.05);
  --shadow-md: 0 10px 30px rgba(23, 25, 29, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h1 em { font-style: italic; color: var(--gold-deep); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1c1710;
  box-shadow: 0 6px 18px rgba(168, 130, 63, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 28px rgba(168, 130, 63, 0.45); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(23, 25, 29, 0.04); }

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}
.btn-dark:hover { background: #000; box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--paper);
  flex: none;
  white-space: nowrap;
}
.brand-mark .amp { color: var(--gold-deep); font-style: italic; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-text small {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav > a:not(.btn):hover { color: var(--ink); }
.main-nav > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.btn-nav { padding: 11px 22px; margin-left: 6px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(1200px 600px at 85% -10%, var(--gold-soft), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(122, 31, 43, 0.06), transparent 55%),
    var(--ivory);
  overflow: hidden;
}

/* subtle woven texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(23, 25, 29, 0.028) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(23, 25, 29, 0.028) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.lede {
  max-width: 34rem;
  margin: 22px 0 34px;
  font-size: 1.08rem;
  color: var(--slate);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero visual */
.hero-visual { display: grid; place-items: center; }
.hero-frame {
  position: relative;
  width: min(430px, 100%);
  filter: drop-shadow(0 30px 50px rgba(23, 25, 29, 0.18));
}
.hero-frame svg { width: 100%; height: auto; }
.hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 4%;
  border: 1px solid var(--gold);
  border-radius: 18px;
  opacity: 0.35;
  transform: translate(14px, 14px);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.badge-needle { color: var(--gold); }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--muted);
  border-radius: 14px;
  opacity: 0.7;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold-deep);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--slate);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-dark h2 { color: var(--ivory); }
.section-tint { background: var(--ivory); }

.section-head { max-width: 44rem; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { color: var(--slate); }
.section-dark .section-sub { color: rgba(244, 240, 232, 0.65); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 34px 30px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 163, 92, 0.45); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 20px;
  transition: background 0.35s var(--ease), transform 0.45s var(--ease);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card:hover .service-icon { background: var(--gold); color: #1c1710; transform: scale(1.05) rotate(-3deg); }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--slate); margin-bottom: 18px; }

.service-points { display: grid; gap: 8px; border-top: 1px dashed var(--line); padding-top: 16px; }
.service-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.86rem;
  color: var(--slate);
}
.service-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 22px;
  background: rgba(244, 240, 232, 0.045);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.process-step:hover {
  background: rgba(244, 240, 232, 0.08);
  border-color: rgba(201, 163, 92, 0.5);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  padding-top: 2px;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ivory); }
.process-step p { font-size: 0.88rem; color: rgba(244, 240, 232, 0.66); }

/* ---------- Craft ---------- */
.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.craft-copy h2 { margin-bottom: 18px; }
.craft-copy > p { color: var(--slate); margin-bottom: 24px; max-width: 32rem; }

.craft-points { display: grid; gap: 14px; margin-bottom: 34px; }
.craft-points li {
  position: relative;
  padding-left: 30px;
  color: var(--slate);
  font-size: 0.96rem;
}
.craft-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 600;
}
.craft-points strong { color: var(--ink); font-weight: 600; }

.craft-visual { display: grid; place-items: center; }
.craft-card {
  width: min(480px, 100%);
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.craft-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.chip {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ivory-2);
  color: var(--slate);
}
.chip-gold { background: var(--gold-soft); color: var(--gold-deep); }
.craft-card svg { width: 100%; height: auto; border-radius: var(--radius-sm); background: linear-gradient(160deg, #1c2026, #14161a); }
.craft-card img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
.craft-caption {
  margin-top: 16px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.price-featured {
  position: relative;
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, #fffdf8, #fff);
  box-shadow: 0 18px 44px rgba(168, 130, 63, 0.18);
}
.price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1c1710;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.price-from { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.price-from strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-left: 6px;
}

.price-card ul { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--slate);
  padding-bottom: 11px;
  border-bottom: 1px dashed var(--line);
}
.price-card li span { color: var(--ink); font-weight: 600; white-space: nowrap; }

.pricing-note {
  margin-top: 34px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.quote-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 16px; }
.quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 22px;
}
.quote-card figcaption { display: grid; gap: 2px; border-top: 1px solid var(--line); padding-top: 16px; }
.quote-card figcaption strong { font-size: 0.95rem; }
.quote-card figcaption span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy h2 { margin-bottom: 16px; }
.contact-copy > p { color: rgba(244, 240, 232, 0.66); max-width: 28rem; margin-bottom: 36px; }

.contact-list { display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 163, 92, 0.14);
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-list strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-list span { color: rgba(244, 240, 232, 0.85); font-size: 0.95rem; }

.booking-form {
  padding: 40px 36px;
  background: rgba(244, 240, 232, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.6);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(23, 25, 29, 0.55);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(244, 240, 232, 0.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a35c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; cursor: pointer; }
.field select option { color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.22);
  background: rgba(23, 25, 29, 0.75);
}
.field textarea { resize: vertical; min-height: 100px; }

/* color-scheme so native date picker renders light on dark */
.booking-form input[type="date"] { color-scheme: dark; }

.form-status {
  margin-top: 14px;
  min-height: 1.4em;
  font-size: 0.88rem;
  text-align: center;
  color: var(--gold);
  transition: opacity 0.3s var(--ease);
}
.form-status.error { color: #e08a8a; }
.form-status.hidden { opacity: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #101216;
  color: rgba(244, 240, 232, 0.7);
  padding: 56px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; gap: 18px; align-items: flex-start; }
.footer-brand .brand-mark { background: transparent; border-color: rgba(201, 163, 92, 0.6); color: var(--ivory); }
.footer-brand p { font-size: 0.9rem; max-width: 22rem; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.footer-nav a { font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-fine {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
  font-size: 0.78rem;
  color: rgba(244, 240, 232, 0.4);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item figcaption {
  padding: 13px 18px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}
.gallery-wide { grid-column: span 2; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-scroll span { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { gap: 14px; margin-top: 40px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-featured { order: -1; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-frame { width: min(340px, 80%); }
  .craft-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 110px 36px 40px;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(23, 25, 29, 0.14);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { width: 100%; font-size: 1.05rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.btn)::after { display: none; }
  .btn-nav { margin: 18px 0 0; width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-item img { aspect-ratio: 16 / 10; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding-top: 120px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-badge { left: 0; bottom: 14px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; }
  .booking-form { padding: 30px 24px; }
}
