/* ==========================================================================
   Astrology for Living — Global Stylesheet
   Sections:
     1. Design tokens (custom properties)
     2. Reset & base
     3. Layout: containers & color bands
     4. Header & navigation
     5. Footer
     6. Buttons
     7. Typography helpers (eyebrows, labels, quotes, prose)
     8. Portraits & decorative imagery
     9. Home page
    10. Services page
    11. Service detail pages
    12. About page
    13. Responsive
   ========================================================================== */

/* 1. Design tokens ---------------------------------------------------------- */
:root {
  --bg:            #131A2E;
  --bg-deep:       #061520;
  --panel:         #0F1526;
  --panel-alt:     #18213B;
  --panel-card:    #131A2E;
  --border:        #262F4C;
  --border-soft:   #2C3555;
  --border-mid:    #3A4570;

  --accent:        #9FB0E6;
  --accent-warm:   #FF8C5A;

  --heading:       #EEF0F7;
  --text:          #C7D0EC;
  --text-2:        #DDE2F0;
  --text-muted:    #A6AEC5;
  --text-dim:      #8A93A4;
  --text-faint:    #7C86A6;
  --text-copy:     #6C769A;
  --link:          #C7D2F5;
  --nav:           #EFEFEF;

  --grad-down:     linear-gradient(180deg, var(--bg-deep), #1F3D70);
  --grad-up:       linear-gradient(180deg, #1F3D70, var(--bg-deep));

  --serif:   'Fraunces', serif;
  --sans:    'Hanken Grotesk', system-ui, sans-serif;
  --display: 'Julius Sans One', sans-serif;

  --wrap: 73.75rem;
}

/* 2. Reset & base ----------------------------------------------------------- */
* { box-sizing: border-box; }
html { font-size: 100%; } /* 16px base — all rem values derive from this */
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--link); }
a:hover { color: #E3E9FF; }
img { display: block; max-width: 100%; }

/* 3. Layout: containers & color bands -------------------------------------- */
.page { width: 100%; background: var(--bg); overflow-x: clip; }
.container { max-width: var(--wrap); margin: 0 auto; }

.band--deep    { background: var(--bg-deep); }
.header-band { position: sticky; top: 0; z-index: 100; }
.band--grad    { background: var(--grad-down); }
.band--grad-up { background: var(--grad-up); }
.band--panel   { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band--panel-top { background: var(--panel); border-top: 1px solid var(--border); }
.band--alt     { background: var(--panel-alt); border-top: 1px solid var(--border-soft); }

/* graph-paper texture used behind the home "About Ron" band */
.band--grid {
  background-color: var(--panel);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.25) 0px, rgba(0,0,0,0.25) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(0deg,  rgba(0,0,0,0.25) 0px, rgba(0,0,0,0.25) 1px, transparent 1px, transparent 3px);
  background-size: 3px 3px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 4. Header & navigation ---------------------------------------------------- */
.site-header {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.625rem 3.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.brand__logo { width: 3.625rem; height: 3.625rem; filter: brightness(0) invert(1); }
.brand__names { display: inline-flex; flex-direction: column; line-height: 1.15; gap: 0.1875rem; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.11875rem;
  color: var(--heading);
  white-space: nowrap;
}
.brand__tagline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
}
/* header brand lockup is a single consistent size on every page */
.site-header--lg .brand__name { font-size: 1.5rem; }
.site-header--lg .brand__tagline { font-size: 0.75rem; }

.site-nav { display: flex; align-items: center; gap: 2.375rem; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.78125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav);
}
.site-nav a.is-active { font-weight: 600; }

/* 5. Footer ----------------------------------------------------------------- */
.site-footer {
  max-width: var(--wrap);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 2.5rem 3.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.site-footer__logo { width: 1.625rem; height: 1.625rem; filter: brightness(0) invert(1); }
.site-footer__name { font-family: var(--serif); font-size: 1rem; color: var(--heading); }
.site-footer__copy { font-size: 0.75rem; color: #9AA3BE; }

/* 6. Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0.1875rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
}
.btn--primary {
  padding: 1rem 2.375rem;
  background: var(--accent);
  color: #131A2E;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border: none;
}
.btn--signup { padding: 1rem 2rem; background: var(--accent); color: #131A2E; font-size: 0.75rem; letter-spacing: 0.12em; border: none; }
.btn--subscribe { padding: 0.8125rem 1.625rem; background: var(--accent-warm); color: #131A2E; font-size: 0.8125rem; letter-spacing: 0.08em; border: none; white-space: nowrap; }

/* full-width "Book now" button used in the home service list */
.btn--book {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0.875rem 0;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #131A2E;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.1875rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn--book:hover {
  background: #6FBF9A;
  border-color: #6FBF9A;
  color: #131A2E;
  box-shadow: 0 0.625rem 1.5rem -0.625rem rgba(111,191,154,0.55);
}

/* underlined text link (accent) */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid var(--accent);
}
.link-back {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-learn {
  display: block;
  margin-top: 1.5rem;
  padding: 0.375rem 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
}

/* 7. Typography helpers ----------------------------------------------------- */
.ig-follow { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.875rem 0 0; font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); transition: color 0.25s ease; }
.ig-follow:hover { color: var(--accent-warm); }
.ig-follow__icon { flex-shrink: 0; }
.eyebrow { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.eyebrow--wide { letter-spacing: 0.22em; }
.eyebrow--lg { font-size: 0.75rem; }
.eyebrow--xl { font-size: 1.0625rem; }
.eyebrow--xxl { font-size: 1.25rem; }
.label-caps { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.label-caps--sm { font-size: 0.6875rem; }
.quote { font-family: var(--serif); font-style: italic; color: var(--text-dim); }

.prose p { margin: 0; }
.prose strong { font-weight: 600; color: var(--heading); }

/* 8. Portraits & decorative imagery ---------------------------------------- */
.portrait {
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--tint { background: #1C2440; }
.portrait__overlay { position: absolute; inset: 0; pointer-events: none; }
.portrait__overlay--blend { background: linear-gradient(180deg, rgba(6,21,32,0.55), rgba(31,61,112,0.62)); mix-blend-mode: color; }
.portrait__overlay--fade  { background: linear-gradient(180deg, rgba(6,21,32,0) 55%, rgba(6,21,32,0.5)); }

/* 9. Home page -------------------------------------------------------------- */
.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 3.75rem;
  align-items: center;
  padding: 4.125rem 3.375rem;
}
/* canonical page-hero H1 — shared type styling across every page hero */
.page-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 1rem 0 1.375rem;
  text-transform: none;
}
/* home hero keeps a constrained measure for its longer headline */
.hero__title { max-width: 38.1875rem; }
.hero__lead { font-weight: 700; }
.hero__promise { margin: 0 0 1.75rem; font-family: var(--serif); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--heading); max-width: 38.1875rem; }
.hero__copy { margin: 0 0 2.25rem; line-height: 1.8; color: var(--text-muted); font-size: 1.125rem; }
.hero__copy p { margin: 0; font-family: var(--sans); font-size: 1rem; color: var(--text); }
.hero__copy p + p { margin-top: 1rem; }
.hero__cta-row { display: flex; align-items: center; gap: 1.625rem; flex-wrap: wrap; }
.hero__media { display: flex; align-items: center; justify-content: flex-end; }
.hero__ring-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__ring-wrap::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 50rem; height: 50rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,176,230,0.10) 0%, rgba(159,176,230,0.04) 40%, transparent 68%);
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--accent);
  pointer-events: none;
}
.hero__ring--1 { width: 24rem; height: 24rem; opacity: 0.18; }
.hero__ring--2 { width: 29.375rem; height: 29.375rem; opacity: 0.11; }
.hero__ring--3 { width: 35.375rem; height: 35.375rem; opacity: 0.065; }
.hero__ring--4 { width: 42rem; height: 42rem; opacity: 0.038; }
.hero__ring--5 { width: 49.25rem; height: 49.25rem; opacity: 0.02; }
.hero__ring-wrap .portrait { position: relative; z-index: 1; }
.hero__portrait { width: 23.25rem; height: 23.25rem; }
.hero__portrait img { object-position: 50% 62%; filter: grayscale(1) contrast(1.08) brightness(0.9); }

