/* ================================================================
   Madi Mack Monograms - bespoke stylesheet
   Direction: "Seersucker Sunday" - a blue-and-white Carolina
   garden party. Illustration, pattern & type carry the page
   (zero product photos yet).
   ================================================================ */

:root {
  --cream:  #FDFAF3;   /* Sweet Tea Cream - page ground */
  --haint:  #E8F1F5;   /* Haint Blue - porch-ceiling surface */
  --navy:   #22344A;   /* Sunday Navy - ink */
  --blue:   #38699E;   /* Seersucker Blue - primary accent */
  --azalea: #A64D6D;   /* Azalea - secondary accent */
  --blush:  #F6CDD5;   /* Dogwood Blush - decorative only */
  --lemon:  #F7C95F;   /* Lemonade - CTA fill (navy text) */
  --muted:  #4A5C72;   /* muted body text on light (7.0:1 on cream) */
  --muted-haint: #445B7C;

  --ink-on-navy: #F4F8FB;

  --maxw: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 12px rgba(34, 52, 74, 0.08);
  --shadow-md: 0 14px 40px -18px rgba(34, 52, 74, 0.35);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-script:  "Sacramento", "Segoe Script", cursive;
  --f-body:    "Karla", "Segoe UI", system-ui, sans-serif;

  --scallop-w: 46px;
  --nav-h: 74px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- eyebrows / script ---------- */
.script-eyebrow {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  line-height: 1;
  color: var(--azalea);
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.script-eyebrow.alt { color: var(--azalea); }
.script-eyebrow.on-dark { color: var(--lemon); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-body); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  border: 2px solid var(--navy); cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #2c4763; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.btn-sun { background: var(--lemon); color: var(--navy); }
.btn-sun:hover { background: #f6c047; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--navy); border-color: transparent;
  padding-inline: 0.4rem;
}
.btn-ghost { position: relative; }
.btn-ghost::after {
  content: ""; position: absolute; left: 0.4rem; right: 0.4rem; bottom: 0.55rem; height: 2px;
  background-image: linear-gradient(var(--azalea), var(--azalea));
  background-size: 0% 2px; background-repeat: no-repeat;
  transition: background-size 0.28s ease;
}
.btn-ghost:hover::after { background-size: 100% 2px; }

/* ================================================================
   Scalloped section dividers
   Each section's ::after paints scallops of the NEXT section's
   colour, biting downward across the boundary.
   ================================================================ */
.scallop-edge {
  position: relative;
  height: 22px;
  margin-top: -1px;
}
.scallop-edge::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 22px;
  background-repeat: repeat-x;
  background-size: var(--scallop-w) 22px;
}
.scallop-edge[data-into="shop"]::before,
.scallop-edge[data-into="how"]::before {
  /* biting into a haint-blue section */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='22'><path d='M0 0 A23 23 0 0 0 46 0 Z' fill='%23E8F1F5'/></svg>");
}
.scallop-edge[data-into="custom"]::before {
  /* biting into the navy section */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='22'><path d='M0 0 A23 23 0 0 0 46 0 Z' fill='%2322344A'/></svg>");
}
.scallop-edge[data-into="about"]::before,
.scallop-edge[data-into="contact"]::before {
  /* biting into a cream section */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='22'><path d='M0 0 A23 23 0 0 0 46 0 Z' fill='%23FDFAF3'/></svg>");
}

/* ================================================================
   Header / nav
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed color-mix(in srgb, var(--blue) 55%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: var(--nav-h);
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--navy); }
.brand-crest { width: 46px; height: 46px; }
.brand-name { font-family: var(--f-display); font-weight: 600; font-size: 1.24rem; letter-spacing: -0.01em; }
.brand-name em { font-style: italic; color: var(--blue); }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.7rem; }
.nav-menu a {
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--navy); position: relative; padding: 0.4rem 0;
}
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--azalea); transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a.is-active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--lemon); color: var(--navy) !important; border: 2px solid var(--navy);
  padding: 0.5rem 1.1rem !important; border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer; padding: 10px;
}
.nav-toggle span { height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   Hero
   ================================================================ */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-seersucker {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(
    90deg, transparent 0 20px,
    color-mix(in srgb, var(--blue) 14%, transparent) 20px 22px);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 70% 10%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2.5rem;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-crest { width: clamp(96px, 12vw, 150px); height: auto; margin: 0 0 1.1rem; }
.hero-copy .script-eyebrow { margin-bottom: 0.1rem; }
#hero-title {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  color: var(--navy); margin-bottom: 1.1rem;
}
#hero-title .accent { color: var(--blue); font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted);
  max-width: 34ch; margin-bottom: 1.7rem;
}
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.3rem; margin-bottom: 1.8rem; }
.hero-tag {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin: 0;
}

