/* =====================================================================
   LuxeMorph Studios — Global Stylesheet
   Brand palette + typography from the Website Playbook (Section 3)
   Edit the variables in :root to tweak the whole site at once.
   ===================================================================== */

:root {
  /* ---- Brand palette ---- */
  --charcoal:      #211F1C;   /* headers, nav, footer */
  --charcoal-soft: #2C2925;
  --ivory:         #F6F1E7;   /* page background */
  --card:          #FBF8F1;   /* cards / raised surfaces */
  --brass:         #B08A4F;   /* accent: buttons, links, dividers */
  --brass-hover:   #C9A063;
  --text:          #4A443E;   /* body copy */
  --text-light:    #6E675F;
  --heading:       #211F1C;
  --line:          #E4DBCB;   /* subtle borders on ivory */
  --white:         #FFFFFF;

  /* ---- Type ---- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Layout ---- */
  --maxw: 1200px;
  --gap: 1.5rem;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(33, 31, 28, 0.08);
  --shadow-lg: 0 20px 50px rgba(33, 31, 28, 0.14);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container-pad: 1.5rem;
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
/* Let long tokens (emails, URLs) wrap instead of forcing horizontal overflow */
body { overflow-wrap: break-word; }
a { color: var(--brass); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass-hover); }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1rem; }
.section p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--charcoal { background: var(--charcoal); color: #D9D2C7; }
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 { color: var(--ivory); }
.section--card { background: var(--card); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.15rem; color: var(--text-light); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Section heading kicker */
.kicker {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .8rem;
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 3rem; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .85rem 1.7rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: var(--brass-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--brass); border-color: var(--brass); }
.btn--ghost:hover { background: var(--brass); color: #fff; }
.btn--light { background: var(--ivory); color: var(--charcoal); }
.btn--light:hover { background: #fff; color: var(--charcoal); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__logo { height: 40px; width: auto; }
.brand__text { font-family: var(--font-head); font-size: 1.35rem; color: var(--ivory); font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.brand { flex: 0 0 auto; }
.brand__mark { display: inline-flex; flex: 0 0 auto; color: var(--ivory); }
.brand__mark svg { width: 30px; height: 30px; display: block; }
/* On phones the header is tight (mark + wordmark + CTA + hamburger), so drop
   "Studios" — shows a compact "LuxeMorph" and gives the CTA breathing room. */
@media (max-width: 500px) { .brand__studios { display: none; } }
.brand__text b { color: var(--brass); font-weight: 700; }
.brand:hover .brand__text { color: var(--ivory); }

.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav__links a {
  color: #D9D2C7; font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  position: relative; padding: .2rem 0;
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a.is-active { color: var(--brass); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--brass); transition: width .25s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__menu-cta { display: none; } /* CTA shown only inside the mobile menu */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 8px; border-radius: var(--radius);
}
.nav__toggle span { display: block; height: 2px; background: var(--ivory); border-radius: 2px; transition: all .3s var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex; align-items: center;
  color: var(--ivory);
  /* Attractive dark default so the hero looks intentional before a photo is added.
     Add a photo with: style="background-image:url('assets/img/hero/home-hero.jpg')" */
  background:
    linear-gradient(180deg, rgba(20,18,16,.55), rgba(20,18,16,.78)),
    radial-gradient(120% 90% at 75% 15%, rgba(176,138,79,.28), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 14px, rgba(255,255,255,0) 14px 28px),
    var(--charcoal);
  background-size: cover; background-position: center;
  overflow: hidden;
}
/* When a real background image is set inline, this keeps the dark overlay on top of it */
.hero[style*="background-image"] {
  background-blend-mode: normal;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding: 3rem 0; }
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero__sub { font-size: 1.25rem; color: #E7E0D4; max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Placeholder image treatment (used until real photos are dropped in) */
.ph {
  background:
    linear-gradient(135deg, rgba(176,138,79,.16), rgba(33,31,28,.06)),
    repeating-linear-gradient(45deg, rgba(33,31,28,.03) 0 12px, rgba(33,31,28,.06) 12px 24px);
  background-color: #E9E1D2;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
  text-align: center; padding: 1rem;
}
.hero.ph { color: var(--ivory); }

/* ---------------------------------------------------------------- Trust strip */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: var(--charcoal-soft); color: var(--ivory);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  margin-top: -3.5rem; position: relative; z-index: 5; box-shadow: var(--shadow-lg);
}
.trust__item { text-align: center; padding: .4rem .6rem; }
.trust__num { font-family: var(--font-head); font-size: 1.9rem; color: var(--brass); line-height: 1; margin-bottom: .3rem; }
.trust__label { font-size: .82rem; color: #C8C0B4; }

/* ---------------------------------------------------------------- Grids */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Safety: stop any grid/flex child from forcing horizontal overflow on narrow
   screens (min-width:auto is the default and causes long content to push wide). */
.grid > *, .cta-banner__grid > *, .contact-grid > *, .footer-grid > *,
.svc-detail > *, .form > *, .trust__item { min-width: 0; }
.form-note, .contact-row a, .contact-row p, .footer-links a { overflow-wrap: anywhere; }

/* Service cards */
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  height: 100%;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brass); }
.svc-card__icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(176,138,79,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--brass);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.svc-card:hover .svc-card__icon { transform: scale(1.1) rotate(-4deg); background: rgba(176,138,79,.2); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.svc-card p { font-size: .96rem; color: var(--text-light); margin: 0; }

/* Feature list (why-us) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__check {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--brass); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin-top: .15rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.feature p { font-size: .95rem; color: var(--text-light); margin: 0; }

/* ---------------------------------------------------------------- Steps (process) */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem;
}
.step__num {
  font-family: var(--font-head); font-size: 1.6rem; color: var(--brass);
  width: 58px; height: 58px; border: 1.5px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: .35rem; }
.step p { margin: 0; color: var(--text-light); font-size: .97rem; }

/* Compact horizontal steps (home preview) */
.steps-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step-mini { text-align: center; }
.step-mini__num {
  font-family: var(--font-head); font-size: 1.2rem; color: var(--brass);
  width: 48px; height: 48px; margin: 0 auto .9rem; border: 1.5px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-mini h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.step-mini p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* ---------------------------------------------------------------- Portfolio / gallery */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  padding: .55rem 1.2rem; border-radius: 40px; border: 1.5px solid var(--line);
  background: transparent; color: var(--text); cursor: pointer; transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--brass); color: var(--brass); }
.filter-btn.is-active { background: var(--brass); border-color: var(--brass); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.work {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; background: #E9E1D2; box-shadow: var(--shadow);
}
.work img, .work .ph { width: 100%; height: 100%; object-fit: cover; }
.work__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; background: linear-gradient(180deg, transparent 40%, rgba(20,18,16,.85));
  color: #fff; opacity: 0; transform: translateY(8px); transition: all .3s var(--ease);
}
.work:hover .work__overlay { opacity: 1; transform: translateY(0); }
.work:hover img { transform: scale(1.05); }
.work img { transition: transform .5s var(--ease); }
.work__loc { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .1rem; color:#fff; }
.work__desc { font-size: .85rem; color: #E7E0D4; }
.work.is-hidden { display: none; }

/* ---------------------------------------------------------------- Testimonials */
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; height: 100%;
}
.quote__mark { font-family: var(--font-head); font-size: 3rem; color: var(--brass); line-height: .6; height: 1.4rem; }
.quote p { font-style: italic; color: var(--text); font-size: 1.02rem; }
.quote__author { font-weight: 600; color: var(--heading); font-style: normal; font-size: .92rem; margin-top: .8rem; }
.quote__loc { color: var(--text-light); font-weight: 400; }
.quote__stars { color: var(--brass); letter-spacing: 3px; font-size: 1rem; line-height: 1; margin-bottom: .85rem; }
.rating-badge { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-weight: 600; color: var(--heading); text-decoration: none; font-size: .98rem; }
.rating-badge:hover { color: var(--brass); }
.rating-badge .stars { color: var(--brass); letter-spacing: 2px; }
.rating-badge .count { color: var(--text-light); font-weight: 400; }

/* ---------------------------------------------------------------- Service detail rows */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3.5rem; }
.svc-detail:last-child { margin-bottom: 0; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.svc-detail__media img, .svc-detail__media .ph { width: 100%; height: 100%; object-fit: cover; }
.svc-detail h3 { font-size: 1.7rem; }

/* ---------------------------------------------------------------- Forms */
.form { display: grid; gap: 1.1rem; }
.form--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--heading); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(176,138,79,.15);
}
.form-note { font-size: .85rem; color: var(--text-light); }
.form-status { font-size: .95rem; padding: .8rem 1rem; border-radius: var(--radius); display: none; }
.form-status.is-ok { display: block; background: rgba(176,138,79,.12); color: var(--heading); border: 1px solid var(--brass); }
.form-status.is-err { display: block; background: #fbe9e7; color: #a13b2c; border: 1px solid #e0a99f; }

/* Lead CTA banner */
.cta-banner { background: var(--charcoal); color: var(--ivory); border-radius: var(--radius); overflow: hidden; }
.cta-banner__grid { display: grid; grid-template-columns: 1fr 1.1fr; }
.cta-banner__text { padding: clamp(2rem,4vw,3.2rem); display: flex; flex-direction: column; justify-content: center; }
.cta-banner__text h2 { color: var(--ivory); }
.cta-banner__form { background: var(--charcoal-soft); padding: clamp(2rem,4vw,3rem); }
/* This lead form sits on the dark banner, so its labels/notes must be light
   (the default dark label colour is for the light-background Contact form). */
.cta-banner__form .field label { color: var(--ivory); }
.cta-banner__form .form-note { color: #C8C0B4; }

/* ---------------------------------------------------------------- Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.3rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(176,138,79,.12); color: var(--brass); display: flex; align-items: center; justify-content: center; }
.contact-row h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-row p, .contact-row a { margin: 0; font-size: .96rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; }
.callout { background: rgba(176,138,79,.1); border-left: 3px solid var(--brass); padding: 1rem 1.3rem; border-radius: var(--radius); font-size: .95rem; }

/* ---------------------------------------------------------------- Blog */
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/10; }
.post-card__body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: .5rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card p { font-size: .9rem; color: var(--text-light); margin: 0 0 1rem; }
.post-card__soon { margin-top: auto; font-size: .82rem; color: var(--text-light); font-weight: 600; }
.post-card a.post-card__link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.post-card a.post-card__link:hover h3 { color: var(--brass); }
.post-card__more { margin-top: auto; font-size: .84rem; color: var(--brass); font-weight: 600; }
.post-card__media { overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }

/* ---------------------------------------------------------------- Blog article */
.post-meta { color: var(--text-light); font-size: .9rem; margin: 0 0 1.6rem; }
.post-meta b { color: var(--heading); font-weight: 600; }
.post-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2.2rem; }
.post-body { max-width: none; }
.post-body > p:first-of-type { font-size: 1.12rem; color: var(--text); }
.post-body h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.post-body h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.post-body ul, .post-body ol { padding-left: 1.2rem; margin: 0 0 1.1rem; }
.post-body li { margin-bottom: .5rem; }
.post-body table, .prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .94rem; }
.post-body th, .post-body td, .prose th, .prose td { text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.post-body thead th, .prose thead th { background: var(--card); font-family: var(--font-body); font-weight: 600; color: var(--heading); white-space: nowrap; }
.post-takeaways { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 2rem 0; }
.post-takeaways h3 { margin: 0 0 .6rem; font-size: 1.1rem; }
.post-takeaways ul { margin: 0; }
.post-cta { background: var(--charcoal); color: var(--ivory); border-radius: var(--radius); padding: 2rem; margin-top: 2.6rem; text-align: center; }
.post-cta h3 { color: var(--ivory); margin-bottom: .4rem; }
.post-cta p { color: #C8C0B4; max-width: 48ch; margin: 0 auto 1.2rem; }
.post-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.post-related h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.post-related ul { list-style: none; display: grid; gap: .6rem; }
@media (max-width: 720px) { .post-body h2 { font-size: 1.35rem; } .post-hero-img { margin-bottom: 1.6rem; } }

/* ---------------------------------------------------------------- Page hero (interior pages) */
.page-hero { background: var(--charcoal); color: var(--ivory); padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #C8C0B4; max-width: 60ch; margin: 0 auto; }
.breadcrumb { font-size: .82rem; color: #9c948a; margin-bottom: 1rem; }
.breadcrumb a { color: #C8C0B4; }

/* Prose (legal + about) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: .4rem; }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--charcoal); color: #B7AFA4; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: var(--ivory); font-family: var(--font-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #B7AFA4; font-size: .93rem; }
.site-footer a:hover { color: var(--brass); }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-about p { font-size: .93rem; color: #9c948a; }
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; color: var(--ivory); margin-bottom: .8rem; }
.footer-brand b { color: var(--brass); }
.social { display: flex; gap: .7rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: #B7AFA4; }
.social a:hover { border-color: var(--brass); color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #8b837a; }
.footer-bottom a { font-size: .84rem; }

/* ---------------------------------------------------------------- Floating WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------------------------------------------------------------- Sticky mobile CTA bar */
/* Injected by main.js. Shown only on phones; keeps Call / WhatsApp / Free Quote
   one tap away (the one conversion pattern worth borrowing from HomeLane/Livspace). */
.mobile-cta-bar { display: none; }
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    gap: .5rem; padding: .5rem calc(.5rem + env(safe-area-inset-right)) calc(.5rem + env(safe-area-inset-bottom)) calc(.5rem + env(safe-area-inset-left));
    background: rgba(33,31,28,.98); backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -6px 20px rgba(0,0,0,.28);
  }
  .mobile-cta-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; font-size: .72rem; font-weight: 600; color: #D9D2C7;
    padding: .5rem .3rem; border-radius: var(--radius); text-align: center; line-height: 1.1;
    border: 1px solid rgba(255,255,255,.12);
  }
  .mobile-cta-bar a .ico { font-size: 1.15rem; line-height: 1; }
  .mobile-cta-bar a.is-primary { flex: 1.5; background: var(--brass); color: #fff; border-color: var(--brass); }
  .mobile-cta-bar a:hover { color: #fff; }
  .wa-float { display: none; }          /* replaced by the bar on phones */
  body { padding-bottom: 72px; }         /* room so the bar never covers content */
}

/* ---------------------------------------------------------------- Utilities / animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- Load animations */
@keyframes lm-fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes lm-fade    { from { opacity: 0; } to { opacity: 1; } }

/* Hero content eases in on page load, gently staggered */
.hero__inner > * { opacity: 0; animation: lm-fade-up .85s var(--ease) both; }
.hero__inner > *:nth-child(1) { animation-delay: .05s; }
.hero__inner > *:nth-child(2) { animation-delay: .18s; }
.hero__inner > *:nth-child(3) { animation-delay: .31s; }
.hero__inner > *:nth-child(4) { animation-delay: .44s; }

/* Interior page headers ease in too */
.page-hero .breadcrumb, .page-hero h1, .page-hero p { opacity: 0; animation: lm-fade-up .7s var(--ease) both; }
.page-hero .breadcrumb { animation-delay: .05s; }
.page-hero h1 { animation-delay: .16s; }
.page-hero p  { animation-delay: .27s; }

/* Sticky header settles in */
.site-header { animation: lm-fade .5s ease both; }

/* Staggered entrance for cards inside a grid/slider */
.grid .reveal:nth-child(2), .gallery .reveal:nth-child(2), .steps-mini .reveal:nth-child(2) { transition-delay: .07s; }
.grid .reveal:nth-child(3), .gallery .reveal:nth-child(3), .steps-mini .reveal:nth-child(3) { transition-delay: .14s; }
.grid .reveal:nth-child(4), .gallery .reveal:nth-child(4), .steps-mini .reveal:nth-child(4) { transition-delay: .21s; }
.grid .reveal:nth-child(5), .gallery .reveal:nth-child(5) { transition-delay: .28s; }
.grid .reveal:nth-child(6), .gallery .reveal:nth-child(6) { transition-delay: .35s; }

/* ---------------------------------------------------------------- SVG icons */
.svc-card__icon svg, .contact-row__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.trust__ico { display: block; width: 26px; height: 26px; margin: 0 auto .55rem; color: var(--brass); }
.trust__ico svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; }
.feature__check svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.4; }
.mobile-cta-bar a svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------------------------------------------------------------- FAQ accordion */
.faq { display: grid; gap: .8rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s var(--ease); }
.faq__item[open] { border-color: var(--brass); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-family: var(--font-head); font-size: 1.08rem; color: var(--heading);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px;
  border-right: 2px solid var(--brass); border-bottom: 2px solid var(--brass);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq__item[open] summary { color: var(--brass); }
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__a { padding: 0 1.3rem 1.2rem; }
.faq__a p { margin: 0; color: var(--text-light); font-size: .97rem; }

/* Press feedback on tappable cards (mobile) — subtle scale, no layout shift */
.svc-card, .work, .post-card, .quote, .filter-btn, .btn { -webkit-tap-highlight-color: transparent; }
@media (hover: none) {
  .svc-card:active, .post-card:active, .work:active { transform: scale(.985); }
  .btn:active, .filter-btn:active { transform: scale(.97); }
}

/* ---------------------------------------------------------------- Carousel dots */
.slider-dots { display: none; }
@media (max-width: 720px) {
  .slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
  .slider-dots button {
    width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
    background: var(--line); cursor: pointer; transition: all .3s var(--ease);
  }
  .section--charcoal .slider-dots button, .section--card .slider-dots button { background: rgba(176,138,79,.3); }
  .slider-dots button.is-active { background: var(--brass); width: 22px; border-radius: 4px; }
}
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps-mini { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Collapse the primary nav into a hamburger before the links get cramped.
   Fixes the header "Free Consultation" button overlapping the Contact link
   at tablet widths, and gives the horizontal desktop nav comfortable spacing. */
@media (max-width: 1040px) {
  .nav__toggle { display: block; }
  /* Keep a compact CTA in the header at all times (like Livspace/HomeLane) */
  .nav__cta .btn--primary { display: inline-flex; padding: .55rem 1rem; font-size: .88rem; }
  .nav__menu-cta { display: none !important; }  /* header CTA covers this now */
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--charcoal); padding: .5rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%); transition: transform .35s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__links a::after { display: none; }
  /* CTA cloned into the menu by main.js so it isn't lost on tablet/mobile */
  .nav__links li.nav__menu-cta { display: block; padding-top: 1.1rem; border: 0; }
  .nav__links li.nav__menu-cta a.btn {
    display: flex; width: 100%; justify-content: center;
    padding: .95rem 1.2rem; border-bottom: 0; color: #fff;
  }
}

@media (max-width: 720px) {
  .trust { grid-template-columns: repeat(2, 1fr); gap: 1.3rem .5rem; margin-top: 1.5rem; }
  .grid--3, .grid--4, .grid--2, .gallery, .steps-mini, .form--2 { grid-template-columns: 1fr; }
  body { font-size: 16px; }

  /* --- Compact, professional footer on phones --- */
  .site-footer { padding: 2rem 0 1.1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.3rem 1.4rem; margin-bottom: 1.4rem; }
  .footer-about { grid-column: 1 / -1; }
  .footer-brand { font-size: 1.25rem; margin-bottom: .55rem; }
  .footer-about p { font-size: .88rem; margin-bottom: .9rem; max-width: 52ch; }
  .social a { width: 34px; height: 34px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }   /* "Get in touch" spans full width */
  .site-footer h4 { margin-bottom: .65rem; }
  .site-footer a { font-size: .9rem; }
  .footer-links { gap: .5rem; }
  .footer-bottom { padding-top: 1.1rem; }

  /* Cleaner, minimal hero on phones — smaller type, vertically centred over the image */
  .hero { min-height: 66vh; text-align: left; align-items: center; }
  .hero__inner { padding: 2.2rem 0; }
  .hero .kicker { font-size: .68rem; letter-spacing: .16em; margin-bottom: .5rem; }
  .hero h1 { font-size: 2rem; line-height: 1.12; margin-bottom: .55rem; }
  .hero__sub { font-size: .95rem; line-height: 1.5; max-width: 32ch; margin-bottom: 1.3rem; color: #E7E0D4; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: .6rem; width: 100%; }
  .hero__cta .btn { width: 100%; padding: .92rem 1.3rem; font-size: .98rem; }

  /* --- Horizontal sliders on mobile --- */
  /* Add class "slider-mobile" to any grid to turn it into a swipeable, snapping
     horizontal scroller on phones. The next card peeks in to signal "swipe". */
  .slider-mobile {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 82%;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed to screen edges, then inset the first card to the container gutter */
    margin-inline: calc(-1 * var(--container-pad));
    padding: .25rem var(--container-pad) 1rem;
    overscroll-behavior-x: contain;
  }
  .slider-mobile::-webkit-scrollbar { display: none; }
  .slider-mobile > * { scroll-snap-align: center; height: auto; }
  .slider-mobile--narrow { grid-auto-columns: 62%; }  /* smaller cards, e.g. process steps */
  .slider-mobile .svc-card,
  .slider-mobile .quote,
  .slider-mobile .post-card { height: 100%; }

  /* subtle "swipe" hint shown above a slider */
  .swipe-hint { display: block; font-size: .78rem; letter-spacing: .04em; color: var(--text-light); margin: -1rem 0 1rem; text-align: center; }
  .swipe-hint::after { content: " ›››"; color: var(--brass); }
  .section--charcoal .swipe-hint { color: #C8C0B4; }
}

/* --- Global mobile scale: smaller type + tighter rhythm for a clean, spacious phone view --- */
@media (max-width: 720px) {
  :root { --header-h: 62px; --container-pad: 1.25rem; }
  .nav { height: 62px; }
  .brand__text { font-size: 1.05rem; }
  .brand__mark svg { width: 26px; height: 26px; }

  body { font-size: 15px; }
  input, select, textarea { font-size: 16px; }   /* keep 16px to avoid iOS input zoom */

  h1 { font-size: 1.68rem; line-height: 1.2; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.1rem; }
  .lead { font-size: .95rem; }
  .kicker { font-size: .67rem; letter-spacing: .16em; margin-bottom: .5rem; }
  p { margin-bottom: .9rem; }

  .section { padding: 2.5rem 0; }
  .section--tight { padding: 1.9rem 0; }
  .section-head { margin-bottom: 1.7rem; }

  .btn { padding: .64rem 1.05rem; font-size: .85rem; }
  .btn--lg { padding: .72rem 1.2rem; font-size: .9rem; }

  .svc-card { padding: 1.3rem 1.2rem; }
  .svc-card h3 { font-size: 1.1rem; }
  .svc-card p { font-size: .88rem; }
  .svc-card__icon { width: 44px; height: 44px; margin-bottom: .85rem; }
  .svc-card__icon svg { width: 22px; height: 22px; }
  .svc-detail h3 { font-size: 1.28rem; }
  .step { padding: 1.1rem 1.2rem; gap: 1rem; }
  .step__num { width: 42px; height: 42px; font-size: 1.1rem; }
  .steps { gap: 1rem; }
  .quote { padding: 1.35rem; }
  .quote p { font-size: .93rem; }
  .feature h3 { font-size: 1.02rem; }
  .feature p { font-size: .89rem; }
  .post-card__body { padding: 1rem 1.15rem; }
  .post-card h3 { font-size: 1.06rem; }
  .faq__item summary { font-size: .95rem; padding: .88rem 1.05rem; }
  .faq__a p { font-size: .89rem; }
  .contact-row h3 { font-size: 1rem; }
  .contact-info { gap: 1.1rem; }

  .page-hero { padding: 2.3rem 0; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: .92rem; }
  .breadcrumb { font-size: .78rem; margin-bottom: .7rem; }

  .trust { padding: 1.4rem 1rem; }
  .trust__num { font-size: 1.5rem; }
  .trust__label { font-size: .74rem; }
  .trust__ico { width: 22px; height: 22px; margin-bottom: .45rem; }
  .section--charcoal .trust__num { font-size: 1.7rem !important; }  /* about "by the numbers" */

  .filter-btn { font-size: .84rem; padding: .48rem .95rem; }
  .cta-banner__text { padding: 1.6rem 1.4rem; }
  .cta-banner__form { padding: 1.6rem 1.4rem; }

  /* Hero — calmer and smaller so it breathes */
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 1.58rem; }
  .hero__sub { font-size: .88rem; margin-bottom: 1rem; }
  .hero__cta .btn { padding: .66rem 1.1rem; font-size: .9rem; }
}

@media (max-width: 400px) {
  :root { --container-pad: 1.1rem; }
  .brand__text { font-size: 1.02rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero__sub { font-size: .85rem; }
  .nav__cta .btn--primary { padding: .5rem .8rem; font-size: .82rem; }
  .nav__cta { gap: .5rem; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .filters { gap: .45rem; }
  .filter-btn { padding: .5rem .9rem; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-delay: 0ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__inner > *, .page-hero .breadcrumb, .page-hero h1, .page-hero p,
  .site-header { opacity: 1 !important; animation: none !important; }
}

/* ================================================================
   Services dropdown (nav) + 3D Design page
   ================================================================ */

/* ---- Nav dropdown ---- */
.nav__has-sub { position: relative; }
.nav__sub-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0; color: #D9D2C7; }
.nav__sub-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; transition: transform .25s var(--ease); }
.nav__sub {
  position: absolute; top: calc(100% + 16px); left: -.9rem; min-width: 246px;
  list-style: none; display: grid; gap: .12rem; padding: .5rem;
  background: var(--charcoal); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
/* invisible bridge so the menu survives the gap under "Services" */
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: block; padding: .62rem .8rem; border-radius: 8px; font-size: .9rem; }
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: rgba(255,255,255,.07); color: var(--ivory); }

@media (max-width: 1040px) {
  .nav__has-sub { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__has-sub > a { flex: 1 1 auto; }
  .nav__sub-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex: 0 0 auto;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    width: 100%; flex: 1 0 100%; background: transparent; border: 0;
    box-shadow: none; border-radius: 0; padding: 0; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav__sub-toggle[aria-expanded="true"] + .nav__sub { max-height: 340px; }
  .nav__sub a { padding: .8rem 0 .8rem 1.1rem; border-radius: 0; font-size: .92rem; color: #B7AFA4; }
  .nav__sub a:hover { background: transparent; }
}

/* ---- 3D page: hero ---- */
.v-hero {
  background:
    radial-gradient(1200px 380px at 15% -10%, rgba(176,138,79,.22), transparent 60%),
    var(--charcoal);
  color: var(--ivory); padding: clamp(3rem, 7vw, 5.2rem) 0 clamp(2.4rem, 5vw, 3.4rem);
}
.v-hero h1 { color: #fff; max-width: 18ch; margin-bottom: .7rem; }
.v-hero__sub { color: #CFC7BA; max-width: 60ch; font-size: 1.05rem; line-height: 1.65; }
.v-hero__sub strong { color: var(--brass-hover); font-weight: 600; }
.v-hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.v-hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
}
.v-hero__meta div { display: flex; flex-direction: column; gap: .15rem; }
.v-hero__meta b { font-family: var(--font-head); font-size: 1.15rem; color: var(--ivory); font-weight: 600; }
.v-hero__meta span { font-size: .78rem; color: #9c948a; letter-spacing: .04em; }

/* ---- 3D page: model -> render pipeline ---- */
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; }
.pipeline__item { margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.pipeline__item > .ph, .pipeline__item > img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.pipeline__item figcaption { font-size: .88rem; color: var(--text-light); }
.pipeline__item figcaption b { display: block; color: var(--heading); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .15rem; }
.pipeline__arrow { color: var(--brass); }
.pipeline__arrow svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---- 3D page: numbered process ---- */
.v-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.v-step {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .45rem;
}
.v-step__n { font-family: var(--font-head); font-size: 1.5rem; color: var(--brass); line-height: 1; }
.v-step h3 { font-size: 1.05rem; margin: 0; }
.v-step p { font-size: .92rem; margin: 0; }

/* ---- 3D page: designer ---- */
.v-role { color: var(--brass); font-weight: 600; font-size: .95rem; margin-bottom: .8rem; }
.v-skills { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; padding: 0; }
.v-skills li {
  font-size: .82rem; padding: .38rem .8rem; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line); color: var(--text);
}
.v-list { list-style: none; padding: 0; display: grid; gap: .6rem; margin-top: .8rem; }
.v-list li { position: relative; padding-left: 1.5rem; font-size: .95rem; }
.v-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--brass);
}

@media (max-width: 960px) {
  .v-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .v-hero__meta { grid-template-columns: repeat(2, 1fr); gap: 1.1rem .8rem; margin-top: 1.8rem; }
  .v-hero__sub { font-size: .97rem; }
  .v-hero__cta { flex-direction: column; align-items: stretch; }
  .v-hero__cta .btn { width: 100%; }
  .v-steps { grid-template-columns: 1fr; gap: .9rem; }
  .v-step { padding: 1.2rem; }
  .pipeline { grid-template-columns: 1fr; gap: 1rem; }
  .pipeline__arrow { justify-self: center; transform: rotate(90deg); }
}
