/* ==========================================================================
   Flora's Nightingale Staffing - style.css
   Tokens, base, sections (desktop-first), then mobile (≤768px) and the
   header squeeze (769-1000px).
   ========================================================================== */

/* ---------- Design tokens ---------- */

:root {
  --red: #E93E33;            /* hero bg, contact bg, buttons, accent dots */
  --red-dark: #C9291F;       /* button hover */
  --red-deep: #A82418;       /* serif headings on light, stat figures, CTA card bg */
  --maroon: #7A1E16;         /* logo wordmark */
  --yellow: #FCF731;         /* accent card, eyebrows on dark, hover fills */
  --cream-page: #FFFCF7;     /* default page background */
  --cream-panel: #FDF6EC;    /* stat band, service cards, alt sections */
  --cream-on-red: #FFF8EE;   /* text and buttons on red */
  --border-light: #EFE0CD;   /* card and divider borders */
  --border-header: #E8D9C6;  /* header underline */
  --border-input: #E0CDB8;   /* form field borders */
  --ink: #241512;            /* body headings, dark section bg */
  --ink-deepest: #1A0F0C;    /* footer bg */
  --body-text: #5C4A43;      /* lead paragraphs */
  --muted-text: #6B5A54;     /* card body, captions */
  --muted-label: #8A7568;    /* citations, small caps labels */
  --text-on-dark: #F7EDE1;   /* areas section text */
  --nav-ink: #4A3830;        /* nav links, form labels */

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, blockquote, ol { margin: 0; }

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

a { color: var(--red-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

button { font-family: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

a, button, input, textarea {
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--cream-on-red);
}

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Sticky header clearance for anchored sections */
#top, #care, #about, #areas, #contact { scroll-margin-top: 80px; }

/* ---------- Utilities ---------- */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow-red { color: var(--red-dark); }
.eyebrow-yellow { color: var(--yellow); }

.only-mobile { display: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream-on-red);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
}

/* ==========================================================================
   1. Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 236, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-header);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--maroon);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-label);
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--nav-ink);
  text-decoration: none;
  white-space: nowrap;
}

.btn-header {
  background: var(--red);
  color: var(--cream-on-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn-header:hover { background: var(--red-dark); color: var(--cream-on-red); }

.menu-btn { display: none; }

.nav-mobile { display: none; }

/* ==========================================================================
   2. Hero
   ========================================================================== */

.hero {
  background: var(--red);
  color: var(--cream-on-red);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  padding-top: 76px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 26px;
  color: var(--yellow);
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-body {
  margin-top: 30px;
  font-size: 20.5px;
  line-height: 1.55;
  max-width: 30em;
  color: var(--cream-on-red); /* full opacity - the faded rgba failed contrast on the red */
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 38px;
}

.btn-hero-primary {
  background: var(--cream-on-red);
  color: var(--red-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 21px;
  padding: 20px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(120, 20, 10, 0.22);
}

.btn-hero-primary .tel-glyph { font-size: 19px; }

.btn-hero-primary:hover { background: var(--yellow); color: var(--ink); }

.btn-hero-secondary {
  color: var(--cream-on-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 20px 24px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 248, 238, 0.45);
}

.btn-hero-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-reassure {
  margin-top: 22px;
  font-size: 15.5px;
  color: var(--cream-on-red); /* full opacity - 0.72 alpha was 2.62:1 on the red */
}

.hero-media { position: relative; }

.hero-accent {
  position: absolute;
  inset: -14px -14px 10% auto;
  width: 82%;
  background: var(--yellow);
  border-radius: 8px;
  transform: rotate(2.4deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 55% 35%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 24px 60px rgba(90, 14, 6, 0.35);
}

.hero-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--cream-on-red); /* full opacity - 0.78 alpha was 2.85:1 on the red */
  line-height: 1.5;
}

/* ==========================================================================
   3. Stat band
   ========================================================================== */

.stats {
  background: var(--cream-panel);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-figure {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  color: var(--red-deep);
}

.stat-label {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--muted-text);
  line-height: 1.45;
}

/* ==========================================================================
   4. Services
   ========================================================================== */

.services { background: var(--cream-page); }

.services-container {
  padding-top: 96px;
  padding-bottom: 40px;
}

.services-intro { max-width: 46em; }

.services-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.services-body {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--body-text);
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.service-card {
  background: var(--cream-panel);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 26px 24px 28px;
}

.service-card .dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.service-card p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted-text);
}

.services-cta-card {
  background: var(--red-deep);
  border: 1px solid var(--red-deep);
  border-radius: 10px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-cta-h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: var(--cream-on-red);
}

.services-cta-body {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255, 248, 238, 0.82);
}

