/* =====================================================================
   Jack & Jill Salon • Spa • Shoppe — site styles
   Built from the approved desktop mockups. Colors sampled from the logo.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue: #0866B2;
  --blue-dark: #0A5A9C;
  --green: #74BF44;
  --green-dark: #5FA833;
  --pink: #EE8FBA;
  --hot-pink: #ED3B83;
  --hot-pink-dark: #D8236F;
  --purple: #9C7BC9;
  --purple-dark: #8465B5;
  --sky: #2E8BD6;
  --sky-dark: #1F74B8;
  --ink: #14213D;
  --ink-soft: #2B3552;
  --muted: #5B6478;
  --white: #FFFFFF;
  --cream: #FFF8E6;
  --cream-border: #F1E3BF;
  --tint-pink: #FCE3EE;
  --tint-blue: #D5E6F7;
  --tint-green: #DDEFCF;
  --tint-yellow: #FFF2B3;
  --tint-purple: #E8DFF6;
  --card-border: #F3E5DC;
  --card-border-blue: #E1EAF5;
  --field-border: #D6DEE9;

  --font-hand: 'Just Another Hand', 'Amatic SC', 'Comic Sans MS', cursive;
  --font-title: 'Amatic SC', 'Just Another Hand', 'Comic Sans MS', cursive;
  --font-script: 'Patrick Hand', 'Comic Sans MS', cursive;
  --font-body: 'Quicksand', 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 18px rgba(8, 102, 178, 0.08);
  --shadow-lift: 0 14px 30px rgba(8, 102, 178, 0.16);
  --container: 1500px;
  --gutter: clamp(16px, 2.4vw, 32px);
  --header-h: 118px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon { width: 1em; height: 1em; fill: none; flex-shrink: 0; }

/* ---------- Typography helpers ---------- */
.hand { font-family: var(--font-hand); letter-spacing: .02em; }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-pink { color: var(--hot-pink); }
.text-purple { color: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .55em 1.5em;
  border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-hand); font-size: 1.85rem; line-height: 1; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none; color: #fff;
  box-shadow: 0 4px 12px rgba(20, 33, 61, .12);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20, 33, 61, .18); }
.btn:active { transform: translateY(0); }
.btn--green { background: var(--green); }
.btn--green:hover { background: var(--green-dark); }
.btn--pink { background: var(--hot-pink); }
.btn--pink:hover { background: var(--hot-pink-dark); }
.btn--blue { background: var(--sky); }
.btn--blue:hover { background: var(--sky-dark); }
.btn--purple { background: var(--purple); }
.btn--purple:hover { background: var(--purple-dark); }
.btn--lg { font-size: 2.15rem; padding: .5em 1.55em; min-height: 66px; }

/* Solid, sans-serif buttons used on the Book page cards */
.btn--block {
  width: 100%; font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .04em; min-height: 46px; padding: .4em 1em; border-radius: 12px;
  box-shadow: none;
}

/* ---------- Header ---------- */
.site-header {
  position: relative; z-index: 50;
  background: var(--white);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  min-height: var(--header-h);
  padding-block: 10px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; height: clamp(64px, 7.2vw, 106px); }

.site-nav { justify-self: center; }
.site-nav__list { display: flex; align-items: center; gap: clamp(28px, 4vw, 62px); }
.site-nav__link {
  position: relative; display: inline-block; padding: 8px 2px;
  font-weight: 600; font-size: 1.35rem; color: var(--ink); text-decoration: none;
  transition: color .15s;
}
.site-nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 3px;
  border-radius: 3px; background: var(--green); transform: translateX(-50%);
  transition: width .2s ease;
}
.site-nav__link:hover::after, .site-nav__link:focus-visible::after { width: 100%; }
.site-nav__link[aria-current="page"] { color: var(--ink); }
.site-nav__link[aria-current="page"]::after { width: 100%; }
body[data-page="home"] .site-nav__link[aria-current="page"] { color: var(--hot-pink); }
body[data-page="home"] .site-nav__link[aria-current="page"]::after { background: var(--hot-pink); }

