/* ========== base.css ========== */
/* ============================================================
   COMMONPAW · Storybook Redesign · Base
============================================================ */

:root {
  /* Classic (default): user-provided palette */
  --butter: #f4dc95;         /* main page bg */
  --butter-deep: #ebd07b;
  --cream: #fbf1cc;          /* cards / light */
  --cream-deep: #f6e5a8;
  --orange: #f08d24;         /* primary */
  --orange-deep: #c26b12;
  --gold: #f4b73e;           /* accent / mustard */
  --gold-deep: #d69720;
  --sky: #bfdae8;            /* secondary */
  --sky-deep: #7faec4;
  --sage: #9bb089;           /* used sparingly */
  --sage-deep: #6b8259;
  --ink: #653a24;            /* text */
  --ink-soft: #8a5a3e;
  --line: #d9b770;

  --script: 'Caveat', cursive;
  --hand: 'Kalam', cursive;
  --display: 'Fraunces', 'Gloock', serif;
  --sans: 'Nunito', -apple-system, system-ui, sans-serif;
  --chunk: 'Lilita One', 'Sniglet', system-ui, sans-serif;

  --maxw: 1260px;
  --gutter: clamp(20px, 4vw, 52px);
}

/* ---- palette variants ---- */
[data-palette="meadow"] {
  --butter: #eae3c4;      --butter-deep: #d9cf9e;
  --cream: #f6eecf;       --cream-deep: #ecdfa8;
  --orange: #d67433;      --orange-deep: #a5541c;
  --gold: #d9a24a;        --gold-deep: #b27f28;
  --sky: #a7c2b9;         --sky-deep: #6b8c82;
  --ink: #3f2a1a;         --ink-soft: #6d4a2f; --line: #c8a862;
}
[data-palette="dusk"] {
  --butter: #e9d19e;      --butter-deep: #d8bd80;
  --cream: #f1dfa8;       --cream-deep: #e2cb85;
  --orange: #c75c25;      --orange-deep: #97400f;
  --gold: #d99a2f;        --gold-deep: #a87015;
  --sky: #86a0b0;         --sky-deep: #5a7887;
  --ink: #3a2512;         --ink-soft: #6a4528; --line: #bf9851;
}
[data-palette="sun"] {
  --butter: #fce4a0;      --butter-deep: #f3cf72;
  --cream: #fff2cc;       --cream-deep: #fbe3a4;
  --orange: #ff9a2b;      --orange-deep: #d86b00;
  --gold: #ffc64a;        --gold-deep: #d99a20;
  --sky: #c8e4f0;         --sky-deep: #86b6cd;
  --ink: #5a2e1a;         --ink-soft: #82502f; --line: #e2b96a;
}

/* ---- script variants ---- */
[data-script="caveat"]   { --script: 'Caveat', cursive; }
[data-script="homemade"] { --script: 'Homemade Apple', cursive; }
[data-script="shadows"]  { --script: 'Shadows Into Light', cursive; }
[data-script="kalam"]    { --script: 'Kalam', cursive; }
[data-script="lilita"]   { --script: 'Lilita One', system-ui, sans-serif; --script-mode: chunk; }
[data-script="bagel"]    { --script: 'Bagel Fat One', system-ui, sans-serif; --script-mode: chunk; }
[data-script="sniglet"]  { --script: 'Sniglet', system-ui, sans-serif; --script-mode: chunk; }

/* ---- base ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--butter);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- reusable atoms ---- */
.eyebrow {
  font-family: var(--hand);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.eyebrow.caps {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}
.display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.script {
  font-family: var(--script);
  font-weight: 600;
  color: var(--orange-deep);
  line-height: 0.95;
}
/* When the script slot is set to a chunky display face, dial back weight + tighten tracking */
[data-script="lilita"] .script,
[data-script="bagel"] .script,
[data-script="sniglet"] .script {
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.92;
}
[data-script="sniglet"] .script { font-weight: 800; }

/* storybook button: thick outline, drop shadow, slight rotate on hover */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--cream);
  padding: 14px 30px 14px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  position: relative;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 var(--ink);
}
.btn .arrow { display: inline-block; transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn.ghost {
  background: var(--cream);
  color: var(--ink);
}
.btn.sky { background: var(--sky); color: var(--ink); }
.btn.gold { background: var(--gold); color: var(--ink); }

/* wavy / scalloped dividers */
.wave {
  width: 100%;
  height: 28px;
  display: block;
  color: var(--orange);
}

/* rough, wobbly underline */
.underline-wave {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'><path d='M2 4 Q 12 -2 22 4 T 42 4 T 62 4 T 82 4 T 102 4 T 118 4' fill='none' stroke='%23f08d24' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 100px 6px;
  padding-bottom: 8px;
}

/* dotted/dashed borders */
.dashed-frame {
  position: relative;
}
.dashed-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed currentColor;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.5;
}

/* tiny decorative dot */
.dot { display:inline-block; width:6px; height:6px; border-radius:50%; background: currentColor; vertical-align: middle; }

/* ---- shapes toggle ---- */
[data-shapes="off"] .shape-hide { display: none !important; }

/* ---- responsive helpers ---- */
@media (max-width: 860px) {
  .hide-mobile { display: none !important; }
}


/* ========== patterns.css ========== */
/* ============================================================
   COMMONPAW · Patterns (stripes / dots / gingham / solid)
============================================================ */

