/* =========================================================
   Jessica Hughes Psychotherapy — FINAL OPTION
   Visual system: Option B ("Stormy morning" palette)
   Typography: Option A (Newsreader + Mulish) — client's choice
   ========================================================= */

:root {
  /* Brand palette */
  --slate-blue: #6a89a7;
  --pale-sky: #bdddfc;
  --cornflower: #88bdf2;
  --charcoal: #384959;

  /* Derived / supporting tones */
  --bg: #f7fafd;
  --bg-soft: #eef4fa;
  --surface: #ffffff;
  --text: #2c3a47;
  --text-muted: #5d7184;
  --line: #dbe6f1;

  /* Typography — Option A fonts */
  --font-head: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(56, 73, 89, 0.06);
  --shadow-md: 0 14px 40px rgba(56, 73, 89, 0.12);
  --transition: 0.35s ease;
}

/* ----------------------- Reset ----------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--slate-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--charcoal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1.1em;
}

.muted {
  color: var(--text-muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ----------------------- Layout helpers ----------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--tight {
  padding: 40px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 14px;
  font-weight: 700;
}

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--slate-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(106, 137, 167, 0.35);
}

.btn--primary:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--slate-blue);
}

.btn--ghost:hover {
  background: var(--slate-blue);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--charcoal);
}

.btn--light:hover {
  background: var(--pale-sky);
  color: var(--charcoal);
}

/* ----------------------- Header / Nav (Option B) ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 250, 253, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__brand img {
  height: 56px;
  width: auto;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav__brand-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-blue);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--cornflower);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__links a.is-active {
  color: var(--slate-blue);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------- Hero (Option B) ----------------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 56px 0 64px;
}

.hero__content .eyebrow {
  margin-bottom: 18px;
}

.hero__content h1 {
  margin-bottom: 22px;
}

.hero__content p {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 30em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pill {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--slate-blue);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.hero__badge {
  position: absolute;
  left: -24px;
  bottom: 36px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  max-width: 230px;
}

.hero__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--charcoal);
}

.hero__badge span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----------------------- Cards / grids ----------------------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--slate-blue);
  margin-bottom: 20px;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin: 0;
}

/* ----------------------- Split feature ----------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split__content .eyebrow {
  margin-bottom: 12px;
}

/* ----------------------- Format blocks (in-person / online) ----------------------- */
.format {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.format__icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--pale-sky);
  color: var(--charcoal);
  display: grid;
  place-items: center;
}

.format__icon svg {
  width: 26px;
  height: 26px;
}

.format h3 {
  margin-bottom: 6px;
}

.format p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ----------------------- Quote ----------------------- */
.quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0;
  font-style: italic;
}

.quote .mark {
  font-size: 4rem;
  color: var(--cornflower);
  line-height: 0.4;
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-head);
}

/* ----------------------- CTA band ----------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--slate-blue), var(--charcoal));
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40em;
  margin: 0 auto 28px;
}

/* ----------------------- About ----------------------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about__photo {
  position: sticky;
  top: 100px;
}

.about__photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: top center;
}

.placeholder-note {
  margin-top: 12px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
}

.placeholder-note code {
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.78rem;
}

/* About — qualifications card (Option A) */
.about__creds {
  margin-top: 20px;
}

.about__creds-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.about__creds-list {
  margin: 0;
  padding-left: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.about__body h2 {
  font-size: 1.6rem;
  margin-top: 1.2em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
  padding: 0;
  list-style: none;
}

.tags li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--slate-blue);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ----------------------- Page hero (inner pages) ----------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  padding: 52px 0 44px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

/* Tighter spacing between an inner-page hero and the first content block.
   Applied per-page (e.g. About, FAQ) so it never affects other pages. */
.page-hero--tight {
  padding-bottom: 16px;
}

