/* LifePath website */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --teal: #1b7a7a;
  --teal-dark: #145e5e;
  --teal-mid: #4eaeae;
  --teal-pale: #e7f4f4;
  --amber: #e8933a;
  --amber-dark: #cf7821;
  --amber-pale: #fdf3e7;
  --navy: #1c2b3a;
  --slate: #53687a;
  --muted: #6b7c8d;
  --surface: #ffffff;
  --background: #fafaf8;
  --soft: #f0f4f7;
  --border: #d4e4e4;
  --danger: #a92727;
  --success: #236c4b;
  --shadow-sm: 0 2px 10px rgba(27, 122, 122, 0.08);
  --shadow-md: 0 12px 34px rgba(27, 122, 122, 0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1160px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
main { overflow: hidden; }
.container { width: min(100% - 3rem, var(--max-width)); margin-inline: auto; }
.narrow { width: min(100%, 760px); margin-inline: auto; }
section { padding: 5.25rem 0; }
.soft-section { background: var(--soft); }
.teal-section { background: var(--teal-pale); }
.section-heading { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-block; margin-bottom: .75rem; color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--font-heading); line-height: 1.17; letter-spacing: -.025em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
h4 { margin: 0; color: var(--navy); font-size: 1rem; }
p { margin: 0 0 1rem; color: var(--slate); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.skip-link { position: fixed; z-index: 9999; top: -80px; left: 1rem; padding: .75rem 1rem; border-radius: 8px; background: var(--navy); color: #fff; }
.skip-link:focus { top: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .78rem 1.55rem; border: 2px solid transparent; border-radius: 999px; font-weight: 750; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--teal); background: transparent; color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal-dark); }
.btn-white:hover { background: var(--teal-pale); color: var(--teal-dark); }
.btn-lg { min-height: 54px; padding: .92rem 2rem; }

/* Navigation */
.site-nav { position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: var(--navy); }
.brand-mark { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 11px; background: var(--teal); color: #fff; font-size: 1.1rem; font-weight: 850; letter-spacing: -.05em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-size: 1.12rem; font-weight: 850; }
.brand-tag { margin-top: .18rem; color: var(--muted); font-size: .66rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a { padding: .48rem .78rem; border-radius: 8px; color: #344b5e; font-size: .9rem; font-weight: 650; }
.nav-links a:hover, .nav-links a.active { background: var(--teal-pale); color: var(--teal-dark); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); }
.mobile-menu { display: none; padding: .5rem 0 1.25rem; border-top: 1px solid var(--border); }
.mobile-menu.open { display: grid; }
.mobile-menu a { padding: .8rem 0; border-bottom: 1px solid var(--soft); color: var(--navy); font-weight: 650; }
.mobile-menu .btn { margin-top: 1rem; color: #fff; }

/* Homepage hero */
.hero { position: relative; padding: 6rem 0 5.5rem; background: linear-gradient(135deg, #145e5e 0%, #1b7a7a 52%, #2a9090 100%); color: #fff; }
.hero::after { content: ""; position: absolute; inset: -40% -20% auto auto; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; }
.hero h1 { color: #fff; }
.hero .lead { max-width: 700px; margin: 1.25rem 0 2rem; color: rgba(255,255,255,.86); }
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.35rem; padding: .4rem .9rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.92); font-size: .77rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem 1.25rem; max-width: 580px; margin-top: 2.25rem; }
.trust-pill { display: flex; align-items: center; gap: .55rem; min-width: 0; color: rgba(255,255,255,.86); font-size: .83rem; font-weight: 650; }
.trust-pill svg { flex: 0 0 auto; }
.hero-panel { padding: 2rem; border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-lg); background: rgba(255,255,255,.11); backdrop-filter: blur(10px); }
.hero-panel h3 { margin-bottom: 1rem; color: #fff; font-family: var(--font-body); font-size: 1.08rem; }
.hero-point { display: flex; align-items: flex-start; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-point:last-child { border-bottom: 0; }
.hero-point-icon { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: rgba(255,255,255,.15); }
.hero-point strong { display: block; color: #fff; font-size: .9rem; }
.hero-point span { color: rgba(255,255,255,.68); font-size: .78rem; }

/* Credentials */
.credentials-bar { padding: 1.35rem 0; border-bottom: 1px solid var(--border); background: #fff; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem 1.5rem; }
.credential { display: flex; align-items: center; gap: .7rem; min-width: 0; color: #3b5265; font-size: .82rem; font-weight: 720; }
.credential-icon { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 9px; background: var(--teal-pale); color: var(--teal); }

/* Cards and grids */
.audience-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-bottom: 2.5rem; }
.tab-button { padding: .65rem 1.3rem; border: 2px solid var(--border); border-radius: 999px; background: #fff; color: var(--slate); font-weight: 750; }
.tab-button[aria-selected="true"], .tab-button:hover { border-color: var(--teal); background: var(--teal); color: #fff; }
.tab-panel[hidden] { display: none; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.card { display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-md); }
.card-icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 1.15rem; border-radius: 12px; background: var(--teal-pale); color: var(--teal); }
.card h3 { margin-bottom: .65rem; font-family: var(--font-body); font-size: 1.1rem; }
.card p { font-size: .92rem; }
.card .card-action { margin-top: auto; padding-top: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.service-card { padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.service-card h3 { margin-bottom: .55rem; font-family: var(--font-body); font-size: 1.05rem; }
.service-card p { font-size: .88rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.3rem; }
.process-step { position: relative; text-align: center; }
.process-number { display: grid; width: 56px; height: 56px; place-items: center; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--teal); color: #fff; font-size: 1.25rem; font-weight: 850; }
.process-step h3 { margin-bottom: .5rem; font-family: var(--font-body); font-size: 1.02rem; }
.process-step p { font-size: .86rem; }
.process-note { max-width: 760px; margin: 2.3rem auto 0; padding: 1.1rem 1.25rem; border-left: 4px solid var(--amber); border-radius: 10px; background: var(--amber-pale); color: var(--slate); font-size: .88rem; }

/* Banner */
.contact-banner { padding: 3.5rem 0; background: linear-gradient(135deg, var(--navy), #3a4f62); }
.contact-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-banner h2 { color: #fff; }
.contact-banner p { margin-top: .5rem; color: rgba(255,255,255,.78); }

/* Page hero */
.page-hero { padding: 4.25rem 0; background: linear-gradient(135deg, var(--teal-dark), var(--teal)); text-align: center; }
.page-hero .eyebrow { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.55rem); }
.page-hero p { max-width: 660px; margin: .8rem auto 0; color: rgba(255,255,255,.82); font-size: 1.05rem; }

/* Therapist selector */
.therapist-selector-section { background: var(--background); }
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 1.5rem;
}
.therapist-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.therapist-card:hover,
.therapist-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--teal-mid);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.therapist-card:focus-visible { outline: 3px solid rgba(27,122,122,.22); outline-offset: 3px; }
.therapist-card-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--teal-pale);
}
.therapist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform .3s ease;
}
.therapist-card:hover .therapist-card-photo img { transform: scale(1.025); }
.therapist-card-content { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.therapist-role {
  margin-bottom: .45rem;
  color: var(--teal-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.therapist-card h3 { margin-bottom: .55rem; font-family: var(--font-body); font-size: 1.3rem; }
.therapist-card p { font-size: .88rem; }
.therapist-card-link { margin-top: auto; padding-top: 1rem; color: var(--teal-dark); font-size: .87rem; font-weight: 800; }
.therapist-card-link span { display: inline-block; transition: transform .2s ease; }
.therapist-card:hover .therapist-card-link span { transform: translateX(4px); }
.therapist-profile-hero { position: relative; }
.profile-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  font-weight: 700;
}
.profile-back-link:hover { color: #fff; }

/* About */
.profile-layout { display: grid; grid-template-columns: 380px 1fr; align-items: start; gap: 4rem; }
.profile-photo { overflow: hidden; aspect-ratio: 4 / 5; margin: 0; border-radius: var(--radius-lg); background: var(--teal-pale); box-shadow: var(--shadow-md); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.credentials-card { margin-top: 1.3rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.credentials-card h3 { margin-bottom: .9rem; font-family: var(--font-body); font-size: 1rem; }
.credentials-list { display: grid; gap: .75rem; }
.credentials-list .credential { align-items: flex-start; }
.profile-copy h2 { margin-bottom: .35rem; }
.profile-title { margin-bottom: 1.5rem; color: var(--teal-dark); font-weight: 750; }
.profile-copy h3 { margin: 2rem 0 .75rem; font-family: var(--font-body); font-size: 1.15rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 1.5rem; }
.tag { padding: .38rem .82rem; border: 1px solid var(--teal-mid); border-radius: 999px; background: var(--teal-pale); color: var(--teal-dark); font-size: .8rem; font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.value-card { padding: 1.55rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; }
.value-card h3 { margin-bottom: .45rem; font-family: var(--font-body); font-size: 1rem; }
.value-card p { font-size: .86rem; }

/* Services detail */
.service-detail-list { display: grid; gap: 1.25rem; }
.service-detail { display: grid; grid-template-columns: 58px 1fr; gap: 1.35rem; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.service-detail h2 { margin-bottom: .55rem; font-family: var(--font-body); font-size: 1.25rem; }
.service-detail .card-icon { margin: 0; }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-detail p { font-size: .92rem; }
.service-detail ul { margin: .9rem 0 0; padding-left: 1.2rem; color: var(--slate); font-size: .9rem; }
.fee-panel { max-width: 720px; margin: 0 auto; padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; text-align: center; box-shadow: var(--shadow-sm); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 3.5rem; }
.contact-details { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: .9rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .credential-icon { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 13px; align-self: center; }
.contact-icon svg { display: block; width: 24px; height: 24px; margin: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item strong { display: block; margin-bottom: .15rem; }
.contact-item span { display: block; color: var(--slate); font-size: .88rem; }
.notice { padding: 1.25rem; border-left: 4px solid var(--amber); border-radius: 10px; background: var(--amber-pale); }
.notice h3 { margin-bottom: .4rem; font-family: var(--font-body); font-size: 1rem; }
.notice p { font-size: .85rem; }
.form-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.form-card h2 { margin-bottom: .6rem; font-family: var(--font-body); font-size: 1.4rem; }
.form-intro { font-size: .9rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: .38rem; color: var(--navy); font-size: .86rem; font-weight: 730; }
.required { color: var(--amber-dark); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .78rem .9rem; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--navy); }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,122,122,.12); }
.checkbox { display: flex; align-items: flex-start; gap: .65rem; margin: .5rem 0 1.2rem; color: var(--slate); font-size: .83rem; }
.checkbox input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--teal); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-message { display: none; margin-bottom: 1rem; padding: .85rem 1rem; border-radius: 9px; font-size: .86rem; }
.form-message.error { display: block; border: 1px solid #edb3b3; background: #fff1f1; color: var(--danger); }
.form-message.success { display: block; border: 1px solid #add8c4; background: #eefaf4; color: var(--success); }
.form-help { margin-top: .75rem; color: var(--muted); font-size: .76rem; text-align: center; }

/* Privacy */
.prose { max-width: 810px; margin-inline: auto; }
.prose h2 { margin: 2.35rem 0 .75rem; font-size: 1.55rem; }
.prose h3 { margin: 1.5rem 0 .5rem; font-family: var(--font-body); font-size: 1.05rem; }
.prose ul { padding-left: 1.25rem; color: var(--slate); }
.prose li { margin-bottom: .4rem; }

/* Footer */
.site-footer { padding: 4rem 0 2rem; background: var(--navy); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: rgba(255,255,255,.45); }
.footer-brand p { max-width: 430px; margin-top: 1rem; color: rgba(255,255,255,.63); font-size: .84rem; }
.footer-column h3 { margin-bottom: .85rem; color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-column a { display: block; margin: .45rem 0; color: rgba(255,255,255,.64); font-size: .86rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .55rem; }
.footer-badge { padding: .2rem .55rem; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: rgba(255,255,255,.07); }

/* Cookie preferences */
.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: 0 -12px 34px rgba(28,43,58,.15);
  backdrop-filter: blur(12px);
}
.cookie-banner[hidden] { display: none; }
.cookie-summary[hidden],
.cookie-details[hidden] { display: none; }
.cookie-banner-inner { max-width: 1160px; }
.cookie-summary { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cookie-copy { max-width: 680px; }
.cookie-copy strong,
.cookie-details-heading strong {
  display: block;
  margin-bottom: .18rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.3;
}
.cookie-copy p,
.cookie-details-heading p,
.cookie-preference p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}
.cookie-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 1rem; }
.cookie-actions .btn,
.cookie-details-actions .btn { min-height: 44px; padding: .68rem 1.2rem; font-size: .84rem; white-space: nowrap; }
.cookie-text-button {
  padding: .45rem 0;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: .84rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text-button:hover { color: var(--navy); }
.cookie-text-button:focus-visible,
.cookie-close:focus-visible {
  outline: 3px solid rgba(27,122,122,.22);
  outline-offset: 3px;
}
.cookie-details { max-width: 840px; margin-inline: auto; }
.cookie-details-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cookie-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: var(--soft);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
}
.cookie-preference-list { display: grid; gap: .6rem; margin: 1rem 0; }
.cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--background);
}
.cookie-preference strong { color: var(--navy); font-size: .88rem; }
.cookie-status {
  flex: 0 0 auto;
  padding: .28rem .62rem;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: .74rem;
  font-weight: 800;
}
.cookie-status-off { background: var(--soft); color: var(--muted); }
.cookie-details-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-details-actions a { font-size: .84rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .profile-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .profile-photo { max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.3rem; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 2rem, var(--max-width)); }
  section { padding: 4rem 0; }
  .nav-inner { min-height: 72px; gap: .6rem; }
  .nav-actions { gap: .25rem; }
  .nav-actions .btn { min-height: 42px; padding: .62rem .95rem; font-size: .8rem; }
  .menu-toggle { width: 44px; height: 44px; padding: 9px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { padding: 4.5rem 0 4rem; }
  .hero-ctas { display: grid; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem .75rem; }
  .trust-pill { align-items: flex-start; white-space: normal; font-size: .76rem; }
  .credentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credential { align-items: flex-start; font-size: .76rem; }
  .card-grid, .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-banner-inner { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cookie-summary { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
}
@media (max-width: 430px) {
  .brand { gap: .55rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 1.02rem; }
  .brand-tag { display: none; }
  .nav-actions .btn { padding: .58rem .8rem; font-size: .76rem; }
  .hero-trust, .credentials-grid { grid-template-columns: 1fr; }
  .trust-pill, .credential { align-items: center; }
  .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail .card-icon { margin-bottom: .25rem; }
  .form-card { padding: 1.35rem; }
  .cookie-banner { max-height: calc(100vh - 1rem); overflow-y: auto; padding: 1rem 0; }
  .cookie-actions,
  .cookie-details-actions,
  .cookie-preference { align-items: stretch; flex-direction: column; }
  .cookie-actions .btn,
  .cookie-details-actions .btn { width: 100%; }
  .cookie-text-button { align-self: center; }
  .cookie-status { align-self: flex-start; }
}
