:root {
  --bg: #f6f4ef;
  --paper: #ffffff;
  --paper-soft: #fbf9f4;
  --ink: #111111;
  --muted: #696f79;
  --line: #e4e0d8;
  --accent: #6d8aa6;
  --accent-soft: #eef3f7;
  --gold: #cfa94a;
  --neon-pink: #ff0080;
  --max: 1040px;
  --radius: 4px;
  --shadow: 0 22px 40px rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.04);
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: "Times New Roman", Times, serif;
  background: linear-gradient(180deg, #f8f6f1 0%, #f3f0ea 100%);
  color: var(--ink);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:not(.no-animation) {
  animation: pageLoad 0.4s ease-in-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-transition-out {
  animation: pageUnload 0.3s ease-in-out forwards;
}

@keyframes pageUnload {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #506a83;
  outline-offset: 2px;
}

.shell,
.main-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228,224,216,.9);
  padding-top: 24px;
  padding-bottom: 16px;
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 8px;
  background: rgba(255,255,255,.98);
}
.brand-wrap { text-align: center; }
.brand-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #80848c;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
  overflow: hidden;
}

.site-header.is-scrolled .brand-eyebrow {
  opacity: 0;
  max-height: 0;
  margin: 0;
}
.site-title {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: font-size 0.3s ease, margin 0.3s ease;
}

.site-header.is-scrolled .site-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.site-title:hover { text-decoration: none; }

.brand-logo {
  display: block;
  max-width: 180px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
  overflow: hidden;
}

.site-header.is-scrolled .brand-logo {
  opacity: 0;
  max-height: 0;
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.site-nav-line {
  flex: 1;
  max-width: 260px;
  height: 1px;
  background: var(--line);
}
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.site-nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon-pink);
  transition: color .18s ease;
}
.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] { color: #000; text-decoration: none; }
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--neon-pink);
}

.menu-toggle {
  display: none;
  width: 100%;
  margin: 10px auto 0;
  border: 1px solid var(--line);
  background: #faf9f4;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.menu-toggle__label {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 22px;
  height: 1px;
  background: #111;
  position: relative;
  transition: transform .2s ease;
}
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after { transform: rotate(-45deg); top: 0; }

.main-shell {
  margin-top: 24px;
  margin-bottom: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding-top: 0;
  padding-bottom: 28px;
}
.main-shell--narrow { max-width: 920px; }
.content-section {
  padding-top: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}
.content-section:last-child { border-bottom: none; padding-bottom: 14px; }
.content-section--page { padding-top: 40px; }
.content-section--reviews {
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.home-quote {
  padding: 50px 0 26px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at top, rgba(109,138,166,.08), transparent 46%);
}
.home-quote-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.home-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #7f8791;
}
.home-title {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .03em;
}
.home-quote-block {
  max-width: 720px;
  margin: 0 auto;
}
.home-quote-text {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  font-style: italic;
  color: #252525;
}
.home-quote-author {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #787e86;
}
.reassurance-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.reassurance-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(109,138,166,.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #425b73;
  font-size: 12px;
}
.reassurance-chip::before {
  content: "•";
  font-size: 13px;
  color: var(--neon-pink);
}

.hero-image {
  margin: 0 auto 24px;
  width: 60%;
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
  box-shadow: var(--shadow-soft);
  background: #f2eee7;

  /*border-right: 12px solid;*/
  /*border-image: linear-gradient(to bottom, #ff0080, #ff66b3, #ff0080) 1;*/
  /*border-top: none;*/
  /*border-bottom: none;*/
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .25s ease-out;
  will-change: transform;
}

.section-kicker,
.team-role,
.cta-label,
.footer-links,
.footer-small,
.footer-heading {
  text-transform: uppercase;
  letter-spacing: .22em;
}
.section-kicker {
  text-align: center;
  font-size: 11px;
  color: #989898;
  margin: 0 0 10px;
}
.section-title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--neon-pink);
  transition: color .18s ease;
}
.section-title:hover {
  color: #000;
}
.section-title--page { font-size: 28px; }
.section-intro {
  max-width: 670px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.section-pill {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #555;
}
.section-pill span {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #faf8f2;
}
.text-column {
  max-width: 710px;
  margin: 0 auto;
  font-size: 15px;
  text-align: justify;
  color: var(--muted);
}
.text-column p,
.page-body p { margin: 0; }
.text-column p + p,
.page-body p + p { margin-top: 14px; }
.text-column a,
.page-body a,
.footer-contact a,
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.subheading {
  margin: 34px 0 12px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #444;
}
.subheading--page { margin-top: 32px; }
.simple-list {
  margin: 12px 0 0;
  padding-left: 20px;
}
.simple-list li {
  color: var(--neon-pink);
}
.simple-list li > * {
  color: var(--ink);
}
.simple-list li + li { margin-top: 6px; }

.urgent-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  font-size: 14px;
}
.urgent-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.urgent-list li:last-child { border-bottom: 1px solid var(--line); }
.urgent-label,
.contact-note {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
}
.urgent-label { display: block; }
.urgent-main {
  display: block;
  margin-top: 3px;
  font-weight: 600;
  color: #222;
}
.urgent-note { display:block; margin-top: 3px; font-size: 13px; }

