/* ============================================================
   My Tailor & Little Things — Marina Walk
   Design system: interior-editorial, tactile, craft-led
   Palette + type from research/brand-system.md
   ============================================================ */

:root {
  --bg: #F7F1E8;
  --surface: #FFFDF9;
  --surface-2: #F0E7D7;
  --text: #2A211B;
  --muted: #756B60;
  --primary: #8A6A4A;
  --secondary: #2F4A3C;
  --secondary-deep: #213527;
  --accent: #C77E4F;
  --accent-ink: #A85E32;
  --border: #E2D5C4;
  --photo-dark: #211C17;
  --focus: #C77E4F;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(42,33,27,.05), 0 6px 18px rgba(42,33,27,.06);
  --shadow-md: 0 12px 40px rgba(42,33,27,.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 0;
  border-top: 1.5px dashed var(--accent);
}
.eyebrow.is-centered::after {
  content: "";
  width: 26px;
  height: 0;
  border-top: 1.5px dashed var(--accent);
}

.section-head { max-width: 640px; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  margin-top: 18px;
}
.section-head .lede {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}
.section-head.is-centered .lede { margin-inline: auto; }

/* stitch divider */
.stitch {
  border: 0;
  border-top: 1.5px dashed var(--border);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(199,126,79,.28); }
.btn--primary:hover { background: var(--accent-ink); box-shadow: 0 10px 26px rgba(168,94,50,.34); }

.btn--dark { background: var(--secondary); color: #F4EFE6; }
.btn--dark:hover { background: var(--secondary-deep); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); background: rgba(138,106,74,.06); }

.btn--light { background: rgba(255,253,249,.1); color: #F4EFE6; border-color: rgba(244,239,230,.3); }
.btn--light:hover { background: rgba(255,253,249,.18); border-color: rgba(244,239,230,.6); }

.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247,241,232,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(42,33,27,.02), 0 8px 30px rgba(42,33,27,.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.brand__name small {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .25s ease;
}
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 55;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
}
.nav.menu-open + .drawer, .drawer.open { transform: translateX(0); }
.drawer a.drawer__link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1.5px dashed var(--border);
}
.drawer__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 110px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { padding-block: clamp(20px, 4vw, 56px); }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.1rem);
  margin-top: 22px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero__lede {
  margin-top: 24px;
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 46ch;
}
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1.5px dashed var(--border);
}
.trust-rating { display: flex; align-items: center; gap: 12px; }
.trust-rating .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.trust-rating .meta { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.trust-rating .meta b { color: var(--text); font-weight: 700; }
.trust-sep { width: 1px; height: 40px; background: var(--border); }
.trust-loc { font-size: .9rem; color: var(--muted); line-height: 1.45; }
.trust-loc b { display: block; color: var(--text); font-weight: 700; font-family: var(--serif); font-size: 1.05rem; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(33,28,23,.78);
  backdrop-filter: blur(4px);
  color: #F4EFE6;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 9px 15px;
  border-radius: 100px;
}
.hero__frame {
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(244,239,230,.55);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ============================================================
   MARQUEE / category strip
   ============================================================ */
.strip {
  background: var(--secondary);
  color: #EAE3D6;
  overflow: hidden;
  border-block: 1px solid var(--secondary-deep);
}
.strip__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.strip__track span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  padding: 18px 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.strip__track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ============================================================
   INTRO / about
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.intro__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.intro__media .tall { grid-row: span 2; aspect-ratio: 3/4; }
.intro__media .short { aspect-ratio: 4/3; }
.intro h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 16px; }
.intro p { margin-top: 18px; color: var(--muted); }
.intro p + p { margin-top: 14px; }
.intro__stats {
  margin-top: 30px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1.5px dashed var(--border);
}
.stat .k { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; line-height: 1; }
.stat .l { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.svc-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-feature.rev { grid-template-columns: 1fr 1.1fr; }
.svc-feature__media { position: relative; min-height: 280px; }
.svc-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-feature__body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.svc-feature__body h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.svc-feature__body p { margin-top: 14px; color: var(--muted); }
.svc-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--primary);
  border: 1px solid var(--border);
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card__media { aspect-ratio: 3/2; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__body { padding: 22px 22px 26px; }
.svc-card__body h3 { font-size: 1.45rem; }
.svc-card__body p { margin-top: 8px; font-size: .92rem; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--surface-2); }
.gal-filters {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gal-filter {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
}
.gal-filter:hover { color: var(--text); border-color: var(--primary); }
.gal-filter.active { background: var(--secondary); color: #F4EFE6; border-color: var(--secondary); }

.gal-grid {
  margin-top: 36px;
  columns: 3;
  column-gap: 18px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: opacity .35s ease, transform .35s ease;
}
.gal-item img { width: 100%; height: auto; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(33,28,23,.82), transparent);
  color: #F4EFE6;
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gal-item:hover .gal-item__cap { opacity: 1; transform: translateY(0); }
.gal-item.hide { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20,17,14,.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox__cap {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: #EAE3D6;
  font-size: .9rem;
}
.lb-btn {
  position: absolute;
  background: rgba(244,239,230,.12);
  border: 1px solid rgba(244,239,230,.25);
  color: #F4EFE6;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(244,239,230,.24); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--secondary); color: #EDE6D9; }
.process .eyebrow { color: #D8A87E; }
.process .eyebrow::before, .process .eyebrow::after { border-color: var(--accent); }
.process h2 { color: #F6F1E8; }
.process .lede { color: rgba(237,230,217,.78); }
.steps {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px; right: 0;
  width: calc(100% - 64px);
  left: 64px;
  border-top: 1.5px dashed rgba(216,168,126,.45);
}
.step__n {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: #F6E9DC;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary);
  position: relative; z-index: 1;
}
.step h3 { color: #F6F1E8; font-size: 1.4rem; margin-top: 22px; }
.step p { margin-top: 10px; font-size: .94rem; color: rgba(237,230,217,.72); }

/* ============================================================
   REVIEWS band
   ============================================================ */
.reviews__inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.reviews__score { text-align: left; }
.big-score {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
}
.reviews__score .stars { margin-top: 14px; }
.reviews__score .stars svg { width: 24px; height: 24px; }
.reviews__score p { margin-top: 14px; color: var(--muted); }
.review-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.review-note p { font-family: var(--serif); font-size: 1.45rem; font-style: italic; line-height: 1.4; }
.review-note .src { margin-top: 18px; font-family: var(--sans); font-size: .82rem; font-style: normal; color: var(--muted); }
.review-note .src a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CONTACT / VISIT
   ============================================================ */
.contact { background: var(--surface-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card__img { aspect-ratio: 16/9; overflow: hidden; }
.info-card__img img { width: 100%; height: 100%; object-fit: cover; }
.info-rows { padding: 8px 26px 18px; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1.5px dashed var(--border);
  align-items: flex-start;
}
.info-row:last-child { border-bottom: 0; }
.info-row__ic {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.info-row__ic svg { width: 19px; height: 19px; }
.info-row .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.info-row .val { font-size: 1.05rem; font-weight: 600; margin-top: 3px; }
.info-row .val a:hover { color: var(--accent-ink); }
.info-row .sub { font-size: .85rem; color: var(--muted); margin-top: 2px; }

.map-placeholder {
  margin-top: 0;
  aspect-ratio: 3/2;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(138,106,74,.05) 14px, rgba(138,106,74,.05) 28px),
    var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}
.map-placeholder svg { width: 34px; height: 34px; color: var(--primary); }
.map-placeholder .ph-lbl { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .78rem; letter-spacing: .02em; }
.map-placeholder .ph-sub { font-size: .82rem; }

/* form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.form-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.form-head h3 { font-size: 1.7rem; }
.form-steps { display: flex; gap: 6px; align-items: center; font-size: .78rem; color: var(--muted); font-weight: 600; }
.form-progress { height: 4px; background: var(--surface-2); border-radius: 100px; margin-top: 22px; overflow: hidden; }
.form-progress span { display: block; height: 100%; background: var(--accent); border-radius: 100px; transition: width .4s cubic-bezier(.4,0,.2,1); width: 33%; }

.fstep { display: none; margin-top: 26px; }
.fstep.active { display: block; animation: fade-up .4s ease; }
.fstep__q { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 4px; }
.fstep__hint { font-size: .88rem; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199,126,79,.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error textarea, .field.error select { border-color: #b4452f; }
.field .err-msg { display: none; color: #b4452f; font-size: .8rem; margin-top: 6px; }
.field.error .err-msg { display: block; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: .9rem;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--primary); }
.chip.sel { background: var(--secondary); color: #F4EFE6; border-color: var(--secondary); }

.form-nav { display: flex; gap: 12px; margin-top: 28px; }
.form-nav .btn { flex: 1; }

.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; animation: fade-up .4s ease; }
.form-success__ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  color: #F4EFE6;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.form-success__ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.9rem; }
.form-success p { margin-top: 12px; color: var(--muted); }
.form-success .summary {
  margin-top: 22px;
  text-align: left;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: .92rem;
}
.form-success .summary div { padding: 5px 0; }
.form-success .summary b { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--photo-dark); color: #C8BFB2; padding-block: clamp(54px, 7vw, 84px) 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand__name { color: #F4EFE6; }
.footer .brand__name small { color: #998E80; }
.footer__about { margin-top: 20px; font-size: .95rem; max-width: 38ch; color: #A89E90; }
.footer__social { margin-top: 22px; display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244,239,230,.18);
  display: flex; align-items: center; justify-content: center;
  color: #C8BFB2;
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 { font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; color: #998E80; font-weight: 700; }
.footer__col ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { font-size: .95rem; color: #C8BFB2; }
.footer__col a:hover { color: #F4EFE6; }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,230,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #847A6D;
}
.footer__bottom .disc { max-width: 60ch; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.actionbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  display: none;
  background: rgba(247,241,232,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -8px 30px rgba(42,33,27,.1);
}
.actionbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--radius);
}
.actionbar a svg { width: 21px; height: 21px; }
.actionbar a.primary { background: var(--accent); color: #fff; }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .gal-grid { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col:first-child { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16/12; max-height: 460px; order: -1; }
  .intro__grid { grid-template-columns: 1fr; }
  .reviews__inner { grid-template-columns: 1fr; text-align: center; }
  .reviews__score { text-align: center; }
  .reviews__score .stars { justify-content: center; }
  .contact__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 38px 0; }
  .step:nth-child(2)::after { display: none; }
  .svc-feature, .svc-feature.rev { grid-template-columns: 1fr; }
  .svc-feature__media { min-height: 240px; }
  .actionbar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 0; }
  .step::after { display: none !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col:first-child { grid-column: span 1; }
  .hero__trust { gap: 16px; }
  .trust-sep { display: none; }
  .form-nav { flex-direction: column-reverse; }
}