/* painterly noisy stripes (default) */
.pattern-bg {
  position: relative;
  background-color: var(--sky);
}
.pattern-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 48px,
      rgba(255, 244, 200, 0.55) 48px, rgba(255, 244, 200, 0.55) 84px,
      transparent 84px, transparent 132px);
  pointer-events: none;
}
.pattern-bg > * { position: relative; z-index: 1; }

/* soft film-grain noise */
.pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.1 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  opacity: .75;
  pointer-events: none;
  z-index: 0;
}

/* dots */
[data-pattern="dots"] .pattern-bg {
  background-color: var(--sky);
}
[data-pattern="dots"] .pattern-bg::after {
  background-image:
    radial-gradient(circle at 18px 18px, rgba(255, 244, 200, 0.55) 5px, transparent 6px);
  background-size: 36px 36px;
}

/* gingham */
[data-pattern="gingham"] .pattern-bg {
  background-color: var(--cream);
}
[data-pattern="gingham"] .pattern-bg::after {
  background-image:
    linear-gradient(rgba(240, 141, 36, 0.18) 50%, transparent 50%),
    linear-gradient(90deg, rgba(240, 141, 36, 0.18) 50%, transparent 50%);
  background-size: 34px 34px;
}

/* solid */
[data-pattern="solid"] .pattern-bg {
  background-color: var(--sky);
}
[data-pattern="solid"] .pattern-bg::after { display: none; }

/* secondary pattern variant (sage tones, for variety) */
.pattern-bg.alt {
  background-color: var(--gold);
}
.pattern-bg.alt::after {
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 48px,
      rgba(255, 244, 200, 0.45) 48px, rgba(255, 244, 200, 0.45) 84px,
      transparent 84px, transparent 132px);
}
[data-pattern="dots"] .pattern-bg.alt::after {
  background-image:
    radial-gradient(circle at 18px 18px, rgba(255, 255, 255, 0.35) 5px, transparent 6px);
}
[data-pattern="gingham"] .pattern-bg.alt {
  background-color: var(--butter);
}
[data-pattern="gingham"] .pattern-bg.alt::after {
  background-image:
    linear-gradient(rgba(240, 141, 36, 0.28) 50%, transparent 50%),
    linear-gradient(90deg, rgba(240, 141, 36, 0.28) 50%, transparent 50%);
  background-size: 34px 34px;
}


/* ========== sections.css ========== */
/* ============================================================
   COMMONPAW · Section styles
============================================================ */

/* ========== TOPBAR ========== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.topbar .script {
  font-family: var(--script);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

/* ========== NAV ========== */
.nav {
  background: var(--butter);
  padding: 22px var(--gutter) 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 10' preserveAspectRatio='none'><path d='M0 8 Q 7.5 0 15 8 T 30 8 T 45 8 T 60 8' fill='none' stroke='%23f08d24' stroke-width='2'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 10px;
  pointer-events: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 88px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.logo-word {
  font-family: var(--script);
  font-size: 46px;
  color: var(--orange-deep);
  line-height: 0.85;
  font-weight: 600;
}
  line-height: 0.85;
  font-weight: 600;
}
.logo-tag {
  font-family: var(--hand);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 700;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.18s;
  position: relative;
}
.nav-links a:hover {
  background: var(--cream);
  color: var(--orange-deep);
}
.nav-cta {
  background: var(--orange);
  color: var(--cream) !important;
  border: 2px solid var(--ink);
  padding: 8px 18px !important;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

/* ========== HERO ========== */
.hero-wrap {
  padding: 0;
  background: var(--butter);
  position: relative;
  overflow: hidden;
}

/* Centered editorial hero: soft yellow stripes fade in, dog at bottom */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--ink);
  z-index: 1;
  background: var(--butter);
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(720px, 92vh, 980px);
  isolation: isolate;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 80px) 0;
}

/* Soft yellow vertical stripes layered into background, fading at bottom */
.hero-stripes {
  position: absolute;
  inset: 0 0 28% 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(244, 220, 140, 0.55) 0px,
    rgba(244, 220, 140, 0.55) 64px,
    transparent 64px,
    transparent 140px
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}

/* Dead/legacy hero pieces: keep hidden so stale markup doesn't paint */
.hero-image-pane,
.hero-frame-wrap,
.hero-frame-svg,
.hero-frame-accent,
.hero-stamp,
.hero-building { display: none !important; }

/* Dog: anchored to the bottom edge, large, slightly overlaps content */
.hero-dog {
  position: relative;
  display: block;
  z-index: 2;
  width: clamp(420px, 56vw, 760px);
  height: auto;
  margin: clamp(32px, 4vw, 56px) auto -2px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 14px 22px rgba(120, 70, 18, 0.08));
}

/* Centered text content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 6vw, 88px) 0 clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.hero-float { display: none; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 28px;
  opacity: 1;
  display: inline-block;
  text-align: center;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 0;
  height: 0;
  display: none;
}

.hero-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 1.02;
  margin: 0 0 28px;
  color: var(--ink);
  text-shadow: none;
  max-width: 14ch;
  letter-spacing: -0.02em;
  text-align: center;
}
.hero-title .amp {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange-deep);
  font-size: 0.9em;
  padding: 0 0.1em;
  display: inline-block;
  transform: rotate(-8deg) translateY(-0.05em);
}
.hero-title .soft {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1em;
  line-height: 1;
  display: block;
  margin-top: 0.05em;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  margin: 0 0 36px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 46ch;
  line-height: 1.55;
  opacity: 1;
  text-align: left;
}

/* little banner ribbon floating over hero */
.hero-ribbon {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 22px;
  font-family: var(--hand);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
  letter-spacing: 0.02em;
}

