/* ==========================================================================
   Health Focus Massage — site styles
   Single hand-written stylesheet that replaces the previous WordPress/Elementor
   CSS bundles. Design tokens (colours, type) mirror the original theme kit.
   ========================================================================== */

/* ---- Fonts ------------------------------------------------------------- */
@font-face {
  font-family: "Lobster";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lobster.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/opensans-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/opensans-bold.woff2") format("woff2");
}

/* ---- Design tokens ----------------------------------------------------- */
:root {
  --color-primary: #00677d;   /* teal   */
  --color-primary-dark: #00505f;
  --color-accent: #e5722b;    /* orange */
  --color-accent-dark: #c95f1f;
  --color-purple: #452a6d;
  --color-pink: #ec488b;
  --color-pink-soft: #ffbdd8;
  --color-text: #333333;
  --color-muted: #5b5b5b;
  --color-light: #fbf8ff;
  --color-white: #ffffff;

  --font-heading: "Lobster", cursive;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.07);
}

/* ---- Reset / base ------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 0.5em;
}
/* Lobster ships a single weight; a hairline same-colour stroke gives the
   headings the thicker, fuller look of the original design. */
h1, h2, h3, .eyebrow, .main-nav a, .cta-strip h3, .tile h3 {
  -webkit-text-stroke: 0.6px currentColor;
  text-stroke: 0.6px currentColor;
  -webkit-font-smoothing: auto;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 72px 0; }
.section--light { background: var(--color-light); }
.section--tint { background: linear-gradient(180deg, var(--color-light), #fff); }

.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.45rem;
  margin-bottom: 0.1em;
}
/* orange accent words inside Lobster headings, e.g. "...about <span>me</span>" */
h1 .accent, h2 .accent, h3 .accent { color: var(--color-accent); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--color-primary); }
.btn--teal { background: var(--color-primary); color: #fff; }
.btn--teal:hover { background: var(--color-primary-dark); color: #fff; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-primary);
  color: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}
.site-logo img { height: 56px; width: auto; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

.main-nav { margin-left: auto; }
.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--color-pink-soft); text-decoration: none; }

