/* ================================================
   INTRONAUT PRAXIS — STYLESHEET
   Fonts: Fraunces (headings) + DM Sans (body)
   Palette: Warm earthy tones from therapy space
   ================================================ */

/* --- TOKENS --- */
:root {
  --bg:           #F5F0EB;   /* warm cream — main background */
  --bg-alt:       #FDFAF5;   /* slightly lighter surface */
  --bg-dark:      #231A0E;   /* deep warm brown — statement section */
  --text:         #2C2420;   /* near-black warm */
  --text-muted:   #7A6248;   /* warm medium brown */
  --accent:       #C4652A;   /* terracotta */
  --accent-hover: #A84E1E;
  --accent-2:     #6B7F56;   /* muted olive */
  --frame:        #D4956A;   /* warm tan — portrait frame + highlights */
  --border:       #E2D5C0;
  --white:        #FDFAF5;
  --radius:       14px;
  --radius-sm:    8px;
  --nav-h:        72px;
  --max-w:        1180px;
  --section-pad:  clamp(4rem, 8vw, 7rem);
}

/* --- SKIP LINK (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }
em { font-style: italic; }

/* --- SHARED TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  font-weight: 700;
}
.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-label.light { color: var(--frame); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--frame); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(253, 250, 245, 0.75); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--text);
  color: var(--text);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--text); color: var(--white); transform: translateY(-1px); }

.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(253,250,245,0.35);
  color: var(--white);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(253,250,245,0.08);
  transform: translateY(-1px);
}


/* ================================================
   NAV
   ================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 30px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-lang {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.nav-links .nav-lang:hover { color: var(--accent); border-color: var(--accent); }

.nav-links .nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--accent-hover); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 0.5rem 2rem 1.5rem;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-lang {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-nav-link:hover { color: var(--accent); }


/* ================================================
   HERO
   ================================================ */
.hero {
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-start;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(0.5rem, 1.5vw, 1rem) 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-heading {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.3;
  margin-top: 0.25rem;
}

.hero-sub2 {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-approach-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border);
  transition: color 0.2s, text-decoration-color 0.2s;
  align-self: flex-start;
}
.hero-approach-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* Portrait column */
.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-portrait::after {
  content: '';
  display: block;
  width: 65%;
  height: 2px;
  background: var(--bg-dark);
  opacity: 0.3;
  margin-top: 0;
}

.portrait-img {
  width: 80%;
  max-width: 380px;
  object-fit: contain;
  /* Entrance animation — JS adds .visible class on load */
  opacity: 0;
  transform: translateY(28px);
}

.portrait-img.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}


/* ================================================
   SERVICES
   ================================================ */
.services {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 17, 5, 0.76);
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header .section-sub {
  margin: 0.75rem auto 0;
  color: rgba(253,250,245,0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Service card */
.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 36, 32, 0.06);
}

.service-card--unavailable {
  opacity: 0.6;
  pointer-events: none; /* disable link clicks — waiting list link below re-enables via wrapper */
}
.service-card--unavailable .btn-card--waiting {
  pointer-events: all;
}

.coming-soon-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.2rem 0.7rem;
  background: var(--text-muted);
  color: #fff;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  padding-right: 4rem; /* space for badge */
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-meta li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.service-meta li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.service-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.btn-card {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-card:hover { background: var(--accent-hover); }
.btn-card--waiting {
  background: var(--text-muted);
}
.btn-card--waiting:hover { background: #5a4738; }

.services-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: rgba(253,250,245,0.7);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,250,245,0.12);
}