/* embroidery hoop */
.hero-art { display: grid; place-items: center; }
.hoop {
  position: relative; width: min(88%, 420px); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 61%, var(--blush) 61% 63%, transparent 63%),
    repeating-linear-gradient(90deg, transparent 0 11px, color-mix(in srgb, var(--blue) 22%, transparent) 11px 13px),
    var(--haint);
  border: 10px solid var(--blue);
  box-shadow: inset 0 0 0 4px var(--cream), inset 0 0 0 6px color-mix(in srgb, var(--navy) 25%, transparent), var(--shadow-md);
  display: grid; place-items: center;
  animation: sway 7s ease-in-out infinite;
  transform-origin: 50% -20%;
}
.hoop::before { /* tightening screw at 12 o'clock */
  content: ""; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 18px; border-radius: 5px;
  background: var(--blue); box-shadow: inset 0 0 0 2px var(--cream);
}
.hoop-crest { width: 44%; height: auto; filter: drop-shadow(0 6px 10px rgba(34,52,74,0.12)); }
.hoop-fabric { position: absolute; inset: 0; border-radius: 50%; }

@keyframes sway {
  0%, 100% { transform: rotate(-1.6deg); }
  50%      { transform: rotate(1.6deg); }
}

/* ================================================================
   Shop / services
   ================================================================ */
.shop { background: var(--haint); padding: clamp(3rem, 6vw, 5rem) 0 0.5rem; position: relative; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); color: var(--navy); }
.section-lede { color: var(--muted-haint); font-size: 1.08rem; margin-top: 0.7rem; }

.service-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.15rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 1.6rem 1.25rem 1.5rem; text-align: center;
  border: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
  box-shadow: 0 6px 18px -12px rgba(34,52,74,0.4);
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}
.card:nth-child(odd)  { transform: rotate(-0.7deg); }
.card:nth-child(even) { transform: rotate(0.7deg); }
.card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.card-icon {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 0.85rem;
  border-radius: 50%; background: var(--haint); color: var(--navy);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--blue) 30%, transparent);
}
.card h3 { font-size: 1.16rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.card p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.55; }
.card-tie { /* little thread grommet up top */
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--haint); border: 2px solid var(--blue);
}
.card:nth-child(3n+1) .card-tie { border-color: var(--blue); }
.card:nth-child(3n+2) .card-tie { border-color: var(--azalea); }
.card:nth-child(3n+3) .card-tie { border-color: var(--lemon); }
.card.is-linked { cursor: pointer; }

/* ================================================================
   Custom HTV callout (dark)
   ================================================================ */
