/* ============================================================================
   SOMETHING TO TALK ABOUT — Counselling with Renée Cipollone
   Design system + styles
   ----------------------------------------------------------------------------
   Vibe:  warm, open, friendly — "like calling a friend." Professional but
          uncomplicated. Light and airy rather than moody.
   Palette: warm cream, friendly coral, grounded teal, sunny ochre.
   Type:  Poppins (friendly headings) + Mulish (warm body) + Caveat (handwritten)
   ============================================================================ */

:root {
  /* Colours */
  --cream:       #fff7ef;
  --cream-deep:  #ffe9d8;
  --paper:       #fffdfb;
  --ink:         #3b2b29;
  --ink-soft:    #715b54;
  --coral:       #e1765a;
  --coral-deep:  #c75b40;
  --teal:        #4f8c84;
  --teal-deep:   #356b64;
  --ochre:       #ebb14a;
  --blush:       #f6d8c6;
  --blush-soft:  #fce7da;

  /* Type */
  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;

  /* Shape */
  --maxw: 1140px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 6px 22px rgba(120, 70, 50, 0.08);
  --shadow-md: 0 20px 55px rgba(120, 70, 50, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
}

a { color: var(--coral-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.85rem); }
.section-lead { color: var(--ink-soft); margin-top: 1rem; font-size: 1.08rem; }
.section-note { color: var(--ink-soft); font-size: 0.9rem; font-style: italic; margin-top: 0.75rem; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--coral); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 12px 26px rgba(225, 118, 90, 0.34); }
.btn-primary:hover { background: var(--coral-deep); box-shadow: 0 16px 32px rgba(225, 118, 90, 0.42); }
.btn-ghost { background: #fff; color: var(--teal-deep); border-color: rgba(79, 140, 132, 0.4); }
.btn-ghost:hover { border-color: var(--teal); background: rgba(79, 140, 132, 0.06); }
.btn-small { padding: 0.6rem 1.15rem; font-size: 0.92rem; background: var(--coral); color: #fff; box-shadow: 0 8px 18px rgba(225,118,90,0.28); }
.btn-small:hover { background: var(--coral-deep); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV  (hero is light → dark text throughout)
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 0.6rem;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled { background: rgba(255, 247, 239, 0.9); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--coral); display: grid; place-items: center; transition: transform 0.4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--ink); letter-spacing: -0.02em; }
.brand-sub { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--teal-deep); margin-top: 3px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > a:not(.btn) { color: var(--ink); font-weight: 700; font-size: 0.98rem; position: relative; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--coral); transition: width 0.3s var(--ease); }
.nav-links > a:not(.btn):hover { text-decoration: none; }
.nav-links > a:not(.btn):hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }

/* ============================================================
   HERO  (light + drifting conversation bubbles)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-block: 8rem 6rem; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, #fff6ee 0%, #ffe7d4 50%, #ffdbc6 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 82% 18%, rgba(235, 177, 74, 0.34) 0%, transparent 70%),
    radial-gradient(45% 55% at 12% 78%, rgba(79, 140, 132, 0.20) 0%, transparent 70%),
    radial-gradient(50% 50% at 50% 35%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 5; max-width: 860px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; font-weight: 800; color: var(--teal-deep); margin-bottom: 1.3rem; }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.8rem, 1.5rem + 6vw, 6rem); font-weight: 700;
  line-height: 1.0; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='20' viewBox='0 0 120 20'%3E%3Cpath d='M3 13 C 28 5, 52 5, 72 11 S 108 17, 117 7' fill='none' stroke='%23ebb14a' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: left 92%; background-size: 100% 0.42em; padding-bottom: 0.12em;
}
.hero-sub { font-size: clamp(1.08rem, 0.95rem + 0.7vw, 1.38rem); color: var(--ink-soft); max-width: 640px; margin-inline: auto; line-height: 1.55; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-trust { margin-top: 1.6rem; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: var(--coral-deep); font-family: var(--font-hand); font-size: 1.25rem;
}
.scroll-cue:hover { text-decoration: none; color: var(--coral); }
.scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   WELCOME NOTE
   ============================================================ */