.about-home__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.75rem;
  align-items: center;
  max-width: 60rem;
  margin: 0 auto;
  padding: 5.25rem 3.375rem;
}
.about-home__photo-col { display: flex; align-items: center; justify-content: center; }
.about-home__portrait { width: 18.875rem; height: 18.875rem; background: #1C2440; }
.about-home__eyebrow { font-family: var(--serif); font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: #FFFFFF; font-size: 1.63563rem; }
.about-home__lead { font-family: var(--serif); font-weight: 300; font-size: 1.25rem; line-height: 1.7; color: var(--text-2); margin: 1.25rem 0 1.125rem; }
.about-home__body { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin: 0 0 1.875rem; }

.services { max-width: var(--wrap); margin: 0 auto; padding: 4.375rem 3.375rem; }
.services__head { text-align: left; margin-bottom: 2.5rem; }
.services__title { font-family: var(--serif); font-weight: 300; font-size: 2.625rem; color: var(--heading); margin: 0; }
.services__intro { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin: 1.125rem 0 0; }

/* service list (default home layout) */
.svc-list { max-width: 61.5rem; margin: 0 auto; }
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 1.375rem;
  padding: 1.6875rem 0;
  border-top: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-icon { flex: 0 0 auto; }
.service-row__body { flex: 1; display: flex; gap: 1.75rem; align-items: flex-start; }
.service-row__main { flex: 1 1 auto; min-width: 0; }
.service-row__title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 0.375rem 0 0.375rem; }
.service-row__title a { color: var(--heading); }
.service-row__desc { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin: 0; max-width: 39rem; }
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.75rem; margin-top: 0.875rem; }
.qa-list { margin: 0; padding-left: 1.125rem; display: flex; flex-direction: column; gap: 0.375rem; }
.qa-list--single { margin: 0.875rem 0 0; }
.qa-list li { font-family: var(--serif); font-style: italic; font-size: 1.0625rem; color: var(--text-dim); }
.service-needs { flex: 0 0 13.75rem; padding-left: 1.5rem; border-left: 1px solid var(--border); }
.service-needs__note { font-size: 1rem; line-height: 1.6; color: var(--text-muted); margin: 0.5rem 0 0; }