.services-cta-link {
  margin-top: 22px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
}

.services-cta-link:hover { color: var(--yellow); text-decoration: underline; }

/* ==========================================================================
   5. Photo strip
   ========================================================================== */

.strip-container {
  padding-top: 56px;
  padding-bottom: 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ==========================================================================
   6. About Flora
   ========================================================================== */

.about { background: var(--cream-page); }

.about-grid {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-note {
  background: var(--cream-panel);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 18px;
}

.about-note p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted-text);
}

.about-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.about-body > p {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--body-text);
  text-wrap: pretty;
}

.about-body > p:first-child { margin-top: 26px; }

.pull-quote {
  margin-top: 40px;
  padding-left: 26px;
  border-left: 3px solid var(--yellow);
}

.pull-quote p {
  margin-top: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--red-deep);
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-label);
  font-weight: 600;
}

/* ==========================================================================
   7. How it starts
   ========================================================================== */

.steps {
  background: var(--cream-panel);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.steps-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.steps-body {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--body-text);
  text-wrap: pretty;
}

.btn-steps {
  display: inline-block;
  margin-top: 28px;
  background: var(--red);
  color: var(--cream-on-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn-steps:hover { background: var(--red-dark); color: var(--cream-on-red); }

.steps-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.steps-list li:last-child { border-bottom: none; }

.step-num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--red);
}

.steps-list h3 {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.steps-list li p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted-text);
}

/* ==========================================================================
   8. Gallery
   ========================================================================== */

.gallery { background: var(--cream-page); }

.gallery-container {
  padding-top: 92px;
  padding-bottom: 92px;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.gallery-head-left { max-width: 34em; }

.gallery-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.gallery-head-note {
  max-width: 22em;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.g-p12 { grid-column: span 2; }
.g-p12 img { aspect-ratio: 3 / 4; }

.g-p28 { grid-column: span 4; }
.g-p28 img { aspect-ratio: 8 / 4.5; }

.g-p27, .g-p07, .g-p33, .g-p20 { grid-column: span 3; }
.g-p27 img, .g-p07 img, .g-p33 img, .g-p20 img { aspect-ratio: 4 / 3; }

/* ==========================================================================
   9. Service areas
   ========================================================================== */

.areas {
  background: var(--ink);
  color: var(--text-on-dark);
}

.areas-grid {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.areas-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.areas-body {
  margin-top: 24px;
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(247, 237, 225, 0.76);
  text-wrap: pretty;
}

.areas-rows { display: grid; gap: 0; }

.area-row {
  padding: 26px 0;
  border-top: 1px solid rgba(247, 237, 225, 0.18);
}

.area-row:last-child { border-bottom: 1px solid rgba(247, 237, 225, 0.18); }

.area-row h3 {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 700;
}

.area-row p {
  font-size: 16.5px;
  line-height: 1.5;
  color: rgba(247, 237, 225, 0.66);
}

/* ==========================================================================
   10. Contact
   ========================================================================== */

.contact {
  background: var(--red);
  color: var(--cream-on-red);
}

.contact-grid {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}

.contact-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.contact-body {
  margin-top: 26px;
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--cream-on-red); /* full opacity - the faded rgba failed contrast on the red */
  max-width: 26em;
  text-wrap: pretty;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  background: var(--cream-on-red);
  color: var(--red-deep);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  padding: 20px 34px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(90, 14, 6, 0.25);
}

.btn-contact:hover { background: var(--yellow); color: var(--ink); }

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  max-width: 30em;
}

.detail-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: baseline;
}