.header-actions { display: flex; align-items: center; gap: 14px; justify-self: end; }
.btn--book { font-size: 2rem; padding: .42em 1.35em; min-height: 62px; white-space: nowrap; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 2px solid var(--tint-blue); border-radius: 12px;
  background: #fff; color: var(--blue);
}
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }

/* Decorative dashed wave under the header (Book page) */
.header-wave {
  height: 16px; margin-top: -6px;
  background: url("../assets/icons/wave-dashed-pink.svg") left center / 160px 16px repeat-x;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  align-items: center;
  gap: clamp(16px, 2.6vw, 40px);
  padding-block: clamp(8px, 1.5vw, 20px) clamp(10px, 2vw, 26px);
}
.hero__copy { position: relative; padding-left: clamp(0px, 2.8vw, 40px); }
.hero__title {
  font-family: var(--font-title);
  font-weight: 700;
  /* Amatic SC has no weight above 700; the stroke adds extra thickness */
  -webkit-text-stroke: .022em currentColor;
  paint-order: stroke fill;
  font-size: clamp(4rem, 8.1vw, 8rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .18em;
}
.hero__title span { display: block; }
.hero__title .inline { display: inline; }
.hero__title .small { font-size: .78em; }
.hero__lead {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.15; margin: 0 0 .35em;
}
.hero__lead--pink { font-family: var(--font-body); font-weight: 500; color: var(--hot-pink); font-size: clamp(1rem, 1.3vw, 1.2rem); }
.hero__lead--green { color: var(--green); }
.hero__text { max-width: 40rem; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.7; margin-bottom: 1.4em; }
.hero__text--tight { line-height: 1.5; }
.hero__cta { margin-top: .4em; }

.hero__art { position: relative; margin-inline: auto; width: 100%; }
.hero__art img { width: 100%; height: auto; object-fit: contain; }
/* Dormant SVG brush strokes — enable with .hero__art--strokes once cutout photos are supplied */
.hero__strokes { display: none; position: absolute; inset: 0; z-index: -1; }
.hero__art--strokes .hero__strokes { display: block; }
.hero__strokes .stroke { position: absolute; }
.hero__strokes .stroke--pink { left: 0; top: 8%; width: 60%; height: 84%; background: url("../assets/icons/brush-pink.svg") center / 100% 100% no-repeat; }
.hero__strokes .stroke--blue { right: 0; top: 16%; width: 52%; height: 80%; background: url("../assets/icons/brush-blue.svg") center / 100% 100% no-repeat; }

/* Hand-drawn doodles: the approved artwork files in assets/icons.
   Only size, position and rotation are set here; the artwork itself is never altered. */
.doodle { position: absolute; width: 48px; height: auto; pointer-events: none; z-index: 2; }
.doodle-dashes { width: 38px; left: -10px; top: -8px; }
.doodle-heart { width: 50px; }
.doodle-star { width: 56px; }
.doodle-star--lg { width: 80px; }
.doodle-star--sm { width: 40px; }

/* ---------- Generic cards ---------- */
.card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.icon-circle {
  display: grid; place-items: center; flex-shrink: 0;
  width: 92px; height: 92px; border-radius: 50%;
  color: var(--ink);
}
.icon-circle .icon { width: 58%; height: 58%; }
.icon-circle--pink { background: var(--tint-pink); }
.icon-circle--blue { background: var(--tint-blue); }
.icon-circle--green { background: var(--tint-green); }
.icon-circle--yellow { background: var(--tint-yellow); }
.icon-circle--purple { background: var(--tint-purple); }
.icon-circle--solid-green { background: var(--green); color: #fff; }
/* Supplied icon artwork (circle included in the image) */
.icon-circle--img { background: none; object-fit: contain; display: block; }

.card__title {
  font-family: var(--font-hand);
  font-size: 1.9rem; line-height: .92; letter-spacing: .015em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .3em;
}
.card__text { font-size: 1rem; line-height: 1.5; margin: 0; color: var(--ink-soft); }

/* ---------- Home: benefit cards ---------- */
.benefits {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px); margin-top: clamp(6px, 1vw, 14px);
}
.benefit {
  display: flex; align-items: center; gap: 20px;
  padding: clamp(16px, 1.6vw, 26px) clamp(16px, 1.6vw, 24px);
  border-color: #F6DCE7;
}
.benefit .icon-circle { width: 112px; height: 112px; }
.benefit .icon-circle .icon { width: 62%; height: 62%; }
.benefit .card__title { font-size: 1.9rem; letter-spacing: .01em; }

/* ---------- Footer brush banner ----------
   The approved brush-stroke artwork is an <img>; it keeps its aspect ratio and is never
   stretched. The text is layered on top and centered. */
.footer-brush {
  position: relative;
  width: min(94%, 1400px);
  margin: clamp(18px, 2vw, 28px) auto 0;
}
.footer-brush > img { display: block; width: 100%; height: auto; }
.footer-brush-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  padding: 0 7%;
  color: #fff; text-align: center;
}
.paint-banner__list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 6px clamp(14px, 2vw, 34px);
}
.paint-banner__list li { display: flex; align-items: center; gap: clamp(14px, 2vw, 34px); }
.footer-brush-text > .paint-banner__sep { margin-right: clamp(14px, 2vw, 34px); }
.paint-banner__item, .footer-brush-text a {
  font-family: var(--font-hand); font-size: clamp(1rem, 1.9vw, 2.1rem);
  letter-spacing: .08em; text-transform: uppercase; color: #fff; text-decoration: none;
  line-height: 1; white-space: nowrap;
}
.footer-brush-text a:hover, .footer-brush-text a:focus-visible { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.footer-brush-text a:focus-visible { outline-color: #fff; }
.paint-banner__sep { width: clamp(14px, 1.6vw, 24px); height: auto; flex-shrink: 0; }
.paint-banner__sep--dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); }