/* icon color (SVGs use stroke/fill="currentColor") */
.service-icon, .svc-panel__icon, .detail-icon, .service-card-icon svg { color: var(--accent); }

/* service name hover (dashed underline) */
.svc-name { text-decoration: none; }
.svc-name:hover { color: #FFFFFF; text-decoration: underline dashed; text-underline-offset: 0.3125rem; }
.svc-name__caret { display: inline-block; margin-left: 0.3em; font-size: 1.4em; font-weight: 400; line-height: 1; text-decoration: none; transition: transform 0.2s ease; }
.svc-name:hover .svc-name__caret { transform: translateX(0.25rem); }

/* journal / newsletter band */
.journal { background: var(--panel); border-top: 1px solid var(--border); padding: 5rem 3.375rem; text-align: center; }
.journal__inner { max-width: 32.5rem; margin: 1.5rem auto 0; }
.journal__title { font-family: var(--serif); font-weight: 400; font-size: 2rem; color: var(--heading); margin: 0; }
.journal__copy { font-size: 0.9375rem; line-height: 1.7; color: var(--text-muted); margin: 1rem 0 0; }
.subscribe-form { display: flex; gap: 0.625rem; margin-top: 1.75rem; flex-wrap: wrap; justify-content: center; }
.field {
  flex: 1 1 16.25rem;
  min-width: 0;
  padding: 0.875rem 1rem;
  background: #161E36;
  border: 1px solid var(--border-mid);
  border-radius: 0.1875rem;
  color: var(--heading);
  font-size: 1rem;
  font-family: var(--sans);
}

/* 10. Services page --------------------------------------------------------- */
.svc-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3.25rem 3.375rem 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.svc-hero__copy { margin: 0 0 2rem; max-width: 35rem; font-size: 1rem; font-weight: 500; line-height: 1.8; color: var(--text); }
.svc-hero__media { display: flex; align-items: center; justify-content: center; }
.svc-hero__portrait { width: 14.0625rem; height: 14.0625rem; }

.svc-panels { max-width: var(--wrap); margin: 0 auto; padding: 4.625rem 3.375rem; }
.svc-panels__inner { max-width: 100%; margin: 0; display: flex; flex-direction: column; gap: 1.625rem; }
.svc-panel {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 2.75rem;
  background: var(--panel);
  scroll-margin-top: 6.25rem;
}
.svc-panel__row { display: flex; align-items: flex-start; gap: 2rem; flex-wrap: nowrap; }
.svc-panel__main { flex: 1 1 auto; display: flex; gap: 1.375rem; align-items: flex-start; min-width: 0; }
.svc-panel__icon { flex: 0 0 auto; }
.svc-panel__title { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; margin: 0.375rem 0 0; }
.svc-panel__title a { color: var(--heading); }
.svc-panel__desc { font-size: 1rem; line-height: 1.75; color: var(--text-muted); margin: 0.875rem 0 0; max-width: 32.5rem; }
.svc-panel__divider { flex: 0 0 auto; align-self: stretch; width: 1px; background: var(--border); }
.svc-panel__aside { flex: 0 0 33%; padding-left: 0.5rem; }
.svc-panel__price { display: block; font-family: var(--serif); font-size: 1.375rem; color: var(--text); margin-bottom: 1.375rem; }
.svc-panel__examples { display: flex; flex-direction: column; gap: 0.5625rem; margin-top: 0.75rem; }
.svc-panel__examples .quote { font-size: 1rem; color: var(--text); }
.svc-panel__aside .btn--book { margin-top: 1.375rem; }

/* 11. Service detail pages -------------------------------------------------- */
.detail-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 4rem 3.375rem 3.625rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.detail-hero__inner--center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.detail-hero__inner--center .detail-hero__copy { margin-left: auto; margin-right: auto; }
.detail-hero__inner--center .hero__cta-row { justify-content: center; }
.thanks-section { display: flex; align-items: center; min-height: 78vh; }
.thanks-section .detail-hero__inner { width: 100%; }
.gift { margin-top: 3.5rem; padding-top: 2.75rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
.gift__copy { margin: 0.75rem 0 1.75rem; font-size: 1.0625rem; color: var(--text); }
.gift__cover { display: block; margin-bottom: 1.75rem; line-height: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gift__cover img { width: 16rem; max-width: 60vw; height: auto; border: 1px solid var(--border); box-shadow: 0 1.25rem 3rem -1rem rgba(0,0,0,0.25); }
.gift__cover:hover { transform: translateY(-0.375rem); }
.site-footer--slim { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.detail-hero__copy { margin: 0 0 1.5rem; max-width: 40rem; font-size: 1.0625rem; line-height: 1.8; color: var(--text); }
.detail-hero__price { display: inline-block; font-family: var(--serif); font-size: 1.5rem; color: var(--heading); }
.detail-hero__back { margin-top: 0; margin-bottom: 1.125rem; }
.detail-hero__schedule { display: flex; width: fit-content; margin-top: 1.375rem; }
.detail-hero__schedule:hover { background: #6FBF9A; box-shadow: 0 0.625rem 1.5rem -0.625rem rgba(111,191,154,0.55); }
.detail-hero__media { display: flex; align-items: center; justify-content: center; }

.detail-body { max-width: var(--wrap); margin: 0 auto; padding: 4.625rem 3.375rem; }
.detail-body__inner { max-width: 47.5rem; }
.detail-body__title { font-family: var(--serif); font-weight: 400; font-size: 2rem; color: var(--heading); margin: 0 0 1.375rem; }
.detail-body__text { font-size: 1.03125rem; line-height: 1.85; color: var(--text); margin: 0 0 1.25rem; }
.detail-body__text:last-child { margin-bottom: 0; }

/* 12. About page ------------------------------------------------------------ */
.about-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4.75rem 3.375rem;
}
.about-hero__copy { max-width: 42.5rem; margin: 0; display: flex; flex-direction: column; gap: 1.125rem; }
.about-hero__copy p { margin: 0; font-family: var(--sans); font-size: 1rem; line-height: 1.8; color: var(--text); }
.about-hero__copy em { font-style: italic; }
.about-hero__copy strong { font-weight: 600; color: var(--heading); }
.about-hero__media { display: flex; align-items: center; justify-content: flex-end; }
.about-hero__portrait { width: 19.125rem; height: 19.125rem; background: #1C2440; }

.story { position: relative; overflow: hidden; }
.story__bg {
  position: absolute;
  top: 50%; right: -23.75rem;
  transform: translateY(-50%);
  width: 75rem; height: 75rem;
  opacity: 0.13;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, #000 36%, transparent 66%);
          mask-image: radial-gradient(circle at center, #000 36%, transparent 66%);
}
.story__inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 3.75rem 3.375rem; }
.story__aside { max-width: 40rem; margin: 0; border-left: 0.1875rem solid var(--accent); padding-left: 1.875rem; }
.story__eyebrow { display: block; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-size: 1.0625rem; }
.story__body { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.8125rem; }
.story__body p { margin: 0; font-family: var(--sans); font-weight: 300; font-size: 1.09375rem; line-height: 1.72; color: #AAB4D2; }
.story__aside--cols { max-width: 66.25rem; }
.story__aside--cols .story__eyebrow { column-span: all; margin-bottom: 0.25rem; }
.story__aside--cols .story__body { display: block; column-count: 2; column-gap: 4.5rem; }
.story__aside--cols .story__body p { margin: 0 0 0.8125rem; break-inside: avoid; }
.story__body strong { font-weight: 600; color: var(--heading); }
.story__body em { font-style: italic; color: var(--text-2); }

.credentials { padding: 5rem 3.375rem; }
.credentials__inner { max-width: 67.5rem; margin: 0 auto; }
.credentials__intro { margin: 0 0 2.75rem; text-align: left; }
.credentials__title { font-family: var(--serif); font-weight: 400; font-size: 1.875rem; line-height: 1.15; color: var(--heading); margin: 0.875rem 0 0; }
.credentials__intro p { margin: 1.25rem 0 0; font-family: var(--sans); font-size: 1.125rem; line-height: 1.8; color: var(--text-muted); }
.credentials__subhead { font-family: var(--serif); font-weight: 400; font-size: 1.375rem; color: var(--heading); margin: 2.125rem 0 0; }
.cred-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.625rem; margin-bottom: 1.625rem; }
.cred-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.625rem; }
.cred-card { border: 1px solid var(--border); border-radius: 0.625rem; overflow: hidden; background: var(--panel-card); }
.cred-card--pad { padding: 1.625rem 1.875rem; }
.cred-card__frame { background: #EDEEF2; padding: 0.625rem; }
.cred-card__frame img { width: 100%; height: auto; border-radius: 0.1875rem; }
.cred-card__body { padding: 1.375rem 1.5rem 1.625rem; }
.cred-card__title { font-family: var(--serif); font-weight: 400; font-size: 1.3125rem; color: var(--heading); margin: 0 0 0.5rem; }
.cred-card__text { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin: 0; }
.cred-card--pad .cred-card__text { font-size: 1rem; }

.newsletter { padding: 5rem 3.375rem; text-align: center; }
.newsletter__title { font-family: var(--serif); font-weight: 300; font-size: 2.5rem; color: var(--heading); margin: 0 0 0.75rem; }
.newsletter__copy { font-size: 1rem; line-height: 1.8; color: var(--text); margin: 0 auto 2rem; max-width: 30rem; }
.newsletter__form { display: flex; align-items: center; justify-content: center; gap: 0.875rem; flex-wrap: wrap; max-width: 28.75rem; margin: 0 auto; }
.newsletter__field { flex: 1; min-width: 13.75rem; padding: 1rem 1.25rem; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 0.1875rem; color: var(--heading); font-family: var(--sans); font-size: 1rem; }
.newsletter__note { font-size: 0.78125rem; color: var(--text-faint); margin: 1rem 0 0; }
.newsletter__result { font-size: 0.9375rem; color: var(--text); margin: 0.875rem 0 0; }

.contact { padding: 5rem 3.375rem; }
.contact__inner { max-width: 35rem; margin: 0 auto; text-align: center; }
.contact__title { font-family: var(--serif); font-weight: 300; font-size: 2.5rem; color: var(--heading); margin: 0.875rem 0 0.75rem; }
.contact__copy { font-size: 1rem; line-height: 1.8; color: var(--text); margin: 0 auto 2rem; max-width: 30rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.125rem; text-align: left; }
.contact__field { display: flex; flex-direction: column; gap: 0.4375rem; }
.contact__label { font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.contact__input { width: 100%; padding: 0.875rem 1rem; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 0.1875rem; color: var(--heading); font-family: var(--sans); font-size: 1rem; }
.contact__input:focus { outline: none; border-color: var(--heading); }
.contact__textarea { resize: vertical; min-height: 7.5rem; line-height: 1.6; }
.contact__botcheck { display: none !important; }
.contact__check { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: var(--text); cursor: pointer; }
.contact__check input { width: 1.125rem; height: 1.125rem; flex: none; accent-color: var(--heading); }
.req { color: #c0392b; }
.contact__submit { align-self: flex-start; margin-top: 0.25rem; }
.contact__result { font-size: 0.9375rem; color: var(--text); margin: 0.25rem 0 0; }

/* section title on service detail hero uses eyebrow; nothing extra needed */

/* 13. Responsive ------------------------------------------------------------ */
@media (max-width: 56.25rem) {
  .site-header { padding: 1.375rem 2rem; }
  .site-nav { gap: 1.25rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3rem 2rem; }
  .hero__media { order: -1; justify-content: center; }
  .hero__portrait { width: 16.25rem; height: 16.25rem; }
  .about-home__inner { grid-template-columns: 1fr; gap: 2rem; padding: 3.75rem 2rem; }
  .about-home__portrait { width: 13.75rem; height: 13.75rem; }
  .services { padding: 3.5rem 2rem; }
  .journal { padding: 3.75rem 2rem; }
  .site-footer { padding: 2rem; }

  .svc-hero__inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 2.75rem 2rem; }
  .svc-hero__media { order: -1; }
  .svc-panels { padding: 3.5rem 2rem; }
  .svc-panel { padding: 2.125rem; }
  .svc-panel__row { flex-wrap: wrap; }
  .svc-panel__divider { display: none; }
  .svc-panel__aside { flex: 1 1 100%; padding-left: 0; }

  .detail-hero__inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3rem 2rem; }
  .detail-hero__media { order: -1; }
  .detail-body { padding: 3.5rem 2rem; }

  .about-hero__inner { grid-template-columns: 1fr; gap: 2.25rem; padding: 3.5rem 2rem; }
  .about-hero__media { order: -1; justify-content: center; }
  .story__inner { padding: 3rem 2rem; }
  .credentials { padding: 3.75rem 2rem; }
  .cred-grid-3 { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 3.75rem 2rem; }
}

@media (max-width: 37.5rem) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.375rem; }
  .brand__name, .brand__tagline { white-space: normal; }
  .site-nav { gap: 0.25rem 1.375rem; }
  .site-nav a { padding: 0.625rem 0; }
  .hero__inner { padding: 2.5rem 1.375rem; }
  .page-hero-title { font-size: 2.125rem; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; gap: 1.125rem; }
  .hero__portrait { width: 11.875rem; height: 11.875rem; }
  .about-home__inner { padding: 3rem 1.375rem; }
  .about-home__portrait { width: 10.625rem; height: 10.625rem; }
  .about-home__eyebrow { font-size: 1.25rem; }
  .services { padding: 2.75rem 1.375rem; }
  .services__title { font-size: 1.875rem; }
  .service-row { flex-direction: column; align-items: flex-start; gap: 0.875rem; padding: 1.375rem 0; }
  .service-row__body { flex-direction: column; }
  .qa-grid { grid-template-columns: 1fr; }
  .service-needs { flex: 1 1 100%; border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 0.875rem; margin-top: 0.375rem; }
  .journal { padding: 3rem 1.375rem; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 0.875rem; padding: 1.75rem 1.375rem; }

  .svc-hero__inner { padding: 2.5rem 1.375rem; }
  .svc-panels { padding: 2.75rem 1.375rem; }
  .svc-panel { padding: 1.625rem; }
  .svc-panel__main { flex-direction: column; }

  .detail-hero__inner { padding: 2.5rem 1.375rem; }
  .detail-body { padding: 2.75rem 1.375rem; }

  .about-hero__inner { padding: 2.75rem 1.375rem; }
  .story__inner { padding: 2.5rem 1.375rem; }
  .story__aside { padding-left: 1.25rem; }
  .credentials { padding: 3rem 1.375rem; }
  .cred-grid-3, .cred-grid-2 { grid-template-columns: 1fr; }
  .newsletter { padding: 3rem 1.375rem; }
  .newsletter__title { font-size: 2rem; }
}