.detail-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
}

.detail-value {
  font-size: 17.5px;
  line-height: 1.5;
}

.detail-email {
  color: var(--cream-on-red);
  font-size: 17.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 248, 238, 0.4);
  justify-self: start;
}

.detail-email:hover { color: var(--yellow); }

/* Inquiry form */

.inquiry {
  background: var(--cream-on-red);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(90, 14, 6, 0.22);
}

.inquiry-h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  color: var(--ink);
}

.inquiry-sub {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted-text);
}

.inquiry-fields {
  display: grid;
  gap: 16px;
}

.inquiry-fields label {
  display: grid;
  gap: 7px;
}

.inquiry-fields label > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-ink);
}

.inquiry-fields input,
.inquiry-fields textarea {
  font-family: var(--sans);
  font-size: 17px;
  padding: 13px 15px;
  border: 1.5px solid var(--border-input);
  border-radius: 8px;
  background: var(--cream-page);
  color: var(--ink);
  width: 100%;
}

.inquiry-fields textarea { resize: vertical; }

/* Honeypot - visually hidden, never shown */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  margin-top: 6px;
  background: var(--red);
  color: var(--cream-on-red);
  border: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px;
  border-radius: 999px;
  cursor: pointer;
}

.form-submit:hover { background: var(--red-dark); }

.form-submit:disabled {
  background: var(--red-deep);
  cursor: default;
}

.form-msg {
  margin-top: 4px;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--red-deep);
}

.form-msg a {
  color: var(--red-deep);
  text-decoration: underline;
}

/* Success confirmation (set by site.js) - not the error red */
.form-msg-ok { color: var(--ink); }

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
  background: var(--ink-deepest);
  color: rgba(247, 237, 225, 0.6);
}

.footer-inner {
  padding-top: 46px;
  padding-bottom: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: block;
}

.footer-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(247, 237, 225, 0.8);
}

.footer-sub { color: rgba(247, 237, 225, 0.5); }

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 15px;
}

.footer-links a {
  color: rgba(247, 237, 225, 0.75);
  text-decoration: none;
}

.footer-links a:hover { color: var(--yellow); }

/* ==========================================================================
   Mobile sticky call bar (shown ≤768px)
   ========================================================================== */

.call-bar { display: none; }

/* ==========================================================================
   Header squeeze - 769px to 1000px (spec "Known constraint")
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1000px) {
  .header-inner { gap: 12px; }
  .nav-desktop { gap: 12px; }
  .nav-link { font-size: 14.5px; }
  .btn-header { font-size: 14.5px; padding: 11px 16px; }
}

/* ==========================================================================
   Mobile - ≤768px
   ========================================================================== */