.welcome-note { background: var(--paper); }
.note-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.note-lead { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem, 1rem + 1.7vw, 2.1rem); line-height: 1.35; color: var(--ink); letter-spacing: -0.01em; }
.note-body { margin-top: 1.4rem; font-size: 1.12rem; color: var(--ink-soft); }
.note-sign { font-family: var(--font-hand); font-size: 2rem; color: var(--coral); margin-top: 1.2rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-portrait { position: relative; }
.portrait-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--blush); aspect-ratio: 4/5; rotate: -2deg; border: 9px solid var(--paper); }
.portrait-illus { width: 100%; height: 100%; }
.portrait-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-badge { position: absolute; bottom: -10px; right: 4%; background: var(--ochre); color: #4a3411; font-family: var(--font-hand); font-weight: 700; font-size: 1.5rem; padding: 0.2rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-sm); rotate: 3deg; }
.about-text h2 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.cred-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.cred-list li { background: var(--blush-soft); color: var(--coral-deep); font-weight: 700; font-size: 0.84rem; padding: 0.45rem 0.95rem; border-radius: 999px; }
.about-foot { font-family: var(--font-hand) !important; font-size: 1.7rem !important; color: var(--teal-deep) !important; line-height: 1.25; margin-top: 1.6rem; }

/* ============================================================
   EMPATHY (chat-bubble cards)
   ============================================================ */
.empathy { background: var(--blush-soft); }
.empathy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.feel-card {
  background: var(--paper); border-radius: 22px 22px 22px 6px; padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm); position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feel-card::after { content: ""; position: absolute; left: 26px; bottom: -11px; width: 22px; height: 14px; background: var(--paper); clip-path: polygon(0 0, 100% 0, 18% 100%); filter: drop-shadow(0 6px 4px rgba(120,70,50,0.05)); }
.feel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feel-card p { font-family: var(--font-head); font-weight: 500; font-size: 1.12rem; color: var(--ink); line-height: 1.4; }
.bubble-tag { display: none; }
.empathy-foot { text-align: center; margin-top: 2.6rem; font-family: var(--font-hand); font-size: 1.8rem; color: var(--ink-soft); }
.empathy-foot a { color: var(--coral-deep); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(225, 118, 90, 0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--coral), var(--ochre)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.7rem; display: grid; place-items: center; width: 58px; height: 58px; background: var(--blush-soft); border-radius: 16px; margin-bottom: 1.1rem; }
.service-card h3 { font-size: 1.32rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.99rem; }

/* ============================================================
   APPROACH (warm coral band)
   ============================================================ */
.approach { background: linear-gradient(150deg, var(--coral) 0%, var(--coral-deep) 100%); color: #fff; text-align: center; }
.approach-inner { max-width: 860px; margin-inline: auto; }
.quote-mark { font-family: "Times New Roman", Times, Georgia, serif; font-size: 6rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); line-height: 0.5; display: block; }
.approach blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.6rem, 1rem + 2.6vw, 2.7rem); line-height: 1.3; color: #fff; margin: 0.8rem 0 1.3rem; letter-spacing: -0.01em; }
.approach-attrib { font-family: var(--font-hand); font-size: 1.9rem; color: #ffe6c9; }

/* ============================================================
   JOURNEY (steps + animated path)
   ============================================================ */
.journey { background: var(--cream); }
.journey-wrap { position: relative; max-width: 760px; margin-inline: auto; }
.journey-path { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 200px; height: 100%; z-index: 0; }
.journey-steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2.5rem; position: relative; z-index: 1; }
.journey-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.journey-step:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.step-num { flex: 0 0 auto; width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: #fff; background: var(--teal); box-shadow: 0 8px 20px rgba(79,140,132,0.34); border: 4px solid var(--cream); }
.step-body { background: var(--paper); border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); flex: 1; border: 1px solid rgba(225,118,90,0.1); }
.step-body h3 { font-size: 1.28rem; margin-bottom: 0.35rem; color: var(--coral-deep); }
.step-body p { color: var(--ink-soft); font-size: 0.99rem; }

/* ============================================================
   SESSIONS & PRICING
   ============================================================ */
