/* ============================================================
   Rootophia Groom — luxury salon identity
   Loaded in addition to styles.v7.css (which supplies the shared
   header, nav and footer). All classes are g- prefixed so nothing
   here can affect the rest of the Rootophia website.
   ============================================================ */

:root {
  --g-cream: #fff8ef;
  --g-cream-2: #fdf1ea;
  --g-blush: #f6d9df;
  --g-blush-soft: #fdeef1;
  --g-blush-line: #f0c4cd;
  --g-orange: #e57200;          /* brand orange — accents, borders, large script headings */
  --g-orange-deep: #c85e00;
  --g-orange-text: #a34d00;     /* AA-safe orange for small text labels on light backgrounds */
  --g-btn: #b35900;             /* AA-safe orange for white button text (>=4.5:1) */
  --g-btn-hover: #954a00;
  --g-brown: #3a2a20;
  --g-brown-soft: #5a463b;
  --g-ink: #2b2320;
  --g-line: rgba(58, 42, 32, 0.12);
  --g-shadow-sm: 0 4px 16px rgba(58, 42, 32, 0.07);
  --g-shadow-md: 0 14px 36px rgba(58, 42, 32, 0.10);
  --g-radius: 20px;
  --g-radius-lg: 28px;
}

/* Page base ------------------------------------------------- */
body.groom-page {
  background: var(--g-cream);
  color: var(--g-ink);
}
.groom-page main { display: block; }

.g-section { padding: 68px 0; }
.g-section--tint { background: var(--g-cream-2); }
.g-section--blush {
  background: linear-gradient(180deg, var(--g-blush-soft) 0%, var(--g-cream) 100%);
}

.g-head { text-align: center; max-width: 62ch; margin: 0 auto 34px; }
.g-head--left { text-align: left; margin-left: 0; }
.g-script {
  font-family: "Dancing Script", "Segoe Script", cursive;
  color: var(--g-orange);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  line-height: 1.1;
}
.g-section h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.4px;
  color: var(--g-brown);
  margin: 4px 0 12px;
  text-wrap: balance;
}
.g-section h3 { color: var(--g-brown); }
.g-lead {
  color: var(--g-brown-soft);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 auto;
}
.g-head .g-lead { max-width: 60ch; }
.g-prose p { color: var(--g-brown-soft); line-height: 1.7; font-size: 16px; }
.g-prose h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--g-orange-text);
  margin: 26px 0 6px;
}

/* Buttons --------------------------------------------------- */
.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font: inherit;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  min-height: 50px;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.g-btn:hover { transform: translateY(-2px); }
.g-btn:active { transform: translateY(0); }
.g-btn--primary {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 12px 28px rgba(179, 89, 0, 0.30);
}
.g-btn--primary:hover { background: var(--g-btn-hover); }
.g-btn--secondary {
  background: #fff;
  color: var(--g-brown);
  border: 1px solid var(--g-blush-line);
  box-shadow: var(--g-shadow-sm);
}
.g-btn--secondary:hover { background: var(--g-blush-soft); }
.g-btn--ghost {
  background: transparent;
  color: var(--g-brown);
  border: 1px solid var(--g-line);
}
.g-btn--whatsapp {
  background: #176b3a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 107, 58, 0.26);
}
.g-btn--whatsapp:hover { background: #10572e; }
.g-btn:focus-visible { outline: 3px solid rgba(229,114,0,0.45); outline-offset: 2px; }

/* Hero ------------------------------------------------------ */
.g-hero {
  position: relative;
  padding: 62px 0 58px;
  background:
    radial-gradient(900px 420px at 8% -10%, var(--g-blush-soft), transparent 60%),
    radial-gradient(800px 420px at 100% 120%, #fff2e4, transparent 55%),
    var(--g-cream);
  overflow: hidden;
}
.g-hero__inner { text-align: center; position: relative; z-index: 1; }
.g-hero__logo {
  width: min(300px, 76vw);
  height: auto;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 12px 26px rgba(58, 42, 32, 0.14));
}
.g-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  color: var(--g-orange-text);
  margin: 8px 0 6px;
}
.g-hero h1 {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--g-brown);
  margin: 6px auto 14px;
  max-width: 20ch;
  text-wrap: balance;
}
.g-hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--g-brown-soft);
  max-width: 56ch;
  margin: 0 auto 10px;
  line-height: 1.55;
}
.g-hero__support {
  font-size: 15px;
  color: var(--g-brown-soft);
  max-width: 52ch;
  margin: 0 auto 24px;
}
.g-hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.g-trustrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
}
.g-trustrow li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--g-blush-line);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--g-brown);
  box-shadow: var(--g-shadow-sm);
}
.g-trustrow li .g-ic { color: var(--g-orange); font-size: 15px; }