@media (max-width: 768px) {

  body { padding-bottom: 76px; }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .only-desktop { display: none; }
  .only-mobile { display: inline; }

  /* ----- Header ----- */

  .site-header { background: rgba(253, 246, 236, 0.94); }

  .header-inner {
    padding: 10px 16px;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .brand { min-height: 48px; gap: 10px; min-width: 0; }

  .brand-mark { width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0; }

  .brand-text { line-height: 1.12; min-width: 0; }

  .brand-name { font-size: 17px; }

  .brand-sub { font-size: 9px; letter-spacing: 0.15em; }

  .nav-desktop { display: none; }

  .menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1.5px solid var(--border-input);
    background: var(--cream-page);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
  }

  .menu-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
  }

  .nav-mobile {
    display: grid;
    border-top: 1px solid var(--border-header);
    background: var(--cream-panel);
  }

  .nav-mobile a {
    padding: 17px 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--nav-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-mobile a:last-child { border-bottom: none; }

  /* ----- Hero ----- */

  .hero-grid {
    padding-top: 40px;
    padding-bottom: 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-left, .hero-right { display: contents; }

  .hero-copy { order: 1; }
  .hero-media { order: 2; margin-top: 30px; }
  .hero-caption { order: 3; margin-top: 14px; font-size: 13.5px; }
  .hero-actions { order: 4; margin-top: 26px; }
  .hero-reassure {
    order: 5;
    margin-top: 14px;
    font-size: 14.5px;
    text-align: center;
  }

  .hero-eyebrow { margin-bottom: 18px; }

  .hero-h1 { font-size: 42px; line-height: 1.06; }

  .hero-body { margin-top: 20px; font-size: 17.5px; }

  .hero-accent {
    inset: -8px -8px auto auto;
    width: 84%;
    height: 94%;
    transform: rotate(2.2deg);
  }

  .hero-media img { box-shadow: 0 16px 40px rgba(90, 14, 6, 0.32); }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    min-height: 58px;
    padding: 14px 20px;
    box-shadow: 0 10px 26px rgba(120, 20, 10, 0.22);
  }

  .btn-hero-primary .tel-glyph { font-size: 18px; }

  .btn-hero-secondary { display: none; }

  /* ----- Stat band ----- */

  .stats-grid {
    padding-top: 26px;
    padding-bottom: 26px;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }

  .stat-figure { font-size: 32px; }

  .stat-label { margin-top: 6px; font-size: 14.5px; line-height: 1.4; }

  /* ----- Services: cards become a bordered list ----- */

  .services-container {
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .services-h2 { font-size: 33px; line-height: 1.12; }

  .services-body { margin-top: 18px; font-size: 17px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-light);
  }

  .service-card {
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 12px;
  }

  .service-card .dot {
    grid-column: 1;
    grid-row: 1;
    width: 8px;
    height: 8px;
    margin: 8px 0 0;
  }

  .service-card h3 {
    grid-column: 2;
    margin-bottom: 4px;
    font-size: 17.5px;
  }

  .service-card p {
    grid-column: 2;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .services-cta-card {
    margin-top: 26px;
    border-radius: 10px;
    padding: 24px 20px;
  }

  .services-cta-h3 { font-size: 24px; }

  .services-cta-body { font-size: 16px; line-height: 1.5; }

  .services-cta-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 999px;
  }

  .services-cta-link:hover {
    background: var(--cream-on-red);
    color: var(--ink);
    text-decoration: none;
  }

  /* ----- Photo strip ----- */

  .strip-container { padding-top: 0; }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* ----- About ----- */

  .about-grid {
    padding-top: 52px;
    padding-bottom: 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-left, .about-right { display: contents; }

  .about-head { order: 1; }
  .about-media { order: 2; margin-top: 24px; }
  .about-body { order: 3; }
  .about-note { order: 4; margin-top: 28px; padding: 20px; }

  .about-h2 { font-size: 33px; line-height: 1.12; }

  .about-media img {
    aspect-ratio: 4 / 3;
    object-position: 50% 35%;
  }

  .about-body > p {
    margin-top: 16px;
    font-size: 17px;
  }

  .about-body > p:first-child { margin-top: 24px; }

  .about-note p { font-size: 15.5px; }

  .pull-quote { margin-top: 30px; padding-left: 20px; }

  .pull-quote p { margin-top: 0; font-size: 25px; }

  .pull-quote cite { margin-top: 12px; font-size: 13px; }

  /* ----- How it starts ----- */

  .steps-grid {
    padding-top: 52px;
    padding-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps-h2 { font-size: 33px; line-height: 1.12; }

  .steps-body { margin-top: 18px; font-size: 17px; }

  .btn-steps { display: none; }

  .steps-list {
    margin-top: 28px;
    gap: 0;
    border-top: 1px solid var(--border-light);
  }

  .steps-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .steps-list li:last-child { border-bottom: 1px solid var(--border-light); }

  .step-num { font-size: 26px; }

  .steps-list h3 { margin-bottom: 5px; font-size: 17.5px; }

  .steps-list li p { font-size: 15.5px; line-height: 1.5; }

  /* ----- Gallery ----- */

  .gallery-container {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .gallery-head {
    display: block;
    margin-bottom: 24px;
  }

  .gallery-h2 { font-size: 33px; line-height: 1.12; margin-bottom: 12px; }

  .gallery-head-note { max-width: none; font-size: 16px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .g-p12 { grid-column: auto; order: 1; }
  .g-p12 img { aspect-ratio: 3 / 4; }

  .g-p07 { grid-column: auto; order: 2; }
  .g-p07 img { aspect-ratio: 3 / 4; }

  .g-p28 { grid-column: span 2; order: 3; }
  .g-p28 img { aspect-ratio: 16 / 9; }

  .g-p33 { grid-column: auto; order: 4; }
  .g-p33 img { aspect-ratio: 1 / 1; }

  .g-p20 { grid-column: auto; order: 5; }
  .g-p20 img { aspect-ratio: 1 / 1; }

  .g-p27 { grid-column: span 2; order: 6; }
  .g-p27 img { aspect-ratio: 16 / 10; }

  /* ----- Service areas ----- */

  .areas-grid {
    padding-top: 52px;
    padding-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .areas-h2 { font-size: 33px; line-height: 1.12; }

  .areas-body { margin-top: 18px; font-size: 17px; }

  .areas-rows { margin-top: 26px; }

  .area-row { padding: 20px 0; }

  .area-row h3 { margin-bottom: 4px; font-size: 19px; }

  .area-row p { font-size: 15.5px; }

  /* ----- Contact ----- */

  .contact-grid {
    padding-top: 52px;
    padding-bottom: 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-left { display: contents; }

  .contact-lead { order: 1; }
  .inquiry { order: 2; margin-top: 30px; }
  .contact-details { order: 3; margin-top: 32px; }

  .contact-h2 { font-size: 38px; line-height: 1.06; }

  .contact-body { margin-top: 20px; font-size: 17.5px; max-width: none; }

  .btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    font-size: 30px;
    min-height: 66px;
    padding: 12px 24px;
    box-shadow: 0 12px 30px rgba(90, 14, 6, 0.25);
  }

  .contact-details { gap: 16px; max-width: none; }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .detail-label { font-size: 11px; }

  .detail-value { font-size: 16.5px; }

  .detail-email {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-size: 16.5px;
  }

  /* ----- Form ----- */

  .inquiry { padding: 24px 20px; box-shadow: 0 16px 40px rgba(90, 14, 6, 0.22); }

  .inquiry-h3 { margin-bottom: 5px; font-size: 24px; }

  .inquiry-sub { margin-bottom: 20px; font-size: 15.5px; }

  .inquiry-fields { gap: 14px; }

  .inquiry-fields label { gap: 6px; }

  .inquiry-fields label > span { font-size: 13.5px; }

  .inquiry-fields input {
    font-size: 16.5px;
    min-height: 50px;
    padding: 0 14px;
  }

  .inquiry-fields textarea {
    font-size: 16.5px;
    padding: 12px 14px;
  }

  .form-submit {
    margin-top: 4px;
    font-size: 17px;
    min-height: 54px;
    padding: 12px 16px;
  }

  /* Keep the fallback tel link a ≥48px tap target */
  .form-msg a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
  }

  /* ----- Footer ----- */

  .footer-inner {
    padding-top: 32px;
    padding-bottom: 32px;
    display: block;
  }

  .footer-brand { gap: 12px; }

  .footer-mark { width: 38px; height: 38px; }

  .footer-text { font-size: 14.5px; line-height: 1.45; }

  .footer-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    font-size: 14.5px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  /* ----- Sticky bottom call bar ----- */

  .call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: rgba(26, 15, 12, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: center;
  }

  .call-bar-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--cream-on-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    min-height: 54px;
    border-radius: 999px;
  }

  .call-bar-btn .tel-glyph { font-size: 17px; }

  .call-bar-btn:hover { background: var(--yellow); color: var(--ink); }
}