/* ========== SERVICES TRIO ========== */
.services {
  padding: clamp(80px, 10vw, 130px) var(--gutter) clamp(70px, 8vw, 110px);
  background: var(--butter);
  text-align: center;
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 30px; left: 8%;
  width: 60px; height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23f08d24' stroke-width='1.8' stroke-linecap='round'><path d='M20 5 L 22 17 L 35 20 L 22 23 L 20 35 L 18 23 L 5 20 L 18 17 Z'/></svg>");
  background-repeat: no-repeat;
}
.services-head .eyebrow { justify-content: center; text-align: center; }
.services-head {
  max-width: 820px;
  margin: 0 auto clamp(50px, 6vw, 80px);
}
.services-head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.services-head h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
  margin: 0 4px;
  white-space: nowrap;
}
.services-head p {
  max-width: 48ch;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 56px);
  max-width: 1140px;
  margin: 0 auto;
}
.services-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1040px;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px 28px;
  position: relative;
}
.services-grid.two .service-card {
  align-items: flex-start;
  gap: 18px;
  padding: 36px 34px 34px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  transform: none !important;
  text-align: left;
}
.services-grid.two .service-card:nth-child(2) {
  background: #fef5d8;
}
.service-card:nth-child(2) { transform: translateY(20px); }

.service-ill {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  transition: transform .25s ease;
}
.services-grid.two .service-ill {
  width: 112px;
  height: 112px;
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--butter);
  align-self: flex-start;
}
.services-grid.two .service-card:nth-child(2) .service-ill {
  background: var(--sky);
}
.service-card:hover .service-ill {
  transform: translate(-2px, -2px) rotate(-1deg);
}
.service-ill svg {
  width: 78%; height: 78%;
}

/* little number badge on illustration */
.service-num {
  position: absolute;
  top: -10px; left: -10px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-8deg);
}
.services-grid.two .service-num {
  width: 34px; height: 34px;
  font-size: 16px;
  top: -8px; left: -8px;
}
.service-card:nth-child(2) .service-num { background: var(--sky); }
.service-card:nth-child(3) .service-num { background: var(--gold); }

.service-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin: 8px 0 0;
  font-weight: 500;
  line-height: 1.2;
}
.services-grid.two .service-title {
  font-size: 34px;
  margin: 4px 0 0;
}
.service-sub {
  font-family: var(--hand);
  font-size: 17px;
  color: var(--orange-deep);
  margin: -8px 0 8px;
  font-weight: 700;
  line-height: 1.3;
}
.service-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 26ch;
  margin: 0;
}
.services-grid.two .service-desc {
  font-size: 15.5px;
  line-height: 1.65;
  max-width: none;
  color: var(--ink);
}
.services-grid.two .service-desc + .service-desc { margin-top: -6px; }

.service-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1.5px dashed var(--ink-soft);
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.service-price .val {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  color: var(--orange-deep);
  font-weight: 500;
  line-height: 1;
}
.service-price .lbl {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.service-price .plus {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: auto;
  font-weight: 700;
}

/* customization block below the two service cards */
.custom-block {
  max-width: 1040px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(8px, 2vw, 24px);
}
.custom-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 24px 4px;
  position: relative;
}
.custom-inner::before,
.custom-inner::after {
  content: '•';
  position: absolute;
  top: 0;
  font-family: var(--display);
  font-size: 24px;
  color: var(--orange);
}
.custom-inner::before { left: 50%; transform: translateX(-50%); }
.custom-inner::after { display: none; }
.custom-inner .eyebrow {
  margin-bottom: 12px;
}
.custom-inner h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 500;
  line-height: 1.1;
}
.custom-inner h3 .script {
  font-family: var(--script);
  color: var(--orange-deep);
  font-size: 1.15em;
  font-style: normal;
}
.custom-inner p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 auto 14px;
}

/* ========== MARQUEE BAND ========== */
.band {
  background: var(--orange);
  color: var(--cream);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  position: relative;
}
.band-track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  animation: scroll 35s linear infinite;
  will-change: transform;
}
.band-track span { flex-shrink: 0; }
.band-track .paw {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--gold);
}
.band-track .star {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.band.sky-band {
  background: var(--sky);
  color: var(--ink);
}
.band.sky-band .star,
.band.sky-band .paw { color: var(--orange-deep); }

/* ========== MY PROCESS ========== */
.process {
  background: var(--butter);
  padding: clamp(70px, 8vw, 110px) var(--gutter) clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.process-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.process-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.process-eyebrow .tick {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 0;
  transform: rotate(0deg);
}
.process-eyebrow .tick:last-child { transform: scaleX(-1); }
.process-head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.process-head h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.process-track {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 8px;
  padding: 0 8px;
}

.pstep {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
}
.pnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--sky);
  color: var(--ink);
  border-radius: 50%;
  border: 1.8px solid var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 6px;
  box-shadow: 1.5px 1.5px 0 var(--ink);
}
.pico {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 14 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pico svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pstep h3 {
  font-family: var(--script);
  font-size: 22px;
  color: var(--orange-deep);
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.15;
  padding-bottom: 2px;
}
.pstep p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 22ch;
  font-weight: 500;
}
.parrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
  margin-top: 60px;
  line-height: 1;
  user-select: none;
}