/* WhatsApp availability ------------------------------------ */
.g-availability {
  padding: 34px 0 18px;
  background: linear-gradient(180deg, var(--g-cream) 0%, var(--g-cream-2) 100%);
}
.g-availability__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 217, 223, 0.8), transparent 38%),
    #fff;
  border: 2px solid var(--g-blush-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow-md);
}
.g-availability__card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(229, 114, 0, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.g-availability__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: #e8f5ed;
  border: 1px solid #b9ddc7;
  border-radius: 20px;
  font-size: 30px;
  transform: rotate(-3deg);
}
.g-availability__content { position: relative; z-index: 1; }
.g-availability h2 {
  margin: 4px 0 14px;
  color: var(--g-brown);
  font-size: clamp(27px, 3.5vw, 40px);
  line-height: 1.15;
  text-wrap: balance;
}
.g-availability p {
  max-width: 66ch;
  margin: 0 0 12px;
  color: var(--g-brown-soft);
  font-size: 16.5px;
  line-height: 1.7;
}
.g-availability__standalone {
  padding: 15px 17px;
  background: var(--g-blush-soft);
  border-left: 4px solid var(--g-orange);
  border-radius: 0 12px 12px 0;
}
.g-availability .g-btn { margin-top: 8px; }

/* Dedicated consent page ----------------------------------- */
.g-consent-hero {
  padding: 42px 0 8px;
  background:
    radial-gradient(700px 300px at 100% 0%, var(--g-blush-soft), transparent 62%),
    var(--g-cream);
}
.g-consent-hero__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--g-orange-text);
  font-weight: 750;
}
.g-consent-hero__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.g-consent-hero__logo { width: 150px; height: auto; }
.g-consent-hero h1 {
  margin: 5px 0 10px;
  color: var(--g-brown);
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  text-wrap: balance;
}
.g-consent-hero__inner p:last-child {
  margin: 0;
  color: var(--g-brown-soft);
  font-size: 17px;
  line-height: 1.65;
}
.g-consent-hero__notice {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 15px 18px;
  color: var(--g-brown-soft);
  background: #fff;
  border: 1px solid var(--g-blush-line);
  border-radius: 14px;
  box-shadow: var(--g-shadow-sm);
}
.g-consent-hero__notice a { color: var(--g-orange-text); font-weight: 750; }
.groom-consent-page #g-form { padding-top: 46px; }

/* Feature cards (welcome) ----------------------------------- */
.g-cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.g-fcard {
  background: #fff;
  border: 1px solid var(--g-line);
  border-top: 4px solid var(--g-blush-line);
  border-radius: var(--g-radius);
  padding: 26px 22px;
  box-shadow: var(--g-shadow-sm);
}
.g-fcard .g-ic {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 8px;
}
.g-fcard h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--g-orange-text);
  margin: 0 0 8px;
}
.g-fcard p { margin: 0; color: var(--g-brown-soft); line-height: 1.6; font-size: 15px; }

