/* ============================================================
   True North Chiropractic — style.css
   Fictional concept site by De Villa Design
   Design: Confident Structural Modern
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-variable.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:          #15283C;
  --bone:          #F4F1EB;
  --white:         #FFFFFF;
  --copper:        #B0662E;         /* accent — large text / decorative only */
  --copper-dark:   #8A4820;         /* 6.15:1 on bone — body-size text safe */
  --slate:         #41546B;         /* 6.89:1 on bone — PASS AA */
  --slate-light:   #5B738A;
  --hairline:      rgba(21,40,60,0.12);
  --hairline-pale: rgba(244,241,235,0.18);

  --ff:            'Archivo', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--ff);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--navy);
  background: var(--bone);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ── Focus Visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── 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;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--copper);
  color: var(--white);
  font-family: var(--ff);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s var(--ease-out), transform 0.12s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--copper-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--bone);
  font-family: var(--ff);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(244,241,235,0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--bone);
  background: rgba(244,241,235,0.08);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--navy);
  color: var(--bone);
  font-family: var(--ff);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s var(--ease-out), transform 0.12s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-dark:hover { background: var(--slate); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(244,241,235,0.1);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark__top {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.55);
}
.wordmark__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bone);
}

.wordmark__divider {
  width: 1px;
  height: 32px;
  background: rgba(244,241,235,0.15);
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.site-nav a {
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(244,241,235,0.7);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.site-nav a:hover {
  color: var(--bone);
  background: rgba(244,241,235,0.07);
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.header-cta .btn-primary {
  padding: 0.55rem 1.25rem;
  font-size: var(--text-sm);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ════════════════════════════════════════════════════════════
   HERO — Split Grid (not centred)
   Left rail: navy content  |  Right panel: hero image
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: var(--header-h);
}

.hero__content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
  position: relative;
}

/* Subtle vertical structural line */
.hero__content::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, rgba(176,102,46,0.6), transparent);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--copper);
}
.hero__eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero__h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.hero__h1 em {
  font-style: normal;
  color: var(--copper);
}

.hero__subheader {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(244,241,235,0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

/* $49 offer chip — the conversion engine */
.offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(176,102,46,0.15);
  border: 1px solid rgba(176,102,46,0.4);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  margin-bottom: 2.5rem;
  width: fit-content;
}

.offer-chip__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.offer-chip__badge-price {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.offer-chip__badge-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.offer-chip__text {
  display: flex;
  flex-direction: column;
}
.offer-chip__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.offer-chip__detail {
  font-size: var(--text-xs);
  color: rgba(244,241,235,0.55);
}
.offer-chip__detail s {
  opacity: 0.7;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Diagonal overlay where image meets content */
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(21,40,60,0.35) 0%,
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.trust-strip__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.5rem;
  flex: 1;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--hairline);
}

.trust-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--copper-dark);
}

.trust-item__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   SECTION COMMONS
   ════════════════════════════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-body {
  font-size: var(--text-lg);
  color: var(--slate);
  line-height: 1.65;
  max-width: 600px;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--bone);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
}

.service-card {
  padding: 2.25rem;
  position: relative;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  transition: background 0.2s var(--ease-out);
  overflow: hidden;
}

.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) { border-bottom: none; }

.service-card:hover {
  background: var(--navy);
}

.service-card:hover .service-card__num,
.service-card:hover .service-card__title,
.service-card:hover .service-card__body {
  color: var(--bone);
}

.service-card:hover .service-card__title {
  color: var(--bone);
}

.service-card:hover .service-card__icon-line {
  background: rgba(244,241,235,0.2);
}

/* Corner accent — top-left structural mark */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--copper);
  transition: height 0.3s var(--ease-out);
}
.service-card:hover::before {
  height: 100%;
}

.service-card__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(21,40,60,0.3);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.service-card__icon-line {
  width: 36px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  transition: color 0.2s;
}

.service-card__body {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.6;
  transition: color 0.2s;
}

/* ════════════════════════════════════════════════════════════
   ABOUT / WHY SECTION
   ════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--navy);
  color: var(--bone);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about__image-col {
  position: relative;
  min-height: 560px;
}

.about__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Structural overlay on image */
.about__image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    var(--navy) 100%
  );
  pointer-events: none;
}

.about__content-col {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.about__section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.about__heading {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 1.25rem;
}

.about__body {
  font-size: var(--text-base);
  color: rgba(244,241,235,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(244,241,235,0.12);
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244,241,235,0.12);
}

.about__pillar-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.about__pillar-text {
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.8);
  line-height: 1.55;
}

.about__pillar-text strong {
  color: var(--bone);
  font-weight: 600;
}

/* Team */
.about__team-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.45);
  margin-bottom: 1rem;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(244,241,235,0.04);
  border: 1px solid rgba(244,241,235,0.08);
  border-radius: var(--radius-sm);
}

.team-member__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(176,102,46,0.25);
  border: 1px solid rgba(176,102,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.05em;
}

.team-member__info {
  display: flex;
  flex-direction: column;
}

.team-member__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--bone);
  line-height: 1.3;
}

.team-member__role {
  font-size: var(--text-xs);
  color: rgba(244,241,235,0.5);
  line-height: 1.4;
}

.about__parking {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(244,241,235,0.05);
  border-left: 2px solid var(--copper);
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.7);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════════════════════ */
.testimonial-section {
  background: var(--bone);
  padding: 5rem 2rem;
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 2rem;
}

