/*
  CLIENT: Texas Hill Country Connection
  ─────────────────────────────────────────
  Nav:            D — Minimal. Logo left, text-only links right, no CTA button.
  Hero:           C — Centered on limestone-texture background. Headline + subtext + 2 CTAs.
  Typography:     2 — Playfair Display + Lato
  Color Strategy: 3 — White-forward with pops (bluebonnet blue #3D6DB5, taupe #A8956A)
  Section Rhythm: F — Editorial mission text → alternating image+text service pairs → compact about strip → CTA
  Design Seed:    The Front Porch to the Hill Country — genuine, face-to-face, place-proud
  ─────────────────────────────────────────
*/

/* Fonts loaded via HTML <link> tags — @import removed to eliminate render-blocking */

/* ─── Custom Properties ──────────────────────────────────────────────────── */

:root {
  --color-primary:        #3d6db5;
  --color-primary-dark:   #2a4a80;
  --color-primary-light:  #5585c8;
  --color-accent:         #a8956a;
  --color-accent-dark:    #8a7855;
  --color-accent-light:   #c4ae84;
  --color-bg:             #f5f2ec;
  --color-bg-dark:        #ece9e1;
  --color-dark:           #1a1814;
  --color-mid:            #4a4640;
  --color-muted:          #8a8680;
  --color-light:          #faf8f4;
  --color-border:         #e0ddd6;
  --color-white:          #ffffff;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;

  --nav-h:         72px;
  --section-pad:   88px;
  --container-max: 1200px;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow-sm:     0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow:        0 2px 14px rgba(0, 0, 0, 0.10);
  --shadow-lg:     0 6px 32px rgba(0, 0, 0, 0.14);
  --transition:    0.25s ease;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  background: var(--color-white);
}

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

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

ul {
  list-style: none;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.btn--lg {
  padding: 17px 40px;
  font-size: 1rem;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark,
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero__ctas {
    animation: none;
  }

  .fade-in,
  .fade-in.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Navigation (Nav D — Minimal) ──────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--color-accent);
  border-bottom: 1px solid var(--color-accent-dark);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.nav--scrolled {
  box-shadow: 0 2px 16px rgba(90, 70, 40, 0.25);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Wraps toggle + menu so a fixed/overlay <ul> is not a direct flex sibling of the logo (fixes mobile layout bugs). */
.nav__end {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--color-white);
}

.nav__logo:hover {
  color: var(--color-white);
}

.nav__logo-text {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: inherit;
  min-width: 0;
  overflow-wrap: break-word;
}

/* Global `img { max-width: 100% }` collapses this inside a flex-shrunk .nav__logo — override so the mark stays visible. */
.nav__logo img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  max-width: none;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero (Hero C — Limestone Centered) ────────────────────────────────── */

.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Limestone wall texture — pure stone, no embedded text */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/Rough texture of limestone wall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  mix-blend-mode: normal;
}

/* Warm color depth over the texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(168, 149, 106, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 78% 22%, rgba(61, 109, 181, 0.05) 0%, transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 80px;
}

.hero__mark {
  width: 300px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 36px;
  animation: hero-fade-up 0.8s ease both;

  /* Stamped feel with full color:
     drop-shadow follows the logo silhouette for pressed-in depth
     mix-blend-mode: multiply lets stone texture show through the colors */
  filter: drop-shadow(0 4px 12px rgba(35, 28, 18, 0.45))
          drop-shadow(0 2px 5px rgba(35, 28, 18, 0.38));
  mix-blend-mode: multiply;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  animation: hero-fade-up 0.85s 0.1s ease both;
}

.hero__headline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--color-dark);
  max-width: 820px;
  margin: 0 auto 24px;
  animation: hero-fade-up 0.85s 0.2s ease both;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: hero-fade-up 0.85s 0.3s ease both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-fade-up 0.85s 0.4s ease both;
}

/* ─── Divider ────────────────────────────────────────────────────────────── */

.divider {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto;
}

/* ─── Editorial Mission (Rhythm F — left-aligned paragraph block) ────────── */

.mission {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.mission__inner {
  max-width: 740px;
}

.mission__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 20px;
}

.mission__body {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-mid);
}

.mission__body p {
  margin-bottom: 1.4rem;
}

.mission__body p:last-child {
  margin-bottom: 0;
}

.mission__body em {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--color-dark);
}

/* ─── Service Pairs (Rhythm F — alternating full-width) ──────────────────── */