/* Opening hours --------------------------------------------- */
.g-hours {
  list-style: none;
  margin: 30px auto 0;
  padding: 8px;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  box-shadow: var(--g-shadow-sm);
}
.g-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
}
.g-hours__row + .g-hours__row { border-top: 1px solid var(--g-line); }
.g-hours__day {
  font-weight: 700;
  color: var(--g-brown);
  font-size: 16px;
}
.g-hours__time {
  color: var(--g-orange-text);
  font-weight: 700;
  font-size: 16px;
}
.g-hours__row--closed .g-hours__day,
.g-hours__row--closed .g-hours__time {
  color: var(--g-brown-soft);
  font-weight: 600;
}

/* Pricing --------------------------------------------------- */
.g-price-intro {
  text-align: center;
  max-width: 66ch;
  margin: 0 auto 22px;
  color: var(--g-brown-soft);
}
/* Desktop table */
.g-price-table-wrap { overflow: visible; }
.g-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  overflow: hidden;
  box-shadow: var(--g-shadow-sm);
}
.g-price-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 800;
  color: var(--g-brown);
  padding: 0 0 10px;
}
.g-price-table th,
.g-price-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--g-line);
  font-size: 15px;
}
.g-price-table thead th {
  background: var(--g-btn);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.g-price-table thead th:first-child { text-align: left; }
.g-price-table tbody th {
  text-align: left;
  font-weight: 800;
  color: var(--g-brown);
  background: var(--g-cream);
}
.g-price-table tbody th small {
  display: block;
  font-weight: 600;
  color: var(--g-brown-soft);
  font-size: 12.5px;
  margin-top: 2px;
}
.g-price-table tbody tr:nth-child(even) td { background: #fffdfa; }
.g-price-table tbody tr:last-child th,
.g-price-table tbody tr:last-child td { border-bottom: 0; }
.g-price-table td .g-from { display: block; font-size: 11px; color: var(--g-brown-soft); text-transform: uppercase; letter-spacing: 0.5px; }
.g-price-table td .g-amt { font-weight: 800; color: var(--g-brown); font-size: 17px; }

.g-price-consult {
  background: var(--g-blush-soft);
  border: 1px solid var(--g-blush-line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--g-brown-soft);
  text-align: center;
}

/* Mobile pricing accordion cards */
.g-price-cards { display: none; }
.g-pcard {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--g-shadow-sm);
}
.g-pcard > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  color: var(--g-brown);
}
.g-pcard > summary::-webkit-details-marker { display: none; }
.g-pcard > summary .g-pcard__sub {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--g-brown-soft);
  margin-top: 3px;
}
.g-pcard > summary .g-chev {
  flex: 0 0 auto;
  color: var(--g-orange);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.g-pcard[open] > summary .g-chev { transform: rotate(180deg); }
.g-pcard__body { padding: 0 18px 8px; }
.g-prow {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--g-line);
  font-size: 15.5px;
}
.g-prow dt { color: var(--g-brown-soft); font-weight: 650; }
.g-prow dd { margin: 0; font-weight: 800; color: var(--g-brown); }

/* Spa add-ons + notice */
.g-two {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 26px;
  align-items: start;
}
.g-spa {
  background: #fff;
  border: 1px solid var(--g-blush-line);
  border-radius: var(--g-radius);
  padding: 24px;
  box-shadow: var(--g-shadow-sm);
}
.g-spa h3 { margin: 0 0 14px; color: var(--g-brown); font-size: 20px; }
.g-spa dl { margin: 0; }
.g-spa .g-prow:first-of-type { border-top: 0; }
.g-spa__note { margin: 14px 0 0; font-size: 14px; color: var(--g-brown-soft); font-style: italic; }
.g-pnotice {
  background: var(--g-cream);
  border: 1px solid var(--g-line);
  border-left: 5px solid var(--g-orange);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--g-brown-soft);
  font-size: 15px;
  line-height: 1.6;
}
.g-pnotice strong { color: var(--g-brown); }