.wave-line { height: 14px; margin-top: 18px; background: url("../assets/icons/wave-green.svg") left center / 120px 14px repeat-x; }

/* Small doodles beside the banner */
.banner-wrap { position: relative; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.banner-wrap .doodle { top: 50%; }
.banner-wrap .doodle-heart { width: 44px; }

/* ---------- Footer ---------- */
.site-footer { padding: 22px var(--gutter) 30px; text-align: center; font-size: .92rem; color: var(--muted); }
.site-footer a { color: var(--blue); font-weight: 600; text-decoration: none; }
.site-footer a[href^="tel:"] { white-space: nowrap; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .sep { margin: 0 .5em; color: var(--pink); }
/* Instagram badge sitting at the right end of the paint stroke (Home + Contact) */
.banner-badge { position: absolute; right: 56px; top: 50%; transform: translateY(-50%); z-index: 3; border-radius: 50%; line-height: 0; }
.banner-badge[hidden] { display: none; }
.banner-badge img { width: 64px; height: 64px; transition: transform .15s; }
.banner-badge:hover img, .banner-badge:focus-visible img { transform: scale(1.08); }
.banner-wrap--badge .footer-brush { width: min(87%, 1290px); margin-right: auto; margin-left: calc((100% - min(87%, 1290px)) / 2 - 40px); }

/* ---------- Services ---------- */
.services-grid { display: grid; gap: clamp(12px, 1.2vw, 18px); margin-top: clamp(6px, 1vw, 12px); }
.services-grid--six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.services-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(12px, 1.4vw, 18px); }
.service-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: clamp(14px, 1.3vw, 18px) clamp(12px, 1.1vw, 16px);
  scroll-margin-top: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card .icon-circle { width: 74px; height: 74px; }
.service-card .card__title { font-size: 1.6rem; }
.service-card .card__text { font-size: .9rem; line-height: 1.45; }
.service-card--dense .card__text { font-size: .84rem; }
.service-card__body { min-width: 0; flex: 1; }
.services-grid--four .service-card { padding-block: clamp(16px, 1.5vw, 24px); gap: 16px; }
.services-grid--four .icon-circle { width: 90px; height: 90px; }
.services-grid--four .card__title { font-size: 1.85rem; }
.services-grid--four .card__text { font-size: .98rem; line-height: 1.5; }

/* Interactive "View options" cards */
.service-card--menu { position: relative; z-index: 1; }
/* Lift an open/hovered card above everything below it (banner, footer) — Safari needs an explicit z-index */
.service-card--menu:hover, .service-card--menu.is-open, .service-card--menu:focus-within { z-index: 60; }
.services-grid--four { position: relative; z-index: 5; }
.banner-wrap { z-index: 1; }
.view-options {
  display: inline-flex; align-items: center; gap: .3em;
  margin-top: .7em; padding: .35em 1em; min-height: 36px;
  border-radius: 10px; border: 2px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1;
  background: var(--green); color: #fff;
  transition: background-color .15s, color .15s, border-color .15s;
}
.view-options:hover { background: var(--green-dark); }
/* Body is a column so every "View options" button sits at the same spot (bottom of the card) */
.service-card--menu .service-card__body { display: flex; flex-direction: column; align-self: stretch; }
.service-card--menu .view-options { margin-top: auto; align-self: flex-start; }
.service-card--menu .card__text { margin-bottom: .7em; }

.service-menu {
  margin-top: 12px; padding: 14px 18px;
  background: #fff; border-radius: 14px;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 12px 28px rgba(20, 33, 61, .14);
  font-size: .95rem; color: var(--ink);
}
.service-menu ul { display: grid; gap: .45em; }
.service-menu li { position: relative; padding-left: 1.1em; }
.service-menu li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
}
.service-card--menu[data-accent="green"] .service-menu li::before { background: var(--green); }
.service-card--menu[data-accent="pink"] .service-menu li::before { background: var(--hot-pink); }