.service-pair {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.service-pair--shaded {
  background: var(--color-bg);
}

.service-pair--primary {
  background: var(--color-primary-dark);
}

.service-pair--primary .service-pair__text .section-eyebrow {
  color: var(--color-accent-light);
}

.service-pair--primary .service-pair__text h2,
.service-pair--primary .service-pair__text p {
  color: var(--color-white);
}

.service-pair--primary .service-pair__text p {
  color: rgba(255, 255, 255, 0.82);
}

.service-pair__img--contain img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
}

.service-pair__inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

.service-pair--reverse .service-pair__inner {
  flex-direction: row-reverse;
}

.service-pair__text {
  flex: 1;
  min-width: 0;
}

.service-pair__text .section-eyebrow {
  margin-bottom: 10px;
}

.service-pair__text h2 {
  margin-bottom: 20px;
}

.service-pair__text p {
  color: var(--color-mid);
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-pair__text .btn {
  margin-top: 28px;
}

.service-pair__img {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-pair__img:not(.service-pair__img--contain) img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-pair__img:not(.service-pair__img--contain):hover img {
  transform: scale(1.03);
}

/* ─── About Strip (compact, text-only, centered) ─────────────────────────── */

.about-strip {
  padding: var(--section-pad) 0;
  background: var(--color-primary-dark);
  text-align: center;
}

.about-strip__inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-strip__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 20px;
}

.about-strip h2 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.about-strip p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-strip p:last-of-type {
  margin-bottom: 0;
}

.about-strip .btn {
  margin-top: 32px;
}

/* ─── CTA Bar ────────────────────────────────────────────────────────────── */

.cta-bar {
  padding: 72px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.cta-bar h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--color-dark);
}

.cta-bar p {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-bar__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand img {
  height: 52px;
  width: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--color-white);
}

.footer__col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col address a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__col address a:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright,
.footer__credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--color-white);
}

/* ─── Page Hero (inner pages) ────────────────────────────────────────────── */

.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(168, 149, 106, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(61, 109, 181, 0.06) 0%, transparent 50%);
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  color: var(--color-dark);
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-mid);
  line-height: 1.8;
}

/* ─── Services Page ──────────────────────────────────────────────────────── */

.services-section {
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Service cards: full-bleed hover photo (pointer devices). Set image with --service-card-hover-img + modifier class. */
.service-card--hover-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-card--materials {
  --service-card-hover-img: url('../images/Materials.jpeg');
}

.service-card--outreach {
  --service-card-hover-img: url('../images/Lisa on the porch.jpg');
}

.service-card--community {
  --service-card-hover-img: url('../images/community.jpg');
}

.service-card--referrals {
  --service-card-hover-img: url('../images/Referrals.webp');
}

.service-card--outreach.service-card--hover-photo::before {
  background-position: center top;
}

.service-card--hover-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--service-card-hover-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 0.45s ease, transform 0.55s ease;
  pointer-events: none;
}

.service-card--hover-photo .service-card__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card--hover-photo:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  .service-card--hover-photo:hover .service-card__inner {
    opacity: 0;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card--hover-photo::before,
  .service-card--hover-photo .service-card__inner {
    transition-duration: 0.01ms;
  }

  .service-card--hover-photo::before {
    transform: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-card--hover-photo:hover::before {
      transform: none;
    }
  }
}

.service-card__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-mid);
  line-height: 1.8;
}

.services-cta {
  margin-top: 56px;
  text-align: center;
}

/* ─── Packages & pricing (What I Do) ─────────────────────────────────────── */

.packages-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.packages-section .section-eyebrow {
  margin-bottom: 12px;
}

.packages-section > .container > h2 {
  margin-bottom: 16px;
  color: var(--color-dark);
}

.packages-section__lede {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 720px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Flex column + flex-grow list: equal card heights, footers pin to bottom (common pricing-table pattern). */
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.package-card--featured {
  border-color: rgba(61, 109, 181, 0.35);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(61, 109, 181, 0.05) 0%, var(--color-white) 48%);
}

.package-card__header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.package-card__badge {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.package-card__title {
  margin: 0 0 4px;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
}

.package-card__title-sub {
  font-weight: 500;
  color: var(--color-muted);
  font-size: 0.92em;
}

.package-card__price {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  line-height: 1.1;
}

.package-card__period {
  font-size: 0.48em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-muted);
}