/* Products -------------------------------------------------- */
.g-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 30px;
}
/* Professional check-bullet lists */
.g-blist-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--g-orange-text);
  margin: 0 0 12px;
}
.g-blist { list-style: none; margin: 0; padding: 0; }
.g-blist li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--g-brown-soft);
  line-height: 1.55;
  font-size: 15.5px;
  border-top: 1px solid var(--g-line);
}
.g-blist li:first-child { border-top: 0; }
.g-blist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--g-blush-soft);
  border: 1px solid var(--g-blush-line);
  background-image: linear-gradient(transparent, transparent);
}
.g-blist li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 11px;
  font-size: 12px;
  font-weight: 900;
  color: var(--g-btn);
  line-height: 20px;
}
.g-panels2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}
.g-panel {
  background: #fff;
  border: 1px solid var(--g-line);
  border-top: 4px solid var(--g-blush-line);
  border-radius: var(--g-radius);
  padding: 24px;
  box-shadow: var(--g-shadow-sm);
}
.g-panel h3 { margin: 0 0 4px; font-size: 18px; color: var(--g-brown); }
.g-imgph {
  border-radius: var(--g-radius);
  border: 2px dashed var(--g-blush-line);
  background: var(--g-blush-soft);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--g-brown-soft);
  font-size: 14px;
}
.g-imgph span { max-width: 26ch; }
/* Real photographs */
.g-photo { margin: 0; }
.g-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--g-radius);
  box-shadow: var(--g-shadow-md);
  background: #fff;
}
.g-photo figcaption {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--g-brown-soft);
  text-align: center;
}
.g-salon { margin: 28px auto 0; max-width: 940px; }
.g-salon img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--g-radius);
  box-shadow: var(--g-shadow-md);
}
.g-cards5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 26px 0;
}
.g-bcard {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: var(--g-shadow-sm);
}
.g-bcard .g-ic { font-size: 22px; }
.g-bcard h3 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--g-orange-text);
  margin: 8px 0 6px;
}
.g-bcard p { margin: 0; font-size: 14px; color: var(--g-brown-soft); line-height: 1.55; }
.g-disclaimer {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--g-brown-soft);
  background: var(--g-cream);
  border: 1px solid var(--g-line);
  border-radius: 14px;
  padding: 14px 18px;
  line-height: 1.6;
}

/* Accordions (policies / info / FAQ) ------------------------ */
.g-acc {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--g-shadow-sm);
}
.g-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
  font-size: 17px;
  color: var(--g-brown);
}
.g-acc > summary::-webkit-details-marker { display: none; }
.g-acc > summary .g-chev {
  flex: 0 0 auto;
  color: var(--g-orange);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.g-acc[open] > summary .g-chev { transform: rotate(180deg); }
.g-acc__body { padding: 0 20px 20px; }
.g-acc__body p { color: var(--g-brown-soft); line-height: 1.7; margin: 0 0 12px; }
.g-acc__body p:last-child { margin-bottom: 0; }
.g-acc__body ul { margin: 0; padding-left: 20px; color: var(--g-brown-soft); line-height: 1.7; }
.g-acc__body ul li { margin-bottom: 8px; }
.g-consent-callout {
  background: var(--g-blush-soft);
  border: 1px solid var(--g-blush-line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--g-brown-soft);
}
.g-consent-callout strong { color: var(--g-brown); }

/* Form ------------------------------------------------------ */
.g-formwrap {
  background: #fff;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow-md);
  padding: 30px;
  max-width: 860px;
  margin: 0 auto;
}
.g-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  counter-reset: gstep;
  list-style: none;
  padding: 0;
}
.g-stepper li {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11.5px;
  font-weight: 750;
  color: var(--g-brown-soft);
  text-align: center;
  padding: 8px 6px;
  border-radius: 10px;
  background: var(--g-cream-2);
  border: 1px solid var(--g-line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-stepper li.is-active {
  background: var(--g-orange);
  color: #fff;
  border-color: var(--g-orange);
}
.g-stepper li.is-done {
  background: var(--g-blush-soft);
  color: var(--g-orange-text);
  border-color: var(--g-blush-line);
}

.g-step { display: none; }
.g-step.is-active { display: block; animation: gfade 0.2s ease; }
@keyframes gfade { from { opacity: 0; } to { opacity: 1; } }
.g-step h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--g-brown);
}
.g-step__hint { margin: 0 0 18px; color: var(--g-brown-soft); font-size: 14.5px; }