/* scalloped band variant */
.band.band-scallop {
  border-top: none;
  position: relative;
}
.band.band-scallop::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12' preserveAspectRatio='none'><path d='M0 12 Q 7.5 0 15 12 T 30 12 T 45 12 T 60 12 L 60 0 L 0 0 Z' fill='%23f4dc95'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 12px;
  pointer-events: none;
}
.band-track em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
}

/* tablet: switch to flex-wrap so steps + arrows flow and we can hide the
   inter-row arrow naturally; centers last row */
@media (max-width: 1100px) {
  .process-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px 0;
    max-width: 880px;
  }
  .pstep {
    flex: 0 0 calc((100% - 80px) / 4);
    max-width: 200px;
    padding: 0 6px;
  }
  .parrow {
    flex: 0 0 16px;
    margin-top: 64px;
  }
  .pstep h3 br { display: none; }
}

@media (max-width: 760px) {
  .process-track {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 360px;
  }
  .pstep {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    padding: 4px 0;
  }
  .parrow {
    flex: 0 0 auto;
    transform: rotate(90deg);
    margin: 10px 0;
    font-size: 26px;
  }
  .pico {
    max-width: 130px;
  }
  .pstep p { max-width: 28ch; }
}

/* ========== PHOTO STRIP ========== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.photo-strip-cell {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.photo-strip-cell:last-child { border-right: none; }
.photo-strip-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(101,58,36,0) 60%, rgba(101,58,36,0.3) 100%);
  pointer-events: none;
}
.photo-strip-cell .caption {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--script);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  z-index: 1;
  transform: rotate(-3deg);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ========== SIT & STAY SPLIT ========== */
.sitstay {
  background: var(--butter);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.sitstay-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* left: stacked polaroids / story panel */
.sitstay-panel {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
}
.sitstay-panel .frame {
  position: absolute;
  border: 3px solid var(--ink);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--ink);
}
.sitstay-panel .frame.big {
  inset: 0 10% 10% 0;
  background-image: url('images/sitstay-big.jpeg');
  transform: rotate(-1.5deg);
}
.sitstay-panel .frame.small {
  width: 45%;
  aspect-ratio: 1/1;
  right: 0; bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1000&q=80&auto=format&fit=crop');
  transform: rotate(4deg);
  z-index: 2;
}
/* stamp over image */
.sitstay-panel .stamp {
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  z-index: 3;
  transform: rotate(-10deg);
  color: var(--orange-deep);
}

.sitstay-text .pricerow {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  margin: 32px 0 40px;
  padding: 22px 0;
  border-top: 1.5px dashed var(--line);
  border-bottom: 1.5px dashed var(--line);
}
.sitstay-text .priceitem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sitstay-text .priceitem .lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 800;
}
.sitstay-text .priceitem .val {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.sitstay-text h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--ink);
  margin: 6px 0 18px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.sitstay-text h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.1em;
  display: inline-block;
  line-height: 0.8;
  transform: rotate(-2deg);
}
.sitstay-text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 50ch;
}

/* ========== APPROACH ========== */
.approach {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--cream);
  position: relative;
}
.approach-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(60px, 7vw, 90px);
}
.approach-head .eyebrow { justify-content: center; }
.approach-head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--ink);
  margin: 8px 0 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.approach-head h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.approach-head p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
  max-width: 62ch;
  margin-left: auto; margin-right: auto;
}
.approach-points {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
}
.apoint {
  position: relative;
  padding: 12px 0 0;
}
.apoint-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.apoint h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 500;
  line-height: 1.25;
}
.apoint p {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.approach-foot {
  max-width: 680px;
  margin: clamp(60px, 7vw, 90px) auto 0;
  padding-top: 32px;
  border-top: 1.5px dashed rgba(101,58,36,0.25);
  text-align: center;
  font-family: var(--hand);
  font-size: 17px;
  color: var(--orange-deep);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .approach-points { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== TRAINING & BENEFITS ========== */
.benefits {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.benefits::before, .benefits::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12' preserveAspectRatio='none'><path d='M0 10 Q 7.5 2 15 10 T 30 10 T 45 10 T 60 10' fill='none' stroke='%23f08d24' stroke-width='2'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 12px;
}
.benefits::before { top: 0; }
.benefits::after { bottom: 0; transform: scaleY(-1); }

.benefits-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(50px, 6vw, 80px);
}
.benefits-head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--ink);
  margin: 8px 0 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.benefits-head h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.1em;
  transform: rotate(-2deg);
  display: inline-block;
}
.benefits-head p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}