.package-card__note {
  margin: 12px 0 0;
  font-size: 0.91rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.package-card__note--only {
  margin-top: 0;
}

.package-card__list {
  flex: 1 1 auto;
  margin: 0;
  padding: 18px 22px 22px 22px;
  list-style: none;
  font-size: 0.92rem;
  color: var(--color-mid);
  line-height: 1.55;
}

.package-card__list > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 3px;
  padding-left: 1.15rem;
}

.package-card__list > li + li {
  margin-top: 0.65rem;
}

.package-card__list > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.package-card__list > li .package-card__item-name {
  flex: 1 1 auto;
  min-width: 5.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

.package-card__list > li .package-card__item-price {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.package-card__item-hint {
  flex: 1 1 100%;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.45;
}

.package-card__footer {
  margin-top: auto;
  flex-shrink: 0;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--color-border);
  font-size: 0.86rem;
  font-style: italic;
  color: var(--color-muted);
  line-height: 1.5;
  background: rgba(245, 242, 236, 0.65);
}

.packages-section__footnote {
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--color-mid);
  max-width: 640px;
  line-height: 1.75;
}

.packages-section__footnote a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */

.about-section {
  padding: var(--section-pad) 0;
}

.about-section__inner {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}

.about-section__photo {
  flex: 0 0 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-section__photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
}

.about-section__text {
  flex: 1;
  min-width: 0;
}

.about-section__text .section-eyebrow {
  margin-bottom: 12px;
}

.about-section__text h2 {
  margin-bottom: 24px;
}

.about-section__text p {
  font-size: 1.05rem;
  color: var(--color-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-section__text p:last-child {
  margin-bottom: 0;
}

.about-section__text em {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--color-dark);
}

/* ─── Events Page ────────────────────────────────────────────────────────── */

.events-intro {
  padding: var(--section-pad) 0 0;
}

.events-intro__inner {
  max-width: 720px;
}

.events-intro__inner p {
  font-size: 1.05rem;
  color: var(--color-mid);
  line-height: 1.85;
}

.events-list {
  padding: var(--section-pad) 0;
}

.events-list__header {
  margin-bottom: 40px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.event-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.event-card__img {
  height: 200px;
  overflow: hidden;
}

.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card__img img {
  transform: scale(1.04);
}

.event-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card__date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}

.event-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.event-card p {
  font-size: 0.9rem;
  color: var(--color-mid);
  line-height: 1.75;
}

.event-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.event-card__link:hover {
  color: var(--color-primary-dark);
}

.events-facebook {
  padding: 72px 0;
  background: var(--color-bg);
  text-align: center;
}

.events-facebook h2 {
  margin-bottom: 16px;
}

.events-facebook p {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */

.contact-section {
  padding: var(--section-pad) 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--color-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-detail__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact-detail__value {
  font-size: 1rem;
  color: var(--color-dark);
}

.contact-detail__value a {
  color: var(--color-dark);
  transition: color var(--transition);
}

.contact-detail__value a:hover {
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61, 109, 181, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.form-feedback--success {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.form-feedback--error {
  color: #7a2e1d;
}

/* ─── Monday Post Banner ─────────────────────────────────────────────────── */

.monday-banner {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 16px 28px;
  text-align: center;
}

.monday-banner p {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}

.monday-banner a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .service-pair__inner,
  .service-pair--reverse .service-pair__inner {
    flex-direction: column;
    gap: 40px;
  }

  .service-pair__img:not(.service-pair__img--contain) img {
    height: 320px;
  }

  .about-section__inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-section__photo {
    flex: none;
    width: 100%;
  }

  .about-section__photo img {
    height: 380px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Nav: hamburger + slide-down menu (wordmark needs more room than old 768px cutoff) */
@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__logo {
    flex: 1;
    min-width: 0;
  }

  .nav__logo-text {
    font-size: clamp(0.78rem, 3.5vw, 0.95rem);
    line-height: 1.25;
  }

  /*
   * Avoid `position:fixed` + transform on this <ul> as a flex descendant (breaks on several mobile WebViews:
   * translate % can resolve wrong, links leak into the bar as text, logo gets flex-crushed).
   * Anchor the panel to `.nav` (fixed) with `absolute` + max-height so it never occupies the top-bar row when closed.
   */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    background: var(--color-accent-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    pointer-events: none;
    transition: max-height 0.35s ease;
  }

  .nav__links.open {
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding: 16px 0;
    pointer-events: auto;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    padding: 12px 28px;
    width: 100%;
    box-sizing: border-box;
  }

  .nav__links a::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-h:       64px;
  }

  .hero__mark {
    width: 88px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

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