/* ==========================================================================
   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: 1180px;
}

/* 2. Reset & base ----------------------------------------------------------- */
* { box-sizing: border-box; }
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: hidden; }
.container { max-width: var(--wrap); margin: 0 auto; }

.band--deep    { background: var(--bg-deep); }
.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: 26px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.brand__logo { width: 58px; height: 58px; filter: brightness(0) invert(1); }
.brand__names { display: inline-flex; flex-direction: column; line-height: 1.15; gap: 3px; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.9px;
  color: var(--heading);
  white-space: nowrap;
}
.brand__tagline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  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: 24px; }
.site-header--lg .brand__tagline { font-size: 12px; }

.site-nav { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; }
.site-nav a {
  font-size: 12.5px;
  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: 40px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-footer__logo { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.site-footer__name { font-family: var(--serif); font-size: 16px; color: var(--heading); }
.site-footer__copy { font-size: 12px; color: #9AA3BE; }

/* 6. Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
}
.btn--primary {
  padding: 16px 38px;
  background: var(--accent);
  color: #131A2E;
  font-size: 12px;
  letter-spacing: 0.12em;
  border: none;
}
.btn--signup { padding: 16px 32px; background: var(--accent); color: #131A2E; font-size: 12px; letter-spacing: 0.12em; border: none; }
.btn--subscribe { padding: 13px 26px; background: var(--accent-warm); color: #131A2E; font-size: 13px; 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: 14px 0;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #131A2E;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  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 10px 24px -10px rgba(111,191,154,0.55);
}

/* underlined text link (accent) */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
}
.link-back {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-learn {
  display: block;
  margin-top: 24px;
  padding: 6px 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-muted);
}

/* 7. Typography helpers ----------------------------------------------------- */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.eyebrow--wide { letter-spacing: 0.22em; }
.eyebrow--lg { font-size: 12px; }
.eyebrow--xl { font-size: 17px; }
.eyebrow--xxl { font-size: 20px; }
.label-caps { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.label-caps--sm { font-size: 11px; }
.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: 60px;
  align-items: center;
  padding: 66px 54px;
}
/* canonical page-hero H1 — shared type styling across every page hero */
.page-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 16px 0 22px;
  text-transform: none;
}
/* home hero keeps a constrained measure for its longer headline */
.hero__title { max-width: 611px; }
.hero__lead { font-weight: 700; }
.hero__promise { margin: 0 0 28px; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--heading); max-width: 611px; }
.hero__copy { margin: 0 0 36px; line-height: 1.8; color: var(--text-muted); font-size: 18px; }
.hero__copy p { margin: 0; font-family: var(--sans); font-size: 16px; color: #E6E8FF; }
.hero__copy p + p { margin-top: 16px; }
.hero__cta-row { display: flex; align-items: center; gap: 26px; 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: 800px; height: 800px;
  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: 384px; height: 384px; opacity: 0.18; }
.hero__ring--2 { width: 470px; height: 470px; opacity: 0.11; }
.hero__ring--3 { width: 566px; height: 566px; opacity: 0.065; }
.hero__ring--4 { width: 672px; height: 672px; opacity: 0.038; }
.hero__ring--5 { width: 788px; height: 788px; opacity: 0.02; }
.hero__ring-wrap .portrait { position: relative; z-index: 1; }
.hero__portrait { width: 372px; height: 372px; }
.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: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 84px 54px;
}
.about-home__photo-col { display: flex; align-items: center; justify-content: center; }
.about-home__portrait { width: 302px; height: 302px; background: #1C2440; }
.about-home__eyebrow { font-family: var(--serif); font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: #FFFFFF; font-size: 26.17px; }
.about-home__lead { font-family: var(--serif); font-weight: 300; font-size: 20px; line-height: 1.7; color: var(--text-2); margin: 20px 0 18px; }
.about-home__body { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin: 0 0 30px; }

.services { max-width: var(--wrap); margin: 0 auto; padding: 70px 54px; }
.services__head { text-align: left; margin-bottom: 40px; }
.services__title { font-family: var(--serif); font-weight: 300; font-size: 42px; color: var(--heading); margin: 0; }
.services__intro { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 18px 0 0; }

/* service list (default home layout) */
.svc-list { max-width: 984px; margin: 0 auto; }
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 27px 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: 28px; 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: 24px; margin: 6px 0 6px; }
.service-row__title a { color: var(--heading); }
.service-row__desc { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; max-width: 624px; }
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 14px; }
.qa-list { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.qa-list--single { margin: 14px 0 0; }
.qa-list li { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--text-dim); }
.service-needs { flex: 0 0 220px; padding-left: 24px; border-left: 1px solid var(--border); }
.service-needs__note { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 8px 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: 5px; }
.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(4px); }