/* dropdown */
.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { display: flex; }
.submenu a {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 9px 14px;
  border-radius: 7px;
}
.submenu a:hover { background: var(--color-light); color: var(--color-primary); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}
.header-phone:hover { color: #fff; text-decoration: none; }

/* caret on dropdown parent */
.has-submenu > a::after {
  content: "\25be";
  font-size: 0.7em;
  margin-left: 5px;
  vertical-align: middle;
}

/* ---- Page banner (interior-page hero) ---------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.page-banner.has-image { background: none; padding: 92px 0; }
.page-banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-banner.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 70, 84, 0.42), rgba(0, 70, 84, 0.5));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 0.2em; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); }
.breadcrumb {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { color: #fff; }

/* ---- Intro / split rows ------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split--narrow { gap: 56px; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- Service cards ----------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card .body { padding: 20px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 0.4em; }
.service-card .learn { margin-top: auto; font-weight: 700; color: var(--color-accent); }

/* ---- Benefits ---------------------------------------------------------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.benefit {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.benefit .icon {
  width: 46px;
  height: 46px;
  margin: 0 0 12px;
  color: var(--color-accent);
}
.benefit .icon svg { width: 100%; height: 100%; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.benefit p { margin: 0; font-size: 0.92rem; color: var(--color-muted); }

/* ---- Stats ------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 20px;
}
.stat:not(:first-child) { border-left: 1px solid #d8d2e6; }
.stat .icon { width: 52px; height: 52px; flex: none; color: var(--color-accent); }
.stat .icon svg { width: 100%; height: 100%; }
.stat .num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--color-primary);
  line-height: 1;
}
.stat .label { color: var(--color-muted); font-weight: 600; }

/* ---- About intro (home) ----------------------------------------------- */
.about-intro { position: relative; overflow: hidden; background: #fff; }
.about-intro .spa-decor {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 340px;
  max-width: 38%;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.about-intro .container { position: relative; z-index: 1; }
.about-intro .lead-bold { font-weight: 700; color: var(--color-text); }

/* ---- Service tiles: bento grid (image + overlay) ----------------------- */
.service-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 212px;
  gap: 18px;
}
.service-bento .tile { min-height: 0; height: 100%; }
.service-bento .tile.feat { grid-column: span 2; grid-row: span 2; }
.service-bento .tile.wide { grid-column: span 2; grid-row: span 1; }
.service-bento .tile.feat h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
/* remaining tiles default to a single 1x1 cell */

/* ---- Services page: equal 2x2 overlay-tile grid ------------------------ */
.services-section { position: relative; overflow: hidden; }
.services-section .deco {
  position: absolute;
  bottom: 0;
  left: -28px;
  width: 280px;
  max-width: 24%;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.services-section .container { position: relative; z-index: 1; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-grid .tile { min-height: 340px; }
.service-grid .tile::after {
  background: linear-gradient(180deg, rgba(0, 103, 125, 0.5) 0%, rgba(0, 96, 116, 0.62) 55%, rgba(0, 78, 94, 0.85) 100%);
}
.service-grid .tile .tile-body { padding: 28px 32px 30px; }
.service-grid .tile h3 { font-size: clamp(1.55rem, 2.4vw, 2.05rem); margin-bottom: 8px; }

/* ---- Service detail page (sidebar + main) ------------------------------ */
.breadcrumb--dark {
  color: var(--color-muted);
  margin-bottom: 26px;
}
.breadcrumb--dark a { color: var(--color-accent); }
.breadcrumb--dark a:hover { color: var(--color-primary); }

.service-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.other-box {
  background: #fff;
  border: 1px solid #e4dfec;
  border-radius: 16px;
  overflow: hidden;
}
.other-box__head {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  padding: 14px 16px;
}
.other-box__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.pill {
  display: block;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 14px 18px;
  border-radius: 999px;
}
.pill:hover { background: var(--color-accent-dark); color: #fff; text-decoration: none; }

.relief-box {
  margin-top: 30px;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary) 0%, #1e7184 38%, var(--color-accent) 100%);
}
.relief-photo {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 255, 255, 0.3);
}
.relief-box h3 { color: #fff; font-size: 1.9rem; margin-bottom: 0.15em; }
.relief-phone { margin: 0; }
.relief-phone a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}
.relief-phone a:hover { color: #fff; text-decoration: none; }

.service-main .service-hero {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.service-heading { margin-bottom: 0.4em; }
.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.service-gallery img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-sm); }
.bullet-list { margin: 0; padding-left: 1.25em; }
.bullet-list li { margin-bottom: 9px; }

@media (max-width: 860px) {
  .service-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-sidebar { order: 2; }
  .relief-photo { width: 160px; height: 160px; }
}

/* ---- Book squeeze page ------------------------------------------------- */
.squeeze-header {
  background: var(--color-primary);
  text-align: center;
  padding: 18px 20px;
}
.squeeze-header img { height: 60px; width: auto; display: inline-block; }

.squeeze-footer {
  border-top: 1px solid #ece8f2;
  padding: 22px 0;
  text-align: center;
}
.squeeze-footer p { margin: 0; color: var(--color-muted); font-size: 0.85rem; }
.squeeze-footer a { color: var(--color-accent); }

.book-hero { text-align: center; padding: 48px 20px 8px; }
.book-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0; }

.book-section { padding: 24px 0 56px; }
.book-container { max-width: 1000px; }

.book-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: 22px;
  padding: clamp(28px, 5vw, 52px);
}
.book-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
}
.book-card .field { margin-bottom: 28px; }
.book-card .form-row .field { margin-bottom: 0; }