.g-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.g-field { margin-bottom: 16px; }
.g-field--full { grid-column: 1 / -1; }
.g-field label,
.g-fieldset > legend {
  display: block;
  font-weight: 750;
  color: var(--g-brown);
  font-size: 14.5px;
  margin-bottom: 6px;
}
.g-req { color: var(--g-orange-text); }
.g-field input,
.g-field select,
.g-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--g-line);
  background: #fffdfb;
  font: inherit;
  color: var(--g-ink);
  min-height: 48px;
}
.g-field textarea { min-height: 96px; resize: vertical; }
.g-field input:focus,
.g-field select:focus,
.g-field textarea:focus {
  outline: 3px solid rgba(229,114,0,0.35);
  outline-offset: 1px;
  border-color: var(--g-orange);
}
.g-field .g-help { font-size: 12.5px; color: var(--g-brown-soft); margin-top: 5px; }
.g-field input[aria-invalid="true"],
.g-field select[aria-invalid="true"],
.g-field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fff6f5;
}
.g-error {
  color: #a5281b;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 5px;
  display: none;
}
.g-error.is-shown { display: block; }

.g-fieldset {
  border: 1px solid var(--g-line);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 16px;
}
.g-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--g-brown-soft);
  cursor: pointer;
}
.g-choice input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--g-orange); }
.g-choice span { line-height: 1.5; }

/* Service selection cards */
.g-svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.g-svc-opt { position: relative; }
.g-svc-opt input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.g-svc-opt label {
  display: block;
  border: 1.5px solid var(--g-line);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--g-brown);
  background: #fffdfb;
  height: 100%;
  transition: border-color 0.15s, background 0.15s;
  margin: 0;
}
.g-svc-opt label small { display: block; font-weight: 600; color: var(--g-brown-soft); font-size: 12.5px; margin-top: 4px; }
.g-svc-opt input:checked + label {
  border-color: var(--g-orange);
  background: var(--g-blush-soft);
  box-shadow: 0 0 0 3px rgba(229,114,0,0.14);
}
.g-svc-opt input:focus-visible + label { outline: 3px solid rgba(229,114,0,0.45); outline-offset: 2px; }

.g-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
}

.g-navrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.g-navrow .g-spacer { flex: 1; }
.g-navrow__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

/* Repeatable dog step — subsection headings + counter */
.g-dogsub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--g-orange-text);
  margin: 28px 0 14px;
  padding-top: 18px;
  border-top: 1px solid var(--g-line);
}
.g-dogcount { font-weight: 800; color: var(--g-brown); }

.g-privacy {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--g-brown-soft);
  line-height: 1.6;
  text-align: center;
}

/* Form status / success */
.g-formstatus {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}
.g-formstatus.is-error {
  display: block;
  background: #fdecea;
  border: 1px solid #f5c6c0;
  color: #a5281b;
}
.g-success {
  display: none;
  text-align: center;
  background: #fff;
  border: 1px solid var(--g-blush-line);
  border-radius: var(--g-radius-lg);
  box-shadow: var(--g-shadow-md);
  padding: 44px 30px;
  max-width: 720px;
  margin: 0 auto;
}
.g-success.is-shown { display: block; animation: gfade 0.25s ease; }
.g-success .g-ic { font-size: 46px; display: block; margin-bottom: 8px; }
.g-success h3 { font-size: 24px; color: var(--g-brown); margin: 0 0 12px; }
.g-success p { color: var(--g-brown-soft); line-height: 1.7; max-width: 52ch; margin: 0 auto 18px; }