/* journal / newsletter band */
.journal { background: var(--panel); border-top: 1px solid var(--border); padding: 80px 54px; text-align: center; }
.journal__inner { max-width: 520px; margin: 24px auto 0; }
.journal__title { font-family: var(--serif); font-weight: 400; font-size: 32px; color: var(--heading); margin: 0; }
.journal__copy { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 16px 0 0; }
.subscribe-form { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.field {
  flex: 1 1 260px;
  min-width: 0;
  padding: 14px 16px;
  background: #161E36;
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  color: var(--heading);
  font-size: 16px;
  font-family: var(--sans);
}

/* 10. Services page --------------------------------------------------------- */
.svc-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 52px 54px 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.svc-hero__copy { margin: 0 0 32px; max-width: 560px; font-size: 16px; 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: 225px; height: 225px; }

.svc-panels { max-width: var(--wrap); margin: 0 auto; padding: 74px 54px; }
.svc-panels__inner { max-width: 100%; margin: 0; display: flex; flex-direction: column; gap: 26px; }
.svc-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px;
  background: var(--panel);
  scroll-margin-top: 100px;
}
.svc-panel__row { display: flex; align-items: flex-start; gap: 32px; flex-wrap: nowrap; }
.svc-panel__main { flex: 1 1 auto; display: flex; gap: 22px; 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: 28px; margin: 6px 0 0; }
.svc-panel__title a { color: var(--heading); }
.svc-panel__desc { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 14px 0 0; max-width: 520px; }
.svc-panel__divider { flex: 0 0 auto; align-self: stretch; width: 1px; background: var(--border); }
.svc-panel__aside { flex: 0 0 33%; padding-left: 8px; }
.svc-panel__price { display: block; font-family: var(--serif); font-size: 22px; color: var(--text); margin-bottom: 22px; }
.svc-panel__examples { display: flex; flex-direction: column; gap: 9px; margin-top: 12px; }
.svc-panel__examples .quote { font-size: 16px; color: var(--text); }
.svc-panel__aside .btn--book { margin-top: 22px; }