.section--flush-top {
  padding-top: 24px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ----------------------- Services flow ----------------------- */
.services-grid .card {
  display: flex;
  flex-direction: column;
}

/* ----------------------- Workshop section ----------------------- */
.workshop-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.workshop-intro__body h2 {
  margin-bottom: 16px;
}

.workshop-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

.workshop-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.workshop-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.workshop-topics h3 {
  margin-bottom: 20px;
}

.workshop-closing {
  display: flex;
  flex-direction: column;
}

.workshop-closing p {
  color: var(--text-muted);
}

.workshop-closing .btn {
  margin-top: 24px;
  align-self: center;
}

@media (max-width: 960px) {
  .workshop-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .workshop-intro__media {
    max-height: 280px;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .workshop-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ----------------------- Checklist (workshop topics) ----------------------- */
.check-list {
  list-style: none;
  margin: 8px 0 1.3em;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--pale-sky);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23384959' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4 10-10'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 560px) {
  .check-list {
    grid-template-columns: 1fr;
  }
}

/* ----------------------- Therapy-centre gallery ----------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ----------------------- FAQ accordion ----------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:focus-visible {
  outline: 2px solid var(--cornflower);
  outline-offset: -4px;
}

.faq__marker {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
}

.faq__marker::before,
.faq__marker::after {
  content: "";
  position: absolute;
  background: var(--slate-blue);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq__marker::before {
  top: 12px;
  left: 4px;
  width: 18px;
  height: 2px;
}

.faq__marker::after {
  top: 4px;
  left: 12px;
  width: 2px;
  height: 18px;
}

.faq__item[open] .faq__marker::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 26px 24px;
  color: var(--text-muted);
}

.faq__answer p {
  margin: 0 0 0.8em;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.faq__tags li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--slate-blue);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ----------------------- Contact ----------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cornflower);
  box-shadow: 0 0 0 4px rgba(136, 189, 242, 0.2);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field .error-msg {
  display: none;
  color: #c0496b;
  font-size: 0.83rem;
  margin-top: 6px;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #d98aa3;
}

.field.has-error .error-msg {
  display: block;
}

.form-privacy {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-privacy a {
  color: var(--slate-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-status.is-success {
  display: block;
  background: #e8f4ec;
  color: #2f6b46;
}

.form-status.is-error {
  display: block;
  background: #fbeaef;
  color: #a23b5a;
}

/* "Three steps" reassurance strip */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
}

.step__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--pale-sky);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-weight: 600;
}

.step__icon {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--slate-blue);
  display: grid;
  place-items: center;
}

.step__icon svg {
  width: 22px;
  height: 22px;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item .info-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--slate-blue);
  display: grid;
  place-items: center;
}

.info-item .info-icon svg {
  width: 22px;
  height: 22px;
}

.info-item h4 {
  margin: 0 0 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-item p,
.info-item a {
  margin: 0;
  font-size: 1.02rem;
  color: var(--charcoal);
}

.info-item p a {
  color: var(--slate-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.info-item p a:hover {
  color: var(--charcoal);
}

.map-embed {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ----------------------- Footer (simplified) ----------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-simple__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-simple__brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-simple__brand span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
}

.footer-simple__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.socials {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}

.socials a:hover {
  background: var(--slate-blue);
  color: #fff;
  transform: translateY(-2px);
}

.socials svg {
  width: 20px;
  height: 20px;
}

.footer-simple__legal {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-simple__legal a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-simple__legal a:hover {
  color: var(--pale-sky);
}

.footer-simple__credit {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-simple__credit a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition);
}

.footer-simple__credit a:hover {
  color: var(--pale-sky);
}

/* ----------------------- Scroll reveal ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ----------------------- Responsive ----------------------- */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 0 48px;
  }
  .hero__media {
    order: -1;
  }
  .hero__media img {
    height: 380px;
  }
  .hero__badge {
    left: 16px;
  }
  .split,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .about__photo {
    position: static;
    max-width: 420px;
  }
  .grid--3,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: flex;
  }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--surface);
    padding: 96px 32px 32px;
    box-shadow: var(--shadow-md);
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav__links.is-open {
    transform: translateX(0);
  }
  .nav__links a {
    font-size: 1.1rem;
    padding: 8px 0;
  }
  .nav__cta .btn {
    display: none;
  }
  .section {
    padding: 48px 0;
  }
  .cta-band {
    padding: 44px 26px;
  }
}

@media (max-width: 540px) {
  .grid--3,
  .grid--2,
  .gallery,
  .steps {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 26px;
  }
  .hero__media img {
    height: 300px;
  }
}