.benefits-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.benefits-cols::before {
  content: '';
  position: absolute;
  top: 12%; bottom: 12%;
  left: 50%;
  width: 2px;
  background-image: linear-gradient(var(--line) 50%, transparent 50%);
  background-size: 2px 12px;
  transform: translateX(-50%);
}
.bcol h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--orange-deep);
  margin: 0 0 6px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.bcol h3 .numeral {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.bcol .sub {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-weight: 400;
}
.bcol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bcol li {
  padding: 14px 0 14px 40px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.bcol li:last-child { border-bottom: none; }
.bcol li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 26px; height: 26px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f08d24' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12 L 10 18 L 20 6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.bcol.alt li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b8259' stroke-width='2' stroke-linecap='round'><circle cx='12' cy='9' r='2.4' fill='%236b8259'/><circle cx='7' cy='14' r='1.6' fill='%236b8259'/><circle cx='17' cy='14' r='1.6' fill='%236b8259'/><circle cx='6' cy='9' r='1.4' fill='%236b8259'/><circle cx='18' cy='9' r='1.4' fill='%236b8259'/></svg>");
}

/* ========== ABOUT COURTNEY ========== */
.about {
  background: var(--butter);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.about .deco-cloud {
  position: absolute;
  color: var(--sky);
  opacity: 0.5;
  pointer-events: none;
}
.about .deco-cloud.c1 { top: 60px; left: 3%; width: 160px; }
.about .deco-cloud.c2 { bottom: 80px; right: 5%; width: 140px; transform: scaleX(-1); }

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  position: relative;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 440px;
}
.about-photo .image {
  position: absolute;
  inset: 0;
  background-image: url('images/courtney.jpeg');
  background-size: cover;
  background-position: center 28%;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 2;
}
.about-photo .offset {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--orange);
  border-radius: 8px;
  z-index: 1;
}
.about-photo .badge {
  position: absolute;
  bottom: -36px; right: -28px;
  width: 150px; height: 150px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--script);
  font-size: 20px;
  line-height: 1;
  transform: rotate(-12deg);
  text-align: center;
  z-index: 3;
  padding: 10px;
}
.about-photo .badge .name {
  font-size: 38px;
  color: var(--orange-deep);
  margin: 2px 0;
  line-height: 0.9;
}
.about-photo .badge small {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
}
.about-photo .tape {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 120px; height: 30px;
  background: rgba(191, 218, 232, 0.85);
  border-left: 2px dashed rgba(255,255,255,0.5);
  border-right: 2px dashed rgba(255,255,255,0.5);
  z-index: 3;
}

.about-text h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5.2vw, 64px);
  color: var(--ink);
  margin: 8px 0 26px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.about-text h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.2em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-1deg);
  white-space: nowrap;
  margin-left: 4px;
}
.about-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 54ch;
}
.about-sig {
  font-family: var(--script);
  font-size: 56px;
  color: var(--orange);
  display: inline-block;
  line-height: 1;
  transform: rotate(-3deg);
  margin-top: 14px;
  font-weight: 600;
}

/* ========== EXPERIENCES / TESTIMONIAL CAROUSEL ========== */
.experiences {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}
.experiences-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.experiences .eyebrow {
  justify-content: center;
  text-align: center;
}
.experiences h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--ink);
  margin: 8px 0 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.experiences h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.15em;
  transform: rotate(-2deg);
  display: inline-block;
}

.testi {
  position: relative;
  padding: 20px 30px;
}
.testi-photo {
  width: 170px; height: 170px;
  border-radius: 50%;
  background-image: url('images/les-gigi.jpeg');
  background-size: cover;
  background-position: center;
  margin: 0 auto 32px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
}
.testi-photo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.7;
}

/* big quote marks behind text */
.testi-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 58ch;
  margin: 0 auto 30px;
  font-weight: 400;
  position: relative;
  letter-spacing: -0.005em;
}
.testi-quote::before,
.testi-quote::after {
  font-family: var(--script);
  color: var(--orange);
  font-size: 100px;
  line-height: 0.3;
  font-weight: 700;
  position: absolute;
}
.testi-quote::before {
  content: '“';
  top: 42px; left: -56px;
}
.testi-quote::after {
  content: '”';
  bottom: -30px; right: -48px;
}

.testi-name {
  font-family: var(--script);
  font-size: 34px;
  color: var(--orange-deep);
  font-weight: 600;
  line-height: 1;
}
.testi-where {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 400;
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
}
.testi-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.18s;
}
.testi-arrow:hover {
  background: var(--orange);
  color: var(--cream);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.testi-arrow:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.testi-dots {
  display: flex;
  gap: 10px;
  margin: 0 12px;
}
.testi-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
  padding: 0;
  transition: all 0.18s;
}
.testi-dot.is-active {
  background: var(--orange);
  border-color: var(--ink);
  transform: scale(1.15);
}

/* ========== INQUIRY FORM ========== */
.inquiry-outer {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
}
.inquiry-card {
  background: var(--cream);
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  border-radius: 10px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
}
.inquiry-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 2px dashed var(--orange);
  opacity: 0.4;
  border-radius: 4px;
  pointer-events: none;
}
.inquiry-card .eyebrow {
  text-align: center;
  justify-content: center;
  display: flex;
}
.inquiry-card h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(44px, 6vw, 76px);
  color: var(--ink);
  margin: 8px 0 12px;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.inquiry-card h2 .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--orange);
  font-size: 1.15em;
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 0.8;
}
.inquiry-card .sub {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 14px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.inquiry-note {
  display: inline-block;
  font-family: var(--hand);
  font-size: 14px;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.form-group {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1.5px dashed var(--line);
}
.form-group:first-of-type {
  border-top: none;
  padding-top: 0;
}
.form-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.form-group-head .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1;
  min-width: 36px;
}
.form-group-head h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--orange-deep);
  font-weight: 700;
  margin-bottom: 2px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.18s;
  border-radius: 0;
  appearance: none;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--orange); }