.sessions { background: var(--blush-soft); }
.sessions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; align-items: stretch; }
.session-card { background: var(--paper); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(225,118,90,0.1); text-align: center; }
.session-card.feature { border: 2px solid var(--coral); box-shadow: var(--shadow-md); position: relative; }
.session-card.feature::after { content: "Start here"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; padding: 0.28rem 0.9rem; border-radius: 999px; white-space: nowrap; }
.session-ico { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.session-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.session-price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--coral-deep); line-height: 1; margin-bottom: 0.8rem; }
.session-price span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-top: 0.4rem; font-family: var(--font-body); }
.session-card p:not(.session-price) { color: var(--ink-soft); font-size: 0.96rem; }
.session-where { font-weight: 600; color: var(--ink) !important; font-size: 0.95rem !important; margin-bottom: 0.7rem; }
.sessions-note { max-width: 720px; margin: 2.4rem auto 0; text-align: center; color: var(--ink-soft); font-size: 0.94rem; background: var(--paper); padding: 1.1rem 1.5rem; border-radius: 16px; border: 1px dashed rgba(199,91,64,0.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--paper); border-radius: 22px 22px 6px 22px; padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(225,118,90,0.1); position: relative; }
.testimonial blockquote { font-family: var(--font-head); font-weight: 500; font-size: 1.14rem; line-height: 1.5; color: var(--ink); }
.testimonial figcaption { margin-top: 1.1rem; font-weight: 700; color: var(--teal-deep); font-size: 0.92rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--blush-soft); }
.faq-inner { max-width: 760px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--paper); border-radius: 18px; border: 1px solid rgba(225,118,90,0.12); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--coral); transition: transform 0.3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-intro h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.8rem); margin-bottom: 1.1rem; }
.contact-intro p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.contact-details { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.2rem; }
.contact-details li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); font-weight: 700; }
.contact-reassure-time { font-family: var(--font-hand); font-size: 1.45rem; color: var(--teal-deep); }

.contact-form { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); border: 1px solid rgba(225,118,90,0.12); }
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label, .prefer legend { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: 0.45rem; color: var(--ink); font-size: 0.95rem; }
.field .optional { font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; font-family: var(--font-body); }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 2px solid rgba(225,118,90,0.22); border-radius: 14px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(225,118,90,0.16); background: var(--paper); }
.prefer { border: none; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.prefer legend { float: left; width: 100%; }
.radio { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.radio input { accent-color: var(--coral); width: 18px; height: 18px; }
.form-status { margin-top: 0.9rem; font-weight: 700; font-size: 0.95rem; }
.form-status.ok { color: var(--teal-deep); }
.form-status.err { color: var(--coral-deep); }
.form-reassure { margin-top: 0.9rem; font-size: 0.88rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--cream); }
.booking-embed {
  max-width: 760px; margin-inline: auto; background: var(--paper);
  border: 2px dashed rgba(225, 118, 90, 0.4); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); text-align: center;
}
.booking-placeholder { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #34211d; color: rgba(255,255,255,0.82); padding-block: 3.5rem 2.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.footer-brand .brand-name { color: #fff; font-size: 1.3rem; display: block; margin-bottom: 0.4rem; font-family: var(--font-head); font-weight: 700; }
.footer-brand p { color: rgba(255,255,255,0.66); max-width: 320px; font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: rgba(255,255,255,0.82); font-weight: 700; }
.footer-links a:hover { color: var(--ochre); }
.footer-fine { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-fine a { color: rgba(255,255,255,0.78); }

/* ============================================================
   SCROLL-REVEAL (GSAP-driven; visible if JS/GSAP absent)
   ============================================================ */
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 330px); background: var(--paper); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem 2.2rem; box-shadow: -10px 0 40px rgba(0,0,0,0.16); transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 90; }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.btn) { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 95; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 340px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .journey-path { display: none; }
  .journey-step, .journey-step:nth-child(even) { flex-direction: row; text-align: left; gap: 1rem; }
  .step-num { width: 50px; height: 50px; font-size: 1.3rem; }
  .hero { min-height: 92svh; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .br-mobile { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue svg { animation: none; }
}