/* 11. Service detail pages -------------------------------------------------- */
.detail-hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 54px 58px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.detail-hero__copy { margin: 0 0 24px; max-width: 640px; font-size: 17px; line-height: 1.8; color: var(--text); }
.detail-hero__price { display: inline-block; font-family: var(--serif); font-size: 24px; color: var(--heading); }
.detail-hero__back { margin-top: 0; margin-bottom: 18px; }
.detail-hero__schedule { display: flex; width: fit-content; margin-top: 22px; }
.detail-hero__schedule:hover { background: #6FBF9A; box-shadow: 0 10px 24px -10px 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: 74px 54px; }
.detail-body__inner { max-width: 760px; }
.detail-body__title { font-family: var(--serif); font-weight: 400; font-size: 32px; color: var(--heading); margin: 0 0 22px; }
.detail-body__text { font-size: 16.5px; line-height: 1.85; color: var(--text); margin: 0 0 20px; }
.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: 56px;
  align-items: center;
  padding: 76px 54px;
}
.about-hero__copy { max-width: 680px; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.about-hero__copy p { margin: 0; font-family: var(--sans); font-size: 16px; 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: 306px; height: 306px; background: #1C2440; }

.story { position: relative; overflow: hidden; }
.story__bg {
  position: absolute;
  top: 50%; right: -380px;
  transform: translateY(-50%);
  width: 1200px; height: 1200px;
  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: 60px 54px; }
.story__aside { max-width: 640px; margin: 0; border-left: 3px solid var(--accent); padding-left: 30px; }
.story__eyebrow { display: block; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-size: 17px; }
.story__body { margin-top: 16px; display: flex; flex-direction: column; gap: 13px; }
.story__body p { margin: 0; font-family: var(--sans); font-weight: 300; font-size: 17.5px; line-height: 1.72; color: #AAB4D2; }
.story__aside--cols { max-width: 1060px; }
.story__aside--cols .story__eyebrow { column-span: all; margin-bottom: 4px; }
.story__aside--cols .story__body { display: block; column-count: 2; column-gap: 72px; }
.story__aside--cols .story__body p { margin: 0 0 13px; break-inside: avoid; }
.story__body strong { font-weight: 600; color: var(--heading); }
.story__body em { font-style: italic; color: var(--text-2); }

.credentials { padding: 80px 54px; }
.credentials__inner { max-width: 1080px; margin: 0 auto; }
.credentials__intro { margin: 0 0 44px; text-align: left; }
.credentials__title { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.15; color: var(--heading); margin: 14px 0 0; }
.credentials__intro p { margin: 20px 0 0; font-family: var(--sans); font-size: 18px; line-height: 1.8; color: var(--text-muted); }
.credentials__subhead { font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--heading); margin: 34px 0 0; }
.cred-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 26px; }
.cred-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cred-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--panel-card); }
.cred-card--pad { padding: 26px 30px; }
.cred-card__frame { background: #EDEEF2; padding: 10px; }
.cred-card__frame img { width: 100%; height: auto; border-radius: 3px; }
.cred-card__body { padding: 22px 24px 26px; }
.cred-card__title { font-family: var(--serif); font-weight: 400; font-size: 21px; color: var(--heading); margin: 0 0 8px; }
.cred-card__text { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; }
.cred-card--pad .cred-card__text { font-size: 16px; }

.newsletter { padding: 80px 54px; text-align: center; }
.newsletter__title { font-family: var(--serif); font-weight: 300; font-size: 40px; color: var(--heading); margin: 0 0 12px; }
.newsletter__copy { font-size: 16px; line-height: 1.8; color: var(--text); margin: 0 auto 32px; max-width: 480px; }
.newsletter__form { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.newsletter__field { flex: 1; min-width: 220px; padding: 16px 20px; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 3px; color: var(--heading); font-family: var(--sans); font-size: 16px; }
.newsletter__note { font-size: 12.5px; color: var(--text-faint); margin: 16px 0 0; }
.newsletter__result { font-size: 15px; color: var(--text); margin: 14px 0 0; }

.contact { padding: 80px 54px; }
.contact__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact__title { font-family: var(--serif); font-weight: 300; font-size: 40px; color: var(--heading); margin: 14px 0 12px; }
.contact__copy { font-size: 16px; line-height: 1.8; color: var(--text); margin: 0 auto 32px; max-width: 480px; }
.contact__form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.contact__field { display: flex; flex-direction: column; gap: 7px; }
.contact__label { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.contact__input { width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 3px; color: var(--heading); font-family: var(--sans); font-size: 16px; }
.contact__input:focus { outline: none; border-color: var(--heading); }
.contact__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact__botcheck { display: none !important; }
.contact__check { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); cursor: pointer; }
.contact__check input { width: 18px; height: 18px; flex: none; accent-color: var(--heading); }
.req { color: #c0392b; }
.contact__submit { align-self: flex-start; margin-top: 4px; }
.contact__result { font-size: 15px; color: var(--text); margin: 4px 0 0; }

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

/* 13. Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .site-header { padding: 22px 32px; }
  .site-nav { gap: 20px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 32px; }
  .hero__media { order: -1; justify-content: center; }
  .hero__portrait { width: 260px; height: 260px; }
  .about-home__inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 32px; }
  .about-home__portrait { width: 220px; height: 220px; }
  .services { padding: 56px 32px; }
  .journal { padding: 60px 32px; }
  .site-footer { padding: 32px; }

  .svc-hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 32px; }
  .svc-hero__media { order: -1; }
  .svc-panels { padding: 56px 32px; }
  .svc-panel { padding: 34px; }
  .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: 36px; padding: 48px 32px; }
  .detail-hero__media { order: -1; }
  .detail-body { padding: 56px 32px; }

  .about-hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 32px; }
  .about-hero__media { order: -1; justify-content: center; }
  .story__inner { padding: 48px 32px; }
  .credentials { padding: 60px 32px; }
  .cred-grid-3 { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 60px 32px; }
}

@media (max-width: 600px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 22px; }
  .brand__name, .brand__tagline { white-space: normal; }
  .site-nav { gap: 4px 22px; }
  .site-nav a { padding: 10px 0; }
  .hero__inner { padding: 40px 22px; }
  .page-hero-title { font-size: 34px; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero__portrait { width: 190px; height: 190px; }
  .about-home__inner { padding: 48px 22px; }
  .about-home__portrait { width: 170px; height: 170px; }
  .about-home__eyebrow { font-size: 20px; }
  .services { padding: 44px 22px; }
  .services__title { font-size: 30px; }
  .service-row { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 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: 14px; margin-top: 6px; }
  .journal { padding: 48px 22px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px 22px; }

  .svc-hero__inner { padding: 40px 22px; }
  .svc-panels { padding: 44px 22px; }
  .svc-panel { padding: 26px; }
  .svc-panel__main { flex-direction: column; }

  .detail-hero__inner { padding: 40px 22px; }
  .detail-body { padding: 44px 22px; }

  .about-hero__inner { padding: 44px 22px; }
  .story__inner { padding: 40px 22px; }
  .story__aside { padding-left: 20px; }
  .credentials { padding: 48px 22px; }
  .cred-grid-3, .cred-grid-2 { grid-template-columns: 1fr; }
  .newsletter { padding: 48px 22px; }
  .newsletter__title { font-size: 32px; }
}