.field input::placeholder,
.field textarea::placeholder { color: #b8936a; font-style: italic; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c26b12' stroke-width='1.8' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 16px;
  background: var(--butter);
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  font-weight: 600;
  color: var(--ink);
}
.check:hover {
  border-color: var(--orange);
  background: var(--cream-deep);
}
.check input {
  appearance: none;
  width: 16px; height: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--cream);
}
.check input:checked {
  background: var(--orange);
  border-color: var(--ink);
}
.check input:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.submit-row {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.form-foot {
  text-align: center;
  margin-top: 22px;
  font-family: var(--script);
  font-size: 26px;
  color: var(--orange-deep);
  line-height: 1;
}

/* Netlify honeypot: visually hidden, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline thank-you state */
.form-thanks {
  text-align: center;
  padding: 24px 12px 12px;
  animation: thanksIn 0.5s ease-out both;
}
.form-thanks .eyebrow {
  justify-content: center;
  display: flex;
  margin-bottom: 8px;
}
.form-thanks h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.form-thanks p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft, #5b4a3a);
  max-width: 48ch;
  margin: 0 auto;
}
@keyframes thanksIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 90px var(--gutter) 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12' preserveAspectRatio='none'><path d='M0 2 Q 7.5 10 15 2 T 30 2 T 45 2 T 60 2' fill='%23f4dc95'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 12px;
}
.footer-top {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.footer-word {
  font-family: var(--script);
  font-size: clamp(80px, 13vw, 180px);
  color: var(--gold);
  margin: 0;
  line-height: 0.85;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-mark {
  display: block;
  width: clamp(96px, 11vw, 140px);
  height: auto;
  margin: 18px auto 0;
  opacity: 0.95;
}
.footer-tag {
  font-family: var(--hand);
  color: var(--cream);
  opacity: 0.85;
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1.5px dashed rgba(251, 241, 204, 0.25);
}
.foot-col h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li {
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
}
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  max-width: var(--maxw);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 700;
}

/* ========== TWEAKS PANEL ========== */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 9999;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 18px 20px 16px;
  width: 290px;
  box-shadow: 6px 6px 0 var(--ink);
  display: none;
  font-family: var(--sans);
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h4 {
  font-family: var(--script);
  font-size: 34px;
  color: var(--orange-deep);
  margin: 0 0 2px;
  line-height: 1;
  font-weight: 600;
}
.tweaks-panel .sub {
  font-family: var(--hand);
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 400;
}
.tweaks-group { margin-bottom: 14px; }
.tweaks-group label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}
.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-swatch {
  flex: 1;
  display: flex;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--ink);
  transition: transform 0.15s;
  padding: 0;
  background: transparent;
}
.tweaks-swatch.is-active { transform: scale(1.08); box-shadow: 2px 2px 0 var(--ink); }
.tweaks-swatch > span { flex: 1; }