.services-free-session {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services-free-session p {
  font-size: 0.95rem;
  color: rgba(253,250,245,0.75);
  line-height: 1.6;
}


/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Portrait side */
.about-portrait {
  display: flex;
  justify-content: center;
}
.about-portrait-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44,36,32,0.14);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Text side */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-credentials {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-credentials li {
  padding-left: 1rem;
  position: relative;
}
.about-credentials li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-bio {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
}

.about-memberships {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.about-memberships span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
}


/* ================================================
   THERAPY STATEMENT
   ================================================ */
.statement {
  background: var(--bg-dark);
  padding: var(--section-pad) 0;
}

.statement-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.statement-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.statement-title em {
  color: var(--frame);
}

.statement-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 3rem;
}
.statement-body p {
  font-size: 1.03rem;
  color: rgba(253,250,245,0.80);
  line-height: 1.85;
}
.statement-body em {
  color: var(--frame);
  font-style: italic;
}

.statement-closing {
  font-family: 'Fraunces', serif !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
  color: rgba(253,250,245,0.95) !important;
  line-height: 1.65 !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,149,106,0.25);
}

.statement-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ================================================
   FAQ
   ================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.faq-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-inner .section-title { margin-bottom: 2.5rem; }

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--accent); }

.faq-short {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  padding: 0 0 0.3rem;
  margin: -0.6rem 0 0;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.28s ease;
  display: inline-block;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-inner .section-title { margin-bottom: 0.5rem; }

.contact-email-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.contact-email-line a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.contact-email-line a:hover { color: var(--accent-hover); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.required { color: var(--accent); }
.form-group input,
.form-group textarea {
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C2AD97;
}
.contact-form .btn-primary { align-self: flex-start; margin-top: 0.25rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.form-note.success {
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-note.error {
  color: var(--accent-hover);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-dark);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-logo {
  height: 26px;
  filter: invert(1) brightness(0.7);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(253,250,245,0.35);
}
.footer-policy-link {
  color: rgba(253,250,245,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(253,250,245,0.15);
  transition: color 0.2s, border-color 0.2s;
}
.footer-policy-link:hover {
  color: rgba(253,250,245,0.7);
  border-color: rgba(253,250,245,0.4);
}


/* ================================================
   SOCIAL MEDIA ICONS
   ================================================ */
.social-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Light variant for dark backgrounds */
.social-links--light a {
  border-color: rgba(253,250,245,0.2);
  color: rgba(253,250,245,0.45);
}
.social-links--light a:hover {
  border-color: var(--frame);
  color: var(--frame);
}

/* Small variant for footer */
.social-links--small a {
  width: 30px;
  height: 30px;
}
.social-links--small a svg {
  width: 15px;
  height: 15px;
}

/* Vertical variant for hero sidebar */
.social-links--vertical {
  flex-direction: column;
}

/* Hero social — on desktop, floats alongside portrait via .hero-inner.
   z-index keeps the icons clickable above the portrait container. */
.hero-social {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Contact social spacing */
.contact-social {
  margin-bottom: 2rem;
}


/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet: ≤ 960px */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero stacks: text on top, portrait below (flush with services) */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0;
  }
  .hero-portrait { order: -1; }
  .hero-text { align-items: center; }
  .hero-approach-link { align-self: center; }
  .portrait-img { width: auto; max-height: 45vh; }
  .hero-social {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    order: -1; /* first in the text column = directly below the portrait */
  }

  /* Services: single column */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  /* About: stacks text first, portrait below (matches new DOM order) */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-portrait-wrap { width: 280px; height: 280px; }
  .about-text { align-items: flex-start; }

  /* Statement */
  .statement-inner { text-align: left; }
  .statement-ctas { flex-direction: column; align-items: stretch; }
  .statement-ctas .btn-primary,
  .statement-ctas .btn-outline-light { text-align: center; }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }

  .hero-heading { font-size: 2.8rem; }
  .hero-sub { font-size: 1.15rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; text-align: center; }

  .section-title { font-size: 1.85rem; }
  .statement-title { font-size: 2rem; }

  .about-img { height: 320px; }

  .service-card { padding: 1.5rem; }

  .contact-form .btn-primary { width: 100%; text-align: center; }
}

/* --- FOCUS STYLES (keyboard navigation) --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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