.custom { position: relative; background: var(--navy); color: var(--ink-on-navy); overflow: hidden; }
.custom-seersucker {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(
    90deg, transparent 0 22px,
    color-mix(in srgb, #fff 8%, transparent) 22px 24px);
}
.custom-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.custom-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.9rem; }
.custom-copy p { color: var(--ink-on-navy); max-width: 46ch; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.3rem 0 1.7rem; }
.chips li {
  background: var(--haint); color: var(--navy);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em;
  padding: 0.4rem 0.9rem; border-radius: 999px;
}
.clothesline { display: grid; place-items: center; }
.clothesline svg { width: min(100%, 460px); }

/* ================================================================
   About
   ================================================================ */
.about { background: var(--cream); position: relative; }
.about-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.about-art { position: relative; display: grid; place-items: center; position: sticky; top: calc(var(--nav-h) + 20px); }
.hoop-portrait {
  animation: none; width: min(92%, 380px);
  background: var(--haint);
}
.about-bloom {
  position: absolute; width: 46px; height: 46px; opacity: 0.85;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-26 -26 52 52'><g fill='%23F6CDD5' stroke='%2322344A' stroke-width='1.4' stroke-linejoin='round'><path d='M0 -3 C-8 -6 -10 -17 -4 -21 L-1 -16 L1 -16 L4 -21 C10 -17 8 -6 0 -3 Z'/><path d='M0 -3 C-8 -6 -10 -17 -4 -21 L-1 -16 L1 -16 L4 -21 C10 -17 8 -6 0 -3 Z' transform='rotate(90)'/><path d='M0 -3 C-8 -6 -10 -17 -4 -21 L-1 -16 L1 -16 L4 -21 C10 -17 8 -6 0 -3 Z' transform='rotate(180)'/><path d='M0 -3 C-8 -6 -10 -17 -4 -21 L-1 -16 L1 -16 L4 -21 C10 -17 8 -6 0 -3 Z' transform='rotate(270)'/></g><circle r='3.4' fill='%23A64D6D'/></svg>");
}
.about-bloom-a { top: -10px; right: 8%; transform: rotate(-12deg); }
.about-bloom-b { bottom: 6%; left: 2%; width: 34px; height: 34px; transform: rotate(20deg); }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--navy); margin-bottom: 1rem; }
.about-copy p { color: var(--muted); }
.pull-quote {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--navy);
  border-left: 3px dashed var(--blue); padding-left: 1.1rem; margin: 1.6rem 0;
}
.about-sign { color: var(--navy); font-weight: 500; }
.heart { color: var(--azalea); }

/* ================================================================
   How it works
   ================================================================ */
.how { background: var(--haint); padding: clamp(3rem, 6vw, 5rem) 0 0.5rem; position: relative; }
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  position: relative;
}
.steps::before { /* running-stitch connector */
  content: ""; position: absolute; top: 46px; left: 12%; right: 12%; height: 2px;
  background-image: linear-gradient(90deg, var(--blue) 55%, transparent 0);
  background-size: 14px 2px; background-repeat: repeat-x; z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step-badge {
  position: relative; display: grid; place-items: center;
  width: 92px; height: 92px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--cream); color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: inset 0 0 0 5px var(--cream), inset 0 0 0 6px color-mix(in srgb, var(--blue) 35%, transparent);
}
.step-num {
  position: absolute; top: -8px; right: 12px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; color: var(--azalea);
  background: var(--haint); width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; border: 2px solid var(--azalea);
}
.step h3 { font-size: 1.16rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.step p { font-size: 0.94rem; color: var(--muted-haint); margin: 0; }
.how-note {
  text-align: center; margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 50ch;
  font-family: var(--f-display); font-style: italic; font-size: 1.1rem; color: var(--navy);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ================================================================
   Contact
   ================================================================ */
.contact { background: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem); }
.inquiry {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem;
  max-width: 720px; margin: 0 auto;
  background: #fff; border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 2px dashed color-mix(in srgb, var(--blue) 45%, transparent);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.field .opt { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--navy);
  padding: 0.7rem 0.85rem; border-radius: 10px;
  border: 1.5px solid color-mix(in srgb, var(--navy) 28%, transparent);
  background: var(--cream); transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 25%, transparent);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: var(--azalea); border-width: 2.5px; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.2rem; }
.form-hint { margin: 0; font-size: 0.85rem; color: var(--muted); flex: 1 1 16rem; }
.form-hint.is-ok,
.form-hint.is-err {
  font-weight: 700; padding: 0.5rem 0.85rem; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.form-hint.is-ok  { color: #1F5136; background: #E6F3EA; box-shadow: inset 0 0 0 1.5px #9CC9AF; }
.form-hint.is-err { color: #7C2B44; background: #FBE9EE; box-shadow: inset 0 0 0 1.5px #E0A7B7; }
.form-hint.is-ok::before  { content: "\2713"; font-size: 1rem; }
.form-hint.is-err::before { content: "\21BB"; font-size: 1rem; }
#form-submit[disabled] { opacity: 0.65; cursor: progress; }
.contact-alt { text-align: center; margin: 1.4rem auto 0; color: var(--muted); }
.contact-alt a { font-weight: 700; border-bottom: 2px dashed var(--blue); }

/* social links */
.contact-follow { text-align: center; margin: 1.7rem 0 0.85rem; color: var(--muted); }
.social-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.social-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff; color: var(--navy);
  border: 1.5px solid color-mix(in srgb, var(--navy) 18%, transparent);
  border-radius: 999px; padding: 0.62rem 1.15rem;
  font-weight: 700; font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-chip svg { color: var(--blue); }
.social-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.social-chip-shop { background: var(--lemon); border-color: var(--navy); }
.social-chip-shop svg { color: var(--navy); }
.social-chip-shop:hover { background: #f6c047; border-color: var(--navy); }

/* ================================================================
   Footer
   ================================================================ */
.site-footer { background: var(--navy); color: var(--ink-on-navy); position: relative; }
.site-footer::before {
  content: ""; display: block; height: 22px; background-repeat: repeat-x;
  background-size: var(--scallop-w) 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='22'><path d='M0 22 A23 23 0 0 1 46 22 Z' fill='%23FDFAF3'/></svg>");
}
.footer-inner { text-align: center; padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.2rem; }
.footer-wordmark { width: min(300px, 78%); height: auto; margin: 0 auto 1rem; }
.footer-tag { font-family: var(--f-script); color: var(--lemon); font-size: clamp(1.6rem, 3vw, 2rem); line-height: 1; margin: 0 0 1.1rem; }
.footer-nav { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.5rem; margin: 0 0 1.2rem; }
.footer-nav a { color: var(--ink-on-navy); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--lemon); }
.footer-social { list-style: none; display: flex; justify-content: center; gap: 0.8rem; margin: 0 0 1.3rem; }
.footer-social a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  color: var(--ink-on-navy);
  border: 1.5px solid color-mix(in srgb, var(--haint) 45%, transparent);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--lemon); color: var(--navy); border-color: var(--lemon); transform: translateY(-2px); }
.footer-meta { color: var(--haint); font-size: 0.9rem; letter-spacing: 0.04em; margin: 0 0 0.3rem; }
.footer-legal { color: color-mix(in srgb, var(--haint) 75%, transparent); font-size: 0.82rem; margin: 0; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-art { order: -1; }
  .hoop { width: min(70%, 340px); }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 46ch; }
  .custom-inner { grid-template-columns: 1fr; }
  .clothesline { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-art { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
  .steps::before { display: none; }
}

/* Nav collapses to a hamburger before the inline row gets cramped */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: center; gap: 1.3rem;
    background: var(--cream); padding: 2rem 1.5rem 2.5rem;
    border-bottom: 2px dashed color-mix(in srgb, var(--blue) 55%, transparent);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s; z-index: 40;
  }
  .nav-menu a { font-size: 1.05rem; }
  .nav-menu.is-open { transform: translateY(0); visibility: visible; transition: transform 0.3s ease; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .card h3 { font-size: 1.05rem; }
  .inquiry { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 340px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Motion / accessibility
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hoop { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .hero-cta, .nav-toggle, .inquiry { display: none; }
}