.book-card label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: #fff;
}
.book-card .field input,
.book-card .field select,
.book-card .field textarea {
  width: 100%;
  font: inherit;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 8px 2px;
}
.book-card .field textarea { min-height: 130px; resize: vertical; }
.book-card .field input::placeholder,
.book-card .field textarea::placeholder { color: rgba(255, 255, 255, 0.6); }
.book-card .field input:focus,
.book-card .field select:focus,
.book-card .field textarea:focus {
  outline: none;
  border-bottom-color: #fff;
  box-shadow: 0 1px 0 0 #fff;
}
/* custom white caret for the select */
.book-card .field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 18px;
}
.book-card .field select option { color: #333; }
.book-card .cf-turnstile { margin: 6px 0 4px; }
.book-card .form-status { color: #ffe0cc; min-height: 1em; }
.book-card .form-status.error { color: #ffd2c2; }
.book-send {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1rem;
  border-color: #fff;
}
.book-assist {
  text-align: center;
  margin-top: 26px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
}
.book-assist a { color: var(--color-accent); }
.book-assist a:hover { text-decoration: none; }

@media (max-width: 600px) {
  .book-card .form-row { grid-template-columns: 1fr; gap: 0; }
  .book-card .form-row .field { margin-bottom: 28px; }
}

/* ---- Utilities --------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s ease;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 80, 95, 0.88) 0%, rgba(0, 103, 125, 0.35) 55%, rgba(0, 103, 125, 0.12) 100%);
}
.tile .tile-body { position: relative; z-index: 2; padding: 22px 26px 24px; }
.tile h3 { color: #fff; margin: 0 0 6px; }
.tile .learn {
  display: inline-block;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 2px;
}
.tile:hover { text-decoration: none; }
.tile:hover img { transform: scale(1.06); }

/* ---- Benefits circle --------------------------------------------------- */
.benefits-circle {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px 26px;
  align-items: center;
  margin-top: 40px;
}
.b-center { grid-column: 2; grid-row: 1 / 3; }
.b-tl { grid-column: 1; grid-row: 1; }
.b-tr { grid-column: 3; grid-row: 1; }
.b-bl { grid-column: 1; grid-row: 2; }
.b-br { grid-column: 3; grid-row: 2; }

.benefits-center {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.benefits-center .woman { position: relative; z-index: 2; max-width: 290px; width: 100%; }
.benefits-center .ring {
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  border: 2px dashed rgba(0, 103, 125, 0.35);
  border-radius: 50%;
}
.benefits-center .petal { position: absolute; z-index: 1; width: 76px; }
.benefits-center .petal.p1 { top: 4%; left: 6%; transform: rotate(-15deg); }
.benefits-center .petal.p2 { top: 8%; right: 4%; transform: rotate(40deg); }
.benefits-center .petal.p3 { bottom: 6%; left: 2%; transform: rotate(200deg); }
.benefits-center .petal.p4 { bottom: 2%; right: 8%; transform: rotate(150deg); }

/* ---- Lists ------------------------------------------------------------- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- Fees -------------------------------------------------------------- */
.fee-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 26px;
}
.fee-card h3 { color: var(--color-accent); }
.fee-card ul { list-style: none; padding: 0; margin: 0; }
.fee-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.fee-card li:last-child { border-bottom: 0; }
.fee-card .price { font-weight: 700; color: var(--color-primary); white-space: nowrap; }

/* ---- CTA strip --------------------------------------------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--color-accent), var(--color-pink));
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 44px 28px;
}
.cta-strip h3 { color: #fff; font-size: 2rem; }
.cta-strip .phone { font-size: 1.6rem; font-weight: 700; color: #fff; }
.cta-strip .phone:hover { text-decoration: none; }

/* ---- Contact info cards ------------------------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  text-align: center;
}
.info-card h5 { color: var(--color-accent); font-size: 1.3rem; margin-bottom: 0.4em; }

/* ---- Forms ------------------------------------------------------------- */
.booking-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  font: inherit;
  padding: 13px 15px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
}
.booking-form textarea { min-height: 130px; resize: vertical; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 103, 125, 0.15);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { font-weight: 600; }
.form-status.error { color: #b3261e; }
.form-status.success { color: var(--color-primary); }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

/* ---- Confirmation page ------------------------------------------------- */
.confirm {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.confirm .daisy { width: 90px; margin: 0 auto 20px; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.site-footer h5 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.7em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.footer-logo img { height: 60px; margin-bottom: 16px; }
.social { display: flex; gap: 14px; margin-top: 12px; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.social a:hover { background: rgba(255, 255, 255, 0.15); }
.social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Skip link --------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: var(--color-primary);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Benefits: drop the circular placement, stack image then cards */
  .benefits-circle {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .b-center, .b-tl, .b-tr, .b-bl, .b-br {
    grid-column: auto;
    grid-row: auto;
  }
  .b-center { grid-column: 1 / -1; order: -1; }
  .benefits-center { min-height: 0; }
  .benefits-center .woman { max-width: 260px; }
  .about-intro .spa-decor { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle-label span {
    width: 26px; height: 3px; background: #fff; border-radius: 2px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-toggle:checked ~ .main-nav { max-height: 640px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .main-nav > ul > li { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .main-nav a { display: block; padding: 13px 24px; }
  .submenu {
    position: static;
    display: flex;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0;
  }
  .submenu a { color: rgba(255, 255, 255, 0.85); padding-left: 40px; }
  .submenu a:hover { background: rgba(0, 0, 0, 0.2); color: #fff; }
  .header-cta .header-phone { display: none; }
}

@media (max-width: 900px) {
  .service-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .service-bento .tile.feat { grid-column: span 2; grid-row: span 1; }
  .service-bento .tile.wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .service-bento { grid-template-columns: 1fr; grid-auto-rows: 185px; }
  .service-bento .tile.feat,
  .service-bento .tile.wide { grid-column: span 1; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 22px; }
  .stat:not(:first-child) { border-left: 0; }
  .benefits-circle { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