.testimonial__quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.75rem;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  line-height: 1;
  color: rgba(21,40,60,0.07);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial__divider {
  width: 24px;
  height: 1px;
  background: var(--slate-light);
}

.testimonial__person {
  font-size: var(--text-sm);
  color: var(--slate);
  font-weight: 600;
}

.testimonial__detail {
  font-size: var(--text-xs);
  color: rgba(65,84,107,0.7);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════
   CONTACT / BOOKING SECTION
   ════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--hairline);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

.contact__section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 1.25rem;
}
.contact__section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.contact__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.contact__subheading {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bone);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  color: var(--copper-dark);
}

.contact-detail__content {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(21,40,60,0.4);
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.contact-detail__value:hover { color: var(--copper-dark); }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: var(--text-sm);
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--slate);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 40%;
}

.hours-table tr:last-child td { border-bottom: none; }

/* Booking card */
.contact__booking-card {
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.booking-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.booking-card__offer {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.booking-card__price {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bone);
  line-height: 1;
}

.booking-card__was {
  font-size: var(--text-base);
  color: rgba(244,241,235,0.4);
  text-decoration: line-through;
}

.booking-card__description {
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.6);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.booking-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244,241,235,0.1);
}

.booking-card__include {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.75);
}

.booking-card__include::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(176,102,46,0.3);
  border: 1px solid rgba(176,102,46,0.5);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23B0662E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.booking-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 1rem;
  font-size: var(--text-base);
}

.booking-card__note {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: rgba(244,241,235,0.4);
  text-align: center;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(244,241,235,0.55);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(244,241,235,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244,241,235,0.08);
}

.footer__brand .wordmark__top { color: rgba(244,241,235,0.35); }
.footer__brand .wordmark__name { color: var(--bone); }
.footer__brand .wordmark { margin-bottom: 0.875rem; }

.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(244,241,235,0.45);
}

.footer__col-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.35);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.55);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--bone); }

.footer__contact-item {
  font-size: var(--text-sm);
  color: rgba(244,241,235,0.55);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.footer__contact-item a {
  color: rgba(244,241,235,0.55);
  transition: color 0.15s;
}
.footer__contact-item a:hover { color: var(--bone); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom__legal {
  font-size: var(--text-xs);
  color: rgba(244,241,235,0.3);
  line-height: 1.5;
}

.footer-bottom__credit {
  font-size: var(--text-xs);
  color: rgba(244,241,235,0.3);
}

.footer-bottom__credit a {
  color: rgba(244,241,235,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.footer-bottom__credit a:hover { color: var(--bone); }

/* ════════════════════════════════════════════════════════════
   CONCEPT PILL (fixed bottom-left)
   ════════════════════════════════════════════════════════════ */
.concept-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(21,40,60,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,241,235,0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244,241,235,0.65);
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.concept-pill:hover {
  color: var(--bone);
  border-color: rgba(244,241,235,0.3);
}

.concept-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS (respects prefers-reduced-motion via global guard)
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s var(--ease-out) forwards;
  }

  .hero__content .hero__eyebrow   { animation-delay: 0.1s; }
  .hero__content .hero__h1        { animation-delay: 0.22s; }
  .hero__content .hero__subheader { animation-delay: 0.34s; }
  .hero__content .offer-chip      { animation-delay: 0.44s; }
  .hero__content .hero__ctas      { animation-delay: 0.54s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero__image img {
    animation: imageReveal 1s var(--ease-out) 0.2s both;
  }

  @keyframes imageReveal {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 768px (tablet)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 4rem 2.5rem;
    order: 2;
  }

  .hero__content::after { display: none; }

  .hero__image {
    order: 1;
    height: 380px;
    min-height: unset;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .service-card:nth-child(3)  { border-right: none; }
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }
  .service-card:nth-child(4) { border-bottom: 1px solid var(--hairline); }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about__image-col {
    min-height: 340px;
  }

  .about__image-col::after {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--navy) 100%
    );
  }

  .about__content-col {
    padding: 3rem 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__booking-card {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__inner {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 0 0 50%;
  }

  .trust-item:nth-child(2n+1)::before { display: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--hairline);
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 375px (mobile)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --header-h: 56px; }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle { display: flex; }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(244,241,235,0.1);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
  }

  .site-nav.is-open a {
    font-size: var(--text-base);
    padding: 0.75rem 1rem;
  }

  .site-nav.is-open + .header-cta {
    display: none;
  }

  .hero__content {
    padding: 3rem 1.5rem;
  }

  .hero__image { height: 280px; }

  .offer-chip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card { border-right: none !important; }
  .service-card:last-child { border-bottom: none; }
  .service-card:nth-child(n) { border-bottom: 1px solid var(--hairline); }

  .section { padding: 4rem 1.5rem; }

  .trust-item { flex: 0 0 100%; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item { border-bottom: 1px solid var(--hairline); }
  .trust-item:last-child { border-bottom: none; }

  .about__content-col { padding: 2.5rem 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-section .section__inner { padding: 0; }

  .hours-table td { font-size: var(--text-xs); }

  .concept-pill { bottom: 1rem; left: 1rem; }
}

/* review fix: eyebrow labels at body-adjacent size must pass AA */
.section-label,
.about__section-label,
.contact__section-label {
  color: var(--copper-dark);
}