.tweaks-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks-chip {
  font-family: var(--sans);
  font-size: 11px;
  padding: 6px 11px;
  border: 1.5px solid var(--line);
  background: var(--butter);
  cursor: pointer;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  transition: all 0.18s;
}
.tweaks-chip.is-active {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--ink);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: 0; padding: 32px 20px 0; }
  .hero-stripes { inset: 0 0 28% 0; }
  .hero-content { padding: 24px 8px 32px; max-width: 560px; }
  .hero-eyebrow, .hero-title, .hero-sub { text-align: center; }
  .hero-title { font-size: clamp(48px, 12vw, 80px); max-width: 16ch; }
  .hero-dog { width: clamp(280px, 80vw, 520px); margin-top: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid.two { grid-template-columns: 1fr; gap: 24px; }
  .services-grid .service-card:nth-child(2) { transform: none; }
  .benefits-cols { grid-template-columns: 1fr; }
  .benefits-cols::before { display: none; }
  .sitstay-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip-cell:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .checks { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testi-quote::before, .testi-quote::after { display: none; }
  .hero-wrap .deco { display: none; }
  .about-photo .badge { width: 110px; height: 110px; font-size: 16px; bottom: -20px; right: -10px; }
  .about-photo .badge .name { font-size: 28px; }
  .hero-float.f1 { width: 80px; left: 10px; top: 10px; }
  .hero-float.f2 { width: 90px; right: 10px; bottom: 80px; }
}


/* ============================================================
   TYPOGRAPHY REFRESH: larger, warmer, more whimsical headings
   ============================================================ */
.hero-title { font-size: clamp(72px, 10vw, 156px); line-height: 1; letter-spacing: -0.015em; }
.hero-sub { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }
.hero-eyebrow { font-size: clamp(13px, 1vw, 15px); letter-spacing: 0.32em; }

/* Section h2s across the site */
.services-head h2,
.approach-head h2,
.about-text h2,
.experiences-inner h2,
.process-head h2,
.inquiry-card h2 {
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

/* Process headline a touch bigger to balance the chunk word */
.process-head h2 { font-size: clamp(48px, 6.4vw, 84px); }

/* Service card titles */
.service-title { font-size: clamp(28px, 2.8vw, 36px) !important; line-height: 1.15; }
.service-card p { font-size: 16.5px; line-height: 1.65; }

/* Customizable */
.custom-inner h3 { font-size: clamp(34px, 4vw, 52px) !important; line-height: 1.1; }

/* Approach points */
.approach-point h3 { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.25; }

/* Eyebrows: slightly larger for legibility */
.eyebrow { font-size: 17px; }
.eyebrow.caps { font-size: 12px; letter-spacing: 0.34em; }

/* Body paragraphs in major sections */
.services-head p,
.approach-head p,
.about-text p,
.custom-inner p {
  font-size: 17.5px;
  line-height: 1.75;
}

/* Testimonials: quote slightly bigger */
.testi-quote { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.6; }

/* Footer headings */
footer h4 { font-size: 17px; letter-spacing: 0.2em; }
.foot-col li, .foot-col a { font-size: 15.5px; line-height: 1.85; }

/* Process step text */
.pstep h3 { font-size: 22px !important; line-height: 1.15; }
.pstep p { font-size: 14.5px; line-height: 1.55; }

/* When a chunky display face is active, tighten line-height for the .script accent */
[data-script="lilita"] .hero-title .script,
[data-script="bagel"] .hero-title .script,
[data-script="sniglet"] .hero-title .script {
  display: inline-block;
  line-height: 0.9;
  padding-top: 0.04em;
}

@media (max-width: 760px) {
  .hero-title { font-size: clamp(54px, 13vw, 92px) !important; }
  .services-head h2,
  .approach-head h2,
  .about-text h2,
  .experiences-inner h2,
  .process-head h2,
  .inquiry-card h2 { font-size: clamp(40px, 9vw, 60px) !important; }
}


/* ===== Inquiry form: service-type pills ===== */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.service-pill {
  position: relative;
  cursor: pointer;
  flex: 1 1 220px;
}
.service-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.service-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 3px 3px 0 var(--ink);
  user-select: none;
}
.service-pill:hover span {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.service-pill input:checked + span {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(1px, 1px);
}
.service-pill input:focus-visible + span {
  outline: 3px dashed var(--orange-deep);
  outline-offset: 3px;
}
@media (max-width: 560px) {
  .service-pill { flex-basis: 100%; }
}


/* ============================================================
   MOBILE LAYER · phone-only refinements (≤ 700px)
   ------------------------------------------------------------
   Desktop styles above are unchanged; this block only narrows
   spacing, stacks columns, and exposes the hamburger menu.
============================================================ */

/* Hamburger button: hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2.5px solid var(--ink);
  background: var(--cream);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  /* The drawer that slides down under the nav bar */
  .nav-links {
    display: flex !important;            /* override the older `display: none` rule */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--butter);
    border-bottom: 2.5px solid var(--ink);
    box-shadow: 0 8px 0 -2px var(--ink), 0 16px 24px rgba(101, 58, 36, 0.18);
    z-index: 50;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.32s ease, padding 0.32s ease;
    pointer-events: none;
  }
  .nav-links.is-open {
    max-height: 460px;
    padding-top: 14px;
    padding-bottom: 22px;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
  }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
}

