/* ────────────────────────────────────────────────────────────────────
   Mullingar Web Studio — landing page styles
   Art direction: warm, calm, trustworthy. A soft cream paper background
   with a deep forest-green accent. Cabinet Grotesk for headings,
   General Sans for body.
   ──────────────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --bg:        #f5efe2;
  --bg-alt:    #efe7d4;
  --surface:   #fbf7ec;
  --ink:       #1b2a25;
  --ink-2:     #3d4a44;
  --ink-3:     #6b756f;
  --line:      #d9cfb7;
  --line-2:    #e6dcc4;
  --accent:    #0f3b34;
  --accent-2:  #14564b;
  --accent-ink:#f3ead8;
  --warm:      #b8541d;

  /* Type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.0625rem, 0.95rem + 0.4vw, 1.125rem);
  --fs-lg:   clamp(1.25rem, 1.05rem + 0.7vw, 1.4rem);
  --fs-xl:   clamp(1.6rem, 1.2rem + 1.6vw, 2.15rem);
  --fs-2xl:  clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  --fs-hero: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --radius:   14px;
  --radius-sm: 8px;
  --maxw: 1160px;

  --shadow-sm: 0 1px 2px rgba(27, 42, 37, 0.04), 0 2px 6px rgba(27, 42, 37, 0.04);
  --shadow:    0 6px 24px -8px rgba(27, 42, 37, 0.18), 0 2px 6px rgba(27, 42, 37, 0.05);
  --shadow-lg: 0 12px 40px -8px rgba(27, 42, 37, 0.22), 0 3px 10px rgba(27, 42, 37, 0.06);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ─── Base ────────────────────────────────────────────────────────── */
body {
  font-family: "General Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Cabinet Grotesk", "General Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p { color: var(--ink-2); }

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm); z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ─── Scroll-reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease-out),
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-2); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:active:not(:disabled) { transform: scale(0.97); transition-duration: 0.06s; }

/* ─── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 16px -4px rgba(27, 42, 37, 0.08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--accent); text-decoration: none;
  transition: opacity 0.15s ease;
}
.brand:hover { opacity: 0.8; }
.brand__mark { color: var(--accent); flex-shrink: 0; }
.brand__name {
  display: flex; flex-direction: column; line-height: 1;
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 700;
  color: var(--ink);
}
.brand__line1 { font-size: 0.95rem; letter-spacing: -0.01em; }
.brand__line2 { font-size: 0.78rem; color: var(--ink-3); font-weight: 500; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a {
  text-decoration: none; font-size: var(--fs-sm); color: var(--ink-2);
  font-weight: 500; transition: color 0.15s ease;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.22s var(--ease-out);
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--accent); color: var(--accent-ink) !important;
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600;
  transition: background-color 0.2s ease, transform 0.18s var(--ease-out), box-shadow 0.2s ease;
}
.nav__cta:hover { background: var(--accent-2); box-shadow: var(--shadow-sm); }
.nav__cta:active { transform: scale(0.97); }
.nav__cta::after { display: none !important; }

@media (max-width: 720px) {
  .nav { gap: 0.75rem; }
  .nav a:not(.nav__cta) { display: none; }
}

/* ─── Anchor scroll offset for sticky header ─────────────────────── */
section[id] { scroll-margin-top: 88px; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(15, 59, 52, 0.06), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(184, 84, 29, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.25fr 1fr; gap: 4rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 600;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--warm); display: inline-block; }
.eyebrow--light { color: rgba(243, 234, 216, 0.7); }

.hero__title {
  font-size: var(--fs-hero);
  margin-top: 1rem; margin-bottom: 1.25rem;
  max-width: 16ch;
  line-height: 1.05;
}
.hero__title em {
  font-style: italic;
  font-family: "Cabinet Grotesk", serif;
  color: var(--accent);
  font-weight: 500;
}
.hero__lede {
  font-size: var(--fs-md);
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }

.hero__points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  font-size: var(--fs-sm); color: var(--ink-3);
}
.hero__points li { position: relative; padding-left: 1.1rem; }
.hero__points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}