/* open state: both hover (desktop) and tap (any) */
.service-card--menu.is-open,
.service-card--menu:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.service-card--menu[data-accent="green"].is-open,
.service-card--menu[data-accent="green"]:focus-within { border-color: var(--green); border-width: 2px; }
.service-card--menu[data-accent="pink"].is-open,
.service-card--menu[data-accent="pink"]:focus-within { border-color: var(--pink); border-width: 2px; box-shadow: 0 0 0 4px rgba(238, 143, 186, .18), var(--shadow-lift); }
.service-card--menu.is-open .view-options[aria-expanded="true"] { /* keep same look */ }

/* Desktop: hover reveal as a floating dropdown with a pointer */
@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .service-card--menu:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
  .service-card--menu[data-accent="green"]:hover { border-color: var(--green); border-width: 2px; }
  .service-card--menu[data-accent="pink"]:hover { border-color: var(--pink); border-width: 2px; box-shadow: 0 0 0 4px rgba(238, 143, 186, .18), var(--shadow-lift); }

  .service-menu {
    position: absolute; z-index: 60; left: 50%; top: calc(100% + 14px);
    width: 300px; max-width: calc(100vw - 32px); margin: 0;
    transform: translateX(-50%);
  }
  .service-menu::before {
    content: ""; position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 16px; height: 16px; background: #fff;
    border-left: 1.5px solid var(--card-border); border-top: 1.5px solid var(--card-border);
  }
  .service-card--menu:hover .service-menu,
  .service-card--menu:focus-within .service-menu,
  .service-card--menu.is-open .service-menu { display: block; }
  .service-menu[hidden] { display: none; }
  .service-card--menu:hover .service-menu[hidden],
  .service-card--menu:focus-within .service-menu[hidden] { display: block; }
  /* First card: keep panel inside the viewport by anchoring left */
  .service-card--menu:first-child .service-menu { left: 0; transform: none; }
  .service-card--menu:first-child .service-menu::before { left: 40px; }
  /* Last card: anchor right */
  .service-card--menu:last-child .service-menu { left: auto; right: 0; transform: none; }
  .service-card--menu:last-child .service-menu::before { left: auto; right: 40px; transform: rotate(45deg); }
}