/* ===== Phone breakpoint: ≤ 700px ===== */
@media (max-width: 700px) {

  /* ---- Global ---- */
  :root { --gutter: 20px; }
  body { font-size: 16px; line-height: 1.65; }

  /* prevent iOS auto-zoom on form focus */
  .field input,
  .field select,
  .field textarea { font-size: 16px !important; }

  /* ---- Nav ---- */
  .nav { padding: 14px 18px 12px; gap: 12px; }
  .logo { gap: 10px; min-width: 0; flex: 1 1 auto; }
  .logo-mark { width: 56px; }
  .logo-word { font-size: 32px; }
  .logo-tag { font-size: 11px; }

  /* ---- Hero ---- */
  .hero-wrap { padding: 0 !important; }
  .hero { padding: 24px 18px 0 !important; min-height: 0 !important; }
  .hero-content { padding: 16px 4px 24px !important; }
  .hero-title {
    font-size: clamp(44px, 12vw, 64px) !important;
    line-height: 1.02;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub { font-size: 16px; line-height: 1.55; max-width: 36ch; margin: 14px auto 22px; }
  .hero-eyebrow { font-size: 12px; letter-spacing: 0.28em; }
  .hero-dog { width: 78vw !important; max-width: 380px; margin: 18px auto 0; }
  .hero .btn { margin: 0 auto; }
  /* hide hero decorative floats so nothing crowds the headline */
  .hero-float, .hero-wrap .deco { display: none !important; }

  /* ---- Buttons: tappable & centered by default in single-col layouts ---- */
  .btn {
    padding: 14px 26px;
    font-size: 12px;
    letter-spacing: 0.18em;
    min-height: 48px;
  }

  /* ---- Section vertical rhythm ---- */
  section,
  .pattern-bg > section,
  .sitstay,
  .inquiry-outer,
  footer { padding-left: 18px; padding-right: 18px; }

  .services { padding-top: 64px; padding-bottom: 64px; }
  .services-head { text-align: center; }
  .services-head h2 { margin-bottom: 18px; }

  .services-grid,
  .services-grid.two { grid-template-columns: 1fr !important; gap: 22px !important; }
  .service-card { padding: 28px 22px; }
  .service-card .service-ill svg { max-width: 140px; margin: 0 auto; }

  .custom-block { padding: 40px 8px; }
  .custom-inner h3 { font-size: clamp(30px, 8vw, 40px) !important; }

  /* ---- Process ---- */
  .process { padding: 64px 18px; }
  .process-head h2 { font-size: clamp(38px, 9vw, 56px) !important; }
  .process-track { max-width: 320px !important; margin: 0 auto; }
  .pstep { text-align: center; padding: 6px 0 !important; }
  .pstep h3 { font-size: 20px !important; }
  .pico { max-width: 110px !important; margin: 0 auto 8px; }
  .parrow { font-size: 22px !important; margin: 6px 0 !important; }

  /* ---- Sit & Stay (stacked polaroids) ---- */
  .sitstay { padding-top: 64px; padding-bottom: 72px; }
  .sitstay-grid { gap: 36px !important; }
  .sitstay-panel {
    aspect-ratio: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .sitstay-panel .frame.big {
    position: relative;
    inset: auto;
    width: 88%;
    aspect-ratio: 4/5;
    margin: 0 auto;
    transform: rotate(-1.5deg);
  }
  .sitstay-panel .frame.small {
    position: relative;
    width: 60%;
    margin: -40px 0 0 auto;
    right: auto;
    bottom: auto;
    transform: rotate(4deg);
  }
  .sitstay-panel .stamp {
    width: 90px; height: 90px;
    top: -10px; right: -6px;
  }
  .sitstay-text .pricerow { gap: 18px 28px; margin: 22px 0 28px; }
  .sitstay-text h2 { font-size: clamp(36px, 9vw, 52px); }

  /* ---- About ---- */
  .about-grid { gap: 32px !important; }
  .about-text h2 { text-align: center; }
  .about-photo { max-width: 320px; }
  .about-sig { display: block; text-align: center; margin-top: 12px; }

  /* ---- Approach points ---- */
  .approach-points { gap: 26px !important; }
  .approach-point { text-align: center; }

  /* ---- Photo strip ---- */
  .photo-strip { grid-template-columns: 1fr 1fr !important; }
  .photo-strip-cell:nth-child(2n) { border-right: none; }
  .photo-strip-cell .caption { font-size: 18px; bottom: 8px; left: 10px; }

  /* ---- Testimonials ---- */
  .experiences { padding: 56px 16px; }
  .experiences-inner h2 { text-align: center; }
  .testi { padding: 8px 4px; text-align: center; }
  .testi-photo {
    width: 130px; height: 130px;
    margin: 0 auto 18px;
  }
  .testi-quote {
    font-size: 17px !important;
    line-height: 1.55;
    max-width: 100%;
    padding: 0 4px;
  }
  .testi-quote::before, .testi-quote::after { display: none; }
  .testi-name { font-size: 28px; margin-top: 16px; }
  .testi-where { font-size: 13px; }
  .testi-nav { gap: 14px; margin-top: 22px; }
  .testi-arrow { width: 44px; height: 44px; flex-shrink: 0; }
  .testi-dots { margin: 0 6px; gap: 8px; }
  .testi-dot { width: 11px; height: 11px; }

  /* ---- Inquiry form ---- */
  .inquiry-outer { padding: 56px 14px 72px !important; }
  .inquiry-card {
    padding: 36px 20px !important;
    border-width: 2.5px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .inquiry-card::before { inset: 8px; }
  .inquiry-card h2 { text-align: center; }

  .form-group { margin-top: 28px; padding-top: 22px; }
  .form-group-head { margin-bottom: 16px; }
  .form-group-head h3 { font-size: 22px; }

  .form-row { grid-template-columns: 1fr !important; gap: 16px !important; }
  .field input,
  .field select { padding: 12px 0 8px; }
  .field textarea { min-height: 110px; padding: 10px 0; }

  .service-pills { gap: 10px; }
  .service-pill { flex: 1 1 100%; }
  .service-pill span { padding: 14px 18px; font-size: 15px; min-height: 48px; }

  .checks { grid-template-columns: 1fr !important; gap: 8px; }
  .check { padding: 12px 16px; font-size: 14px; min-height: 44px; }

  .submit-row { margin-top: 32px; }
  .submit-row .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-foot { font-size: 22px; margin-top: 18px; }

  /* ---- Footer ---- */
  footer { padding: 64px 18px 28px; }
  .footer-top { margin-bottom: 40px; }
  .footer-word { font-size: clamp(56px, 16vw, 88px); }
  .footer-mark { width: 84px; margin-top: 12px; }
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    text-align: center;
    padding-bottom: 28px;
  }
  .foot-col h4 { font-size: 18px; margin-bottom: 10px; }
  .foot-col li { font-size: 15px; line-height: 1.9; }
  .foot-bottom {
    flex-direction: column !important;
    gap: 8px;
    margin-top: 22px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
}

/* ===== Extra-small phones: ≤ 400px ===== */
@media (max-width: 400px) {
  .logo-word { font-size: 28px; }
  .logo-tag { display: none; }            /* keep nav from wrapping awkwardly */
  .logo-mark { width: 48px; }
  .hero-title { font-size: 40px !important; }
  .services-head h2,
  .approach-head h2,
  .about-text h2,
  .experiences-inner h2,
  .process-head h2,
  .inquiry-card h2 { font-size: 34px !important; }
  .testi-photo { width: 110px; height: 110px; }
  .testi-quote { font-size: 16px !important; }
  .inquiry-card { padding: 28px 16px !important; }
  .footer-word { font-size: 56px; }
}