/* Hero side card */
.hero__card {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card::before {
  content: ""; position: absolute; top: -1px; left: 1.25rem; right: 1.25rem; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 60%, var(--accent));
  border-radius: 0 0 3px 3px;
}
.card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem;
}
.card__label {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 700;
  font-size: 1.05rem;
}
.card__price { color: var(--ink-3); font-size: var(--fs-sm); font-weight: 500; }
.card__list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: grid; gap: 0.55rem;
  font-size: var(--fs-sm); color: var(--ink-2);
}
.card__list li {
  padding-left: 1.4rem;
  position: relative;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.card__link {
  font-size: var(--fs-sm); font-weight: 600; color: var(--accent);
  text-decoration: none; transition: opacity 0.15s ease;
}
.card__link:hover { text-decoration: underline; }

.hero__trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-xs); color: var(--ink-3);
  padding-left: 0.25rem;
}
.hero__trust svg { color: var(--accent); flex-shrink: 0; }

/* ─── Strip ───────────────────────────────────────────────────────── */
.strip {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.9rem 0;
  font-size: var(--fs-sm);
  border-block: 1px solid rgba(243, 234, 216, 0.1);
}
.strip__row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  justify-content: center; align-items: center;
  text-align: center;
}
.strip__row span[aria-hidden] { opacity: 0.45; }

/* ─── Sections ────────────────────────────────────────────────────── */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--contact {
  background: var(--accent);
  color: var(--accent-ink);
}

.section__head {
  max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section__head--left { text-align: left; margin-inline: 0; }
.section__title {
  font-size: var(--fs-2xl);
  margin-top: 0.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section__lede {
  font-size: var(--fs-md); color: var(--ink-2); line-height: 1.65;
}

.grid { display: grid; gap: 1.25rem; }
.services { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.tile__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
  color: var(--accent);
  display: grid; place-items: center;
  transition: background-color 0.2s ease;
}
.tile:hover .tile__icon {
  background: color-mix(in oklab, var(--accent) 13%, var(--surface));
}
.tile__icon svg { width: 22px; height: 22px; }
.tile h3 { font-size: 1.1rem; }
.tile p { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.6; }
.tile ul {
  list-style: none; padding: 0; margin: auto 0 0;
  font-size: 0.85rem; color: var(--ink-3);
  display: grid; gap: 0.35rem;
  border-top: 1px dashed var(--line); padding-top: 0.85rem;
}
.tile ul li { padding-left: 1rem; position: relative; }
.tile ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ─── Process ─────────────────────────────────────────────────────── */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  position: relative;
}
@media (min-width: 900px) {
  .steps::after {
    content: "";
    position: absolute;
    top: 2.55rem;
    left: calc(12.5% + 0.7rem);
    right: calc(12.5% + 0.7rem);
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      var(--line) 8%,
      var(--line) 92%,
      transparent
    );
    pointer-events: none;
  }
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.steps li:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.steps__num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent);
  opacity: 0.3;
  display: block; margin-bottom: 0.6rem;
  font-feature-settings: "tnum";
  line-height: 1;
}
.steps li h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.steps li p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }

/* ─── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.2s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset, var(--shadow);
}
.plan--featured:hover {
  box-shadow: 0 0 0 1px var(--accent) inset, var(--shadow-lg);
}
.plan__tag {
  position: absolute; top: -0.7rem; left: 1.5rem;
  background: var(--accent); color: var(--accent-ink);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.plan__head h3 { font-size: 1.3rem; }
.plan__price {
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--ink-3); font-size: var(--fs-sm);
  margin-top: 0.25rem;
}
.plan__price strong { color: var(--ink); font-size: 1.4rem; font-weight: 700; }
.plan__pitch { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55; }
.plan__list {
  list-style: none; padding: 0; margin: 0.25rem 0 auto;
  display: grid; gap: 0.5rem;
  font-size: var(--fs-sm); color: var(--ink-2);
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.plan__list li { padding-left: 1.25rem; position: relative; }
.plan__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent);
  font-weight: 700;
}
.plan .btn { margin-top: 0.5rem; }

.pricing__note {
  margin-top: 1.5rem;
  font-size: var(--fs-sm); color: var(--ink-3);
  text-align: center; max-width: 60ch; margin-inline: auto;
  line-height: 1.65;
}

/* ─── About ───────────────────────────────────────────────────────── */
.about {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .about { grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
}
.about__copy .section__title { margin-top: 0.6rem; }
.about__copy p {
  font-size: var(--fs-md);
  margin-top: 1rem; max-width: 56ch;
  line-height: 1.7;
}
.about__why {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: box-shadow 0.2s ease;
}
.about__why:hover { box-shadow: var(--shadow-sm); }
.about__why h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.about__why ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.65rem; font-size: var(--fs-sm); color: var(--ink-2);
}
.about__why li { padding-left: 1.2rem; position: relative; }
.about__why li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.about__why strong { color: var(--ink); font-weight: 600; }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.faq__list { display: grid; gap: 0.5rem; max-width: 760px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0.25rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color 0.15s ease;
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.4rem; font-weight: 500; color: var(--accent);
  transition: transform 0.25s var(--ease-out), content 0.1s;
  line-height: 1; flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq details p {
  padding: 0 0 1rem;
  font-size: var(--fs-sm); color: var(--ink-2);
  max-width: 65ch; line-height: 1.65;
  animation: faqReveal 0.3s var(--ease-out);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ─── Contact ─────────────────────────────────────────────────────── */
.section--contact .section__title,
.section--contact .contact__title { color: var(--accent-ink); }
.section--contact p { color: rgba(243, 234, 216, 0.85); }

.contact {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 860px) {
  .contact { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.contact__title {
  font-size: var(--fs-2xl);
  margin-top: 0.6rem; margin-bottom: 1rem;
}
.contact__lede { font-size: var(--fs-md); max-width: 50ch; line-height: 1.65; }
.contact__email {
  font-family: "Cabinet Grotesk", sans-serif;
  margin-top: 1.5rem;
}
.contact__email a {
  font-size: clamp(1.2rem, 1rem + 1.2vw, 1.7rem);
  color: var(--accent-ink); font-weight: 700;
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.contact__email a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }
.contact__meta {
  font-size: var(--fs-xs); margin-top: 1rem;
  color: rgba(243, 234, 216, 0.6) !important;
}

.contact__form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: grid; gap: 1rem;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease;
}
.contact__form:focus-within { box-shadow: var(--shadow-lg); }
.contact__form label {
  display: grid; gap: 0.35rem;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.contact__form input,
.contact__form textarea {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font-size: var(--fs-base);
  color: var(--ink);
  font-family: inherit;
  width: 100%;
  text-transform: none; letter-spacing: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.contact__form input:hover:not(:focus),
.contact__form textarea:hover:not(:focus) {
  border-color: var(--ink-3);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 59, 52, 0.15);
  background-color: var(--surface);
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__formnote {
  font-size: var(--fs-xs); color: var(--ink-3) !important;
  text-align: center;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
}
.brand--footer { color: var(--accent); }
.brand--footer span {
  font-family: "Cabinet Grotesk", sans-serif; font-weight: 700;
  color: var(--ink); font-size: 0.95rem;
}
.footer__copy { font-size: var(--fs-xs); color: var(--ink-3); }
.footer__copy a {
  color: var(--ink-2); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.15s ease;
}
.footer__copy a:hover { color: var(--ink); }

/* ─── Stats strip ─────────────────────────────────────────────────── */
.stats-strip {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 1.5rem 0;
}
.stats-strip__row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.5rem 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.25rem 2.5rem; text-align: center;
}
.stat__num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  font-weight: 800; line-height: 1;
  color: var(--accent-ink);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(243, 234, 216, 0.65);
  margin-top: 0.3rem;
}
.stat__divider {
  width: 1px; height: 2.5rem;
  background: rgba(243, 234, 216, 0.2);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat__divider { display: none; }
  .stat { padding: 0.5rem 1.5rem; }
}

/* ─── Team cards ──────────────────────────────────────────────────── */
.team {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.team__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  display: flex; align-items: flex-start; gap: 0.85rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.team__card:hover { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.team__avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  overflow: hidden;
}
.team__avatar svg {
  width: 28px; height: 28px;
}
.team__info { flex: 1; }
.team__name {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.1rem;
  color: var(--ink);
}
.team__role {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.team__bio {
  font-size: var(--fs-sm); color: var(--ink-2);
  line-height: 1.55; margin: 0;
}

/* ─── Mobile nav toggle ───────────────────────────────────────────── */
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; margin-left: auto;
  color: var(--ink);
  transition: color 0.15s ease;
}
.nav__toggle:hover { color: var(--accent); }
.nav__toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
}

/* ─── Mobile nav panel ────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.25rem 1.5rem;
}
.nav__mobile.is-open { display: block; }
.nav__mobile-inner {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.nav__mobile-inner a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-size: var(--fs-md); font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__mobile-inner a:hover { color: var(--ink); background: var(--bg-alt); }
.nav__mobile-inner .btn--primary {
  margin-top: 0.75rem; width: 100%; justify-content: center;
}

/* ─── Sample work grid ────────────────────────────────────────────── */
.work__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.work__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.2s ease;
}
.work__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.work__info {
  padding: 1.1rem 1.25rem 1.3rem;
}
.work__tag {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 600; color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--accent) 18%, var(--line));
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}
.work__info h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.work__info p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.55; }