/* ---------- Parties ---------- */
.party-section { display: grid; gap: clamp(12px, 1.2vw, 18px); margin-top: clamp(8px, 1vw, 14px); }
.party-section--premium { grid-template-columns: 200px repeat(4, minmax(0, 1fr)); }
.party-section--deluxe { grid-template-columns: 200px repeat(2, minmax(0, 1fr)); margin-top: clamp(14px, 1.5vw, 20px); }
.party-label { display: flex; flex-direction: column; justify-content: center; padding: 18px 16px; }
.party-label .card__title { font-size: 1.8rem; margin-bottom: .15em; white-space: nowrap; }
.party-label__meta { font-weight: 700; font-size: .78rem; color: var(--green); margin: 0; white-space: nowrap; }
.party-card { display: flex; align-items: flex-start; gap: 12px; padding: clamp(14px, 1.3vw, 18px) clamp(12px, 1.1vw, 16px); }
.party-card .icon-circle { width: 78px; height: 78px; }
.party-card .card__title { font-size: 1.65rem; }
.party-card .card__text { font-size: .9rem; line-height: 1.45; }
.party-section--deluxe .party-card { padding-block: clamp(20px, 2vw, 30px); align-items: center; }
.party-section--deluxe .icon-circle { width: 100px; height: 100px; }
.party-section--deluxe .card__title { font-size: 2.1rem; }
.party-section--deluxe .card__text { font-size: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); gap: clamp(14px, 2vw, 32px); margin-top: 8px; }
.panel { padding: clamp(18px, 2vw, 28px) clamp(18px, 2vw, 30px); border-color: var(--card-border-blue); }
.panel__title {
  display: flex; align-items: center; gap: 22px;
  font-family: var(--font-hand); font-size: 2.35rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .55em; padding-left: 4px;
}
.panel__title-icon { width: 36px; height: auto; transform: rotate(-10deg); }
.panel__corner { position: absolute; top: 20px; right: 22px; width: 36px; height: auto; transform: rotate(8deg); }

.come-see { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.come-see > * { min-width: 0; }
.map-embed { overflow: hidden; border-radius: 16px; border: 1.5px solid var(--card-border-blue); background: var(--tint-blue); aspect-ratio: 1 / 1; }
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: .95rem; }