.team-list,
.cta-row,
.page-cta-row {
  max-width: 840px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.team-card,
.cta-card,
.archive-card,
.review-card,
.contact-form-card,
.related-links {
  border: 1px solid var(--line);
  background: #faf9f4;
  box-shadow: 0 10px 24px rgba(0,0,0,.035);
}
.team-card {
  max-width: 360px;
  padding: 22px 20px 20px;
}
.team-photo {
  margin-bottom: 14px;
  overflow: hidden;
  border-left: 10px solid;
  border-right: 10px solid;
  border-image: linear-gradient(to bottom, #ff0080, #ff66b3, #ff0080) 1;
  border-top: none;
  border-bottom: none;
  border-radius: var(--radius);
}
.team-name {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #222;
}
.team-role {
  margin-bottom: 10px;
  font-size: 11px;
  color: #888;
}
.team-bio { font-size: 13px; color: var(--muted); }
.team-bio p + p { margin-top: 8px; }

.cta-card {
  flex: 1 1 220px;
  padding: 18px 18px 16px;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.cta-card:hover {
  text-decoration: none;
  border-color: #c7c1b7;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.cta-label {
  margin-bottom: 6px;
  font-size: 11px;
  color: #888;
}
.cta-main {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}
.cta-note,
.contact-block {
  font-size: 13px;
  color: var(--muted);
}

.archive-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
  margin: 28px auto 0;
}
.archive-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); max-width: 860px; }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 880px; }
.reviews-grid--home { margin-top: 22px; }
.archive-card,
.review-card {
  padding: 22px 20px;
}
.archive-card__meta {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a8f97;
}
.archive-card__title {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
}
.archive-card__title a:hover,
.archive-card__link:hover { text-decoration: none; }
.archive-card__excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.archive-card__link {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px auto 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #faf8f2;
  font-size: 14px;
}
.reviews-summary--page { display: flex; }
.review-card__stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: .18em;
  margin-bottom: 14px;
}
.review-card__text {
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
}
.review-card__author {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7f8791;
}
.review-card__source {
  margin: 10px 0 0;
  font-size: 12px;
}
.review-card__source a {
  font-style: italic;
  font-size: 11px;
  text-transform: lowercase;
  color: #6a7078;
}

.related-links {
  max-width: 840px;
  margin: 28px auto 0;
  padding: 18px 20px;
}
.related-links__title {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #80848c;
}
.related-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.related-links__items a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.related-links__items a::before {
  content: "→";
  color: var(--neon-pink);
}

.contact-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-block p + p { margin-top: 10px; }
.contact-strong {
  font-weight: 600;
  color: #222;
}
.contact-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 32px 24px 36px;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}
.footer-title {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-copy {
  margin: 0;
  color: #666b73;
}
.footer-line {
  height: 1px;
  max-width: var(--max);
  margin: 0 auto 18px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.footer-heading {
  margin: 0 0 12px;
  font-size: 11px;
  color: #6b7076;
}
.footer-links {
  margin-top: 10px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.9;
}
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 6px 0 0;
  text-transform: none;
  white-space: nowrap;
}
.footer-links--stacked span { display: block; }
.footer-small {
  margin-top: 10px;
  font-size: 10px;
  opacity: .78;
}
.footer-small--center { text-align: center; }
.footer-contact { margin: 0; }
.footer-contact-line {
  display: block;
  margin-bottom: 4px;
}
.footer-col--contact { padding-left: 18px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 12px;
  color: #7b8088;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.contact-form-section { max-width: 760px; margin: 36px auto 0; }
.contact-form-card,
.admin-card {
  padding: 24px;
}
.contact-form { margin-top: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #4d5560; }
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfc9bf;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: #111;
  border-radius: 2px;
}
.form-field textarea { resize: none; min-height: 160px; }
.field-help { margin: 0; font-size: 12px; color: #6f7580; }
.required-dot { color: #9f3842; font-weight: 700; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--neon-pink);
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.cta-button:hover { 
  text-decoration: none; 
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: translateY(-1px); 
}
.cta-button--ghost { background: transparent; color: #111; }
.form-alert {
  padding: 14px 16px;
  border: 1px solid;
  margin-top: 14px;
  font-size: 14px;
}
.form-alert--success { background: #eef7ef; border-color: #b7d6bb; color: #2f5730; }
.form-alert--error { background: #fcf1f0; border-color: #e4b0aa; color: #8c342a; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.error-screen {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.error-screen .section-intro { margin-bottom: 24px; }
.error-actions,
.error-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.error-links {
  margin-top: 18px;
  font-size: 13px;
}
.error-links a { text-decoration: underline; text-underline-offset: 3px; }

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.15);
  background: rgba(17,17,17,.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 50;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav ul { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .footer-col--contact { padding-left: 0; }
}

@media (max-width: 820px) {
  .site-header { position: static; }
  .site-title { font-size: 32px; margin-bottom: 12px; }
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav-line { display: none; }
  .site-nav ul {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .site-nav a { padding: 8px 0; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .shell,
  .main-shell { padding-left: 18px; padding-right: 18px; }
  .main-shell { margin-top: 18px; }
  .content-section { padding-top: 30px; padding-bottom: 30px; }
  .home-quote { padding: 36px 0 18px; }
  .section-title { font-size: 19px; letter-spacing: .14em; }
  .section-title--page { font-size: 24px; }
  .section-intro,
  .text-column { font-size: 14px; }
  .team-card,
  .archive-card,
  .review-card { max-width: 100%; }
  .cta-card { flex-basis: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .cta-button { width: 100%; }
  .reviews-summary { flex-direction: column; gap: 4px; border-radius: 14px; }
}