/* ─── Browser chrome mockup ───────────────────────────────────────── */
.mockup {
  background: #e2e2e2;
  border-bottom: 1px solid var(--line);
}
.mockup__bar {
  background: #e2e2e2;
  padding: 0.45rem 0.6rem;
  display: flex; align-items: center; gap: 0.3rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mockup__dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #ffbd2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__url {
  background: #fff; border-radius: 3px;
  padding: 0.14rem 0.5rem;
  font-size: 0.58rem; color: #888;
  margin-left: 0.25rem;
  font-family: "General Sans", sans-serif;
  max-width: 180px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.mockup__screen {
  height: 160px; overflow: hidden;
  display: flex; flex-direction: column;
}

/* ─── Skeleton mockup content ─────────────────────────────────────── */
.ms-header {
  height: 28px; background: #f0f0f0; flex-shrink: 0;
  border-bottom: 1px solid #e0e0e0;
}
.ms-header--light { background: #fff; }
.ms-header--dark  { background: #1a1a2e; border-color: #2a2a3e; }

.ms-hero {
  flex: 1; background: #e8e8e8;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0.6rem 0.75rem; gap: 0.3rem; position: relative;
}
.ms-hero--salon { background: linear-gradient(135deg, #f8e8d0, #f0d8c0); }
.ms-hero--cafe  { background: #2a1a0a; }

.ms-h1 {
  height: 9px; background: #aaa; border-radius: 3px;
  width: 70%;
}
.ms-h1--dark  { background: #333; }
.ms-h1--white { background: rgba(255,255,255,0.85); }
.ms-p {
  height: 6px; background: #bbb; border-radius: 3px;
  width: 50%;
}
.ms-p--dark  { background: #666; }
.ms-p--white { background: rgba(255,255,255,0.55); }
.ms-btn {
  height: 14px; width: 52px; border-radius: 999px;
  background: var(--accent); margin-top: 0.15rem;
}
.ms-btn--alt { background: #c8a87a; }
.ms-h2 {
  height: 7px; background: #555; border-radius: 3px; width: 60%; margin-bottom: 0.25rem;
}
.ms-p-line {
  height: 5px; background: #bbb; border-radius: 3px; width: 90%;
}
.ms-p-line--short { width: 60%; }
.ms-p-sm {
  height: 5px; background: #ccc; border-radius: 3px; width: 75%;
}

.ms-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
}
.ms-hero-text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0.3rem;
}

.ms-row {
  display: flex; gap: 6px;
  padding: 0.5rem 0.6rem;
  background: #f5f5f5; flex-shrink: 0;
}
.ms-row--2col { background: #fff; }
.ms-row--3col { background: #f9f6f0; }

.ms-service-card {
  flex: 1; background: #fff;
  border: 1px solid #e8e8e8; border-radius: 4px;
  padding: 0.35rem 0.4rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.ms-icon {
  width: 14px; height: 14px; background: var(--accent);
  border-radius: 3px; opacity: 0.25;
}
.ms-h3 {
  height: 5px; background: #aaa; border-radius: 2px; width: 80%;
}

.ms-img-block {
  flex: 1; background: #d0c8b8; border-radius: 4px; min-height: 50px;
}
.ms-text-block {
  flex: 1.3; display: flex; flex-direction: column; gap: 0.3rem;
  justify-content: center;
}

.ms-menu-card {
  flex: 1; background: #fff;
  border: 1px solid #e8e8e8; border-radius: 4px;
  height: 36px;
}

/* ─── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