.biz-name { font-family: var(--font-script); font-size: 1.25rem; color: var(--blue); margin: 4px 0 12px; }
.biz-name .star { color: var(--green); margin: 0 .25em; }
.info-list { display: grid; gap: 14px; font-size: .98rem; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; min-width: 0; }
.info-list li > :last-child { min-width: 0; }
.info-list .icon-circle { width: 38px; height: 38px; color: #fff; }
.info-list .icon-circle .icon { width: 54%; height: 54%; }
.info-list a { color: var(--ink); text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.info-list address { font-style: normal; }
.info-divider { height: 0; border: 0; border-top: 2px solid var(--pink); margin: 6px 0 4px; }
.hours { display: grid; grid-template-columns: max-content minmax(0, 1fr); column-gap: 14px; row-gap: 4px; margin: 0; font-size: .95rem; }
.hours dt { font-weight: 500; white-space: nowrap; }
.hours dd { margin: 0; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: .92rem; }
.form-field input, .form-field textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--field-border); border-radius: 8px; padding: 12px 14px; min-height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #9AA3B5; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8, 102, 178, .14); }
.form-field textarea { min-height: 96px; resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; margin-top: 16px; }
.form-status { min-height: 1.4em; font-weight: 600; color: var(--green-dark); }
.form-status.is-error { color: var(--hot-pink-dark); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Book page ---------- */
.booking-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.2vw, 18px); margin-top: 4px; }
.book-card { display: flex; flex-direction: column; padding: clamp(16px, 1.6vw, 22px) clamp(14px, 1.4vw, 20px); border-width: 2px; }
.book-card[data-tone="pink"] { border-color: #F7C6DB; }
.book-card[data-tone="green"] { border-color: #CDE8B8; }
.book-card[data-tone="blue"] { border-color: #BFDBF5; }
.book-card[data-tone="purple"] { border-color: #DCCFF0; }
.book-card__top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.book-card .icon-circle { width: 90px; height: 90px; }
.book-card .card__title { font-size: 1.95rem; }
.book-card[data-tone="pink"] .card__title { color: var(--hot-pink); }
.book-card[data-tone="green"] .card__title { color: var(--green); }
.book-card[data-tone="blue"] .card__title { color: var(--blue); }
.book-card[data-tone="purple"] .card__title { color: var(--purple); }
.book-card .btn { margin-top: auto; }

.info-band {
  display: grid; grid-template-columns: 1.95fr 1.1fr .95fr .95fr;
  gap: 0; margin-top: clamp(14px, 1.6vw, 20px); padding: clamp(14px, 1.4vw, 18px) 0;
  background: var(--cream); border: 1.5px solid var(--cream-border); border-radius: 16px;
}
.info-col { padding: 6px clamp(14px, 1.4vw, 22px); border-left: 2px dashed #C8C2B4; }
.info-col:first-child { border-left: 0; }
.info-col__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-hand); font-size: 1.8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .45em;
}
.info-col__title .icon { width: 24px; height: 24px; color: var(--hot-pink); }
.info-col__title .title-art { width: 22px; height: auto; transform: rotate(-10deg); }
.salon-info { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px 14px; align-items: start; }
.salon-info__list { display: grid; gap: 8px; font-size: .92rem; white-space: nowrap; }
.salon-info__list li { display: flex; align-items: flex-start; gap: 10px; }
.salon-info__list .icon { width: 22px; height: 22px; color: var(--hot-pink); margin-top: 2px; }
.salon-info address { font-style: normal; }
.polaroid {
  position: relative; width: 168px; padding: 8px 8px 12px; background: #fff;
  box-shadow: 0 6px 16px rgba(20, 33, 61, .18); transform: rotate(10deg); margin: 10px 14px 12px 0;
}
.polaroid::before {
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-6deg);
  width: 56px; height: 16px; background: var(--sky); opacity: .8; border-radius: 2px;
}
.polaroid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.salon-info__blurb { grid-column: 1 / -1; font-size: .95rem; color: var(--ink-soft); margin: 0; }
.star-list { display: grid; gap: 10px; font-size: .92rem; }
.star-list li { display: flex; align-items: flex-start; gap: 10px; }
.star-list .list-art { width: 24px; height: auto; flex-shrink: 0; margin-top: 1px; }
.policy-box {
  border: 2px dashed var(--pink); border-radius: 12px; padding: 12px 14px; font-size: .9rem; height: 100%;
}
.policy-box .info-col__title { color: var(--hot-pink); font-size: 1.5rem; margin-bottom: .35em; line-height: 1; }
.policy-box p { margin-bottom: .6em; }
.policy-box p:last-child { margin-bottom: 0; }
.thanks-box {
  border: 2px dashed var(--sky); border-radius: 12px; padding: 16px 14px; text-align: center; height: 100%;
  background: #F4F8FD; font-size: 1rem; line-height: 1.45;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.thanks-box p { margin: 0; }
.thanks-box .thanks-art { width: 26px; height: auto; margin: 4px auto 0; }
.info-col--thanks { position: relative; }
.info-col--thanks .doodle-scissors { width: 44px; height: 44px; top: -14px; right: -6px; color: var(--ink); transform: rotate(20deg); }
.doodle-scissors .icon { width: 100%; height: 100%; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover, .service-card--menu:hover, .service-card--menu.is-open, .service-card--menu:focus-within { transform: none; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1280px) {
  .come-see { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 16 / 10; }
  .site-nav__list { gap: 30px; }
  .site-nav__link { font-size: 1.2rem; }
  .btn--book { font-size: 1.7rem; min-height: 54px; }
  .benefit { gap: 14px; }
  .benefit .icon-circle { width: 96px; height: 96px; }
  .benefit .card__title { font-size: 1.8rem; }
  .services-grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .party-section--premium, .party-section--deluxe { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .party-label { grid-column: 1 / -1; flex-direction: row; align-items: baseline; gap: 16px; padding: 14px 20px; }
  .party-label .card__title { margin-bottom: 0; }
  .info-band { grid-template-columns: 1fr 1fr; row-gap: 16px; }
  .info-col:nth-child(3) { border-left: 0; }
}

@media (max-width: 1024px) {
  :root { --header-h: 96px; }
  .hero__title { font-size: clamp(3.6rem, 8.1vw, 6.6rem); }
  .btn--lg { font-size: 1.8rem; min-height: 58px; }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero > .doodle:not([style*="right:"]) { display: none; }
}

@media (max-width: 900px) {
  .site-header__inner { grid-template-columns: auto 1fr; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; width: 100%; z-index: 60;
    justify-self: stretch;
    background: #fff; border-top: 1px solid var(--card-border-blue);
    box-shadow: 0 16px 30px rgba(20, 33, 61, .12); padding: 10px 0 16px;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link { display: block; padding: 14px var(--gutter); font-size: 1.25rem; min-height: 48px; }
  .site-nav__link::after { left: var(--gutter); bottom: 8px; transform: none; }
  .site-nav__link[aria-current="page"]::after { width: 48px; }
  .nav-toggle { display: inline-flex; }
  .view-options { min-height: 44px; padding: .5em 1.1em; font-size: 1rem; }
  .btn--book { font-size: 1.55rem; min-height: 48px; padding: .35em 1em; }

  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero__art { order: 2; max-width: 640px; }
  .hero__copy { order: 1; padding-left: 0; }
  .doodle-dashes { display: none; }
  .hero .doodle-star, .hero .doodle-heart { display: none; }
  .footer-brush { width: 96%; }
  .footer-brush-text { padding: 0 8.5%; }
  .paint-banner__item, .footer-brush-text a { letter-spacing: .05em; }
  .come-see { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 16 / 10; }
  .party-section--premium, .party-section--deluxe { grid-template-columns: 1fr; }
  .party-label { padding: 14px 18px; }
  .info-band { grid-template-columns: 1fr; }
  .info-col { border-left: 0; border-top: 2px dashed #C8C2B4; padding-block: 14px; }
  .info-col:first-child { border-top: 0; }
  .banner-wrap .doodle { display: none; }
  .banner-wrap--badge { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .banner-wrap--badge .footer-brush { width: 96%; margin-left: auto; margin-right: auto; }
  .banner-badge { position: static; transform: none; order: 2; }
  .banner-badge img { width: 56px; height: 56px; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand img { height: 58px; }
  .btn--book { font-size: 1.35rem; padding: .4em .9em; }
  .btn--book span { display: inline; }
  .hero__title { font-size: clamp(3.6rem, 15vw, 5.4rem); }
  .hero__lead { font-size: 1.45rem; }
  .btn--lg { font-size: 1.7rem; min-height: 56px; width: 100%; }
  .benefits, .services-grid--six, .services-grid--four, .booking-grid { grid-template-columns: 1fr; }
  .benefit { padding: 16px; }
  .benefit .icon-circle { width: 84px; height: 84px; }
  /* Phones: the brush is only ~30px tall at this width, so the image is allowed to crop
     (object-fit) just enough for two lines of text — the one case cropping is necessary. */
  .footer-brush > img { min-height: 76px; object-fit: cover; object-position: center; }
  .footer-brush-text { padding: 0 9%; gap: 8px; }
  .paint-banner__item, .footer-brush-text a { font-size: 1.15rem; letter-spacing: .05em; }
  .paint-banner__list, .paint-banner__list li { gap: 4px 10px; }
  .paint-banner__sep { width: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; align-items: stretch; }
  .form-actions .btn { width: 100%; }
  .panel__title { font-size: 2rem; gap: 14px; }
  .panel__corner { top: 16px; right: 16px; width: 30px; }
  .salon-info { grid-template-columns: 1fr; }
  .polaroid { width: 200px; margin: 6px auto 0; }
  .hours { grid-template-columns: 1fr; row-gap: 2px; }
  .hours dd { margin-bottom: 6px; }
}

@media (max-width: 400px) {
  .btn--book { font-size: 1.2rem; padding: .4em .75em; }
  .brand img { height: 52px; }
  .hero__title { font-size: 3.7rem; }
  .service-card, .party-card, .benefit { gap: 12px; }
  .service-card .icon-circle, .party-card .icon-circle { width: 72px; height: 72px; }
}