.g-spin {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gspin 0.7s linear infinite;
  display: inline-block;
}
@keyframes gspin { to { transform: rotate(360deg); } }
.g-btn[aria-busy="true"] { opacity: 0.85; pointer-events: none; }

/* Final CTA ------------------------------------------------- */
.g-finalcta {
  background: linear-gradient(135deg, var(--g-btn) 0%, var(--g-btn-hover) 100%);
  color: #fff;
  text-align: center;
  padding: 74px 0 80px;
}
.g-finalcta h2 { color: #fff; margin: 0 auto 12px; max-width: 22ch; font-size: clamp(26px, 3.4vw, 38px); }
.g-finalcta p { max-width: 54ch; margin: 0 auto 24px; font-size: 17px; }
.g-finalcta .g-hero__cta { margin-bottom: 18px; }
.g-finalcta .g-btn--primary { background: #fff; color: var(--g-orange-text); }
.g-finalcta .g-btn--primary:hover { background: var(--g-cream); }
.g-finalcta .g-btn--secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.6); }
.g-finalcta .g-btn--secondary:hover { background: rgba(255,255,255,0.2); }
.g-finalcta__contact { font-size: 14.5px; }
.g-finalcta__contact a { color: #fff; text-decoration: underline; font-weight: 700; }

/* Small print / anchor offset for sticky header ------------- */
.g-anchor { scroll-margin-top: 90px; }

/* Responsive ------------------------------------------------ */
@media (max-width: 960px) {
  .g-cards5 { grid-template-columns: repeat(3, 1fr); }
  .g-media { grid-template-columns: 1fr; }
  .g-two { grid-template-columns: 1fr; }
  .g-svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .g-section { padding: 52px 0; }
  .g-cards3 { grid-template-columns: 1fr; }
  .g-panels2 { grid-template-columns: 1fr; }
  .g-cards5 { grid-template-columns: 1fr 1fr; }
  .g-grid2 { grid-template-columns: 1fr; }
  .g-addon-grid { grid-template-columns: 1fr; }
  .g-formwrap { padding: 22px 18px; }
  .g-hero__cta { flex-direction: column; align-items: stretch; }
  .g-hero__cta .g-btn { width: 100%; }
  .g-availability { padding-top: 24px; }
  .g-availability__card { grid-template-columns: 1fr; gap: 18px; padding: 26px 20px; }
  .g-availability__icon { width: 58px; height: 58px; border-radius: 16px; font-size: 26px; }
  .g-availability .g-btn { width: 100%; }
  .g-consent-hero { padding-top: 28px; }
  .g-consent-hero__inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .g-consent-hero__logo { width: 125px; margin: 0 auto; }
  .g-consent-hero__notice { margin-top: 22px; }
  .g-finalcta .g-hero__cta { flex-direction: column; align-items: stretch; }
  /* Stack the step navigation so buttons are full-width and easy to tap */
  .g-navrow { flex-direction: column; align-items: stretch; }
  .g-navrow__right { flex-direction: column; align-items: stretch; }
  .g-navrow .g-btn { width: 100%; }
  /* Swap desktop table for stacked accordion cards */
  .g-price-table-wrap { display: none; }
  .g-price-cards { display: block; }
  .g-stepper li { flex-basis: 30%; }
}
@media (max-width: 430px) {
  .g-cards5 { grid-template-columns: 1fr; }
  .g-svc-cards { grid-template-columns: 1fr; }
}

/* Reduced motion ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .g-btn, .g-step, .g-success, .g-chev, .g-spin { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
