/* =====================================================
   SEREL website — v2.0 — Direction "Affinée"
   Tokens + production styles (consolidated, no @import)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* NEUTRALS */
  --srl-linen:        #FAF7F2;
  --srl-white:        #FFFFFF;
  --srl-subtle:       #F0EBE3;
  --srl-border:       #E6E0D6;
  --srl-ink:          #252A28;

  /* TEXT on linen/white */
  --srl-text-1:       #1A1A18;
  --srl-text-2:       #5C5850;
  --srl-text-3:       #8A857C;

  /* TEXT on ink */
  --srl-on-ink-1:     #F0ECE4;
  --srl-on-ink-2:     rgba(240,236,228,0.55);
  --srl-on-ink-3:     rgba(240,236,228,0.30);

  /* ACCENT primary — terracotta */
  --srl-accent:       #C0714A;
  --srl-accent-hover: #A8603D;
  --srl-accent-light: #D4916E;
  --srl-accent-wash:  #F5E8DE;

  /* ACCENT secondary */
  --srl-indigo:       #34506E;
  --srl-indigo-wash:  #E4E8EF;
  --srl-gold:         #B58A3F;
  --srl-gold-wash:    #F2EAD8;

  /* SAGE */
  --srl-sage:         #E8ECE9;
  --srl-sage-mid:     #B8BFB9;
  --srl-sage-dark:    #6B7A70;

  /* SEMANTIC */
  --srl-success-bg:    #EEF5EE;
  --srl-success-border:#B8D4B8;
  --srl-success-text:  #2D5A2D;

  /* TYPE */
  --srl-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --srl-font-body:    'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --srl-lh-body:      1.65;

  --srl-ls-kicker:    2.5px;

  /* RADII */
  --srl-radius-xs:    4px;
  --srl-radius-btn:   7px;
  --srl-radius-md:    10px;
  --srl-radius-card:  12px;
  --srl-radius-pill:  100px;

  /* BORDERS / SHADOWS */
  --srl-border-w:        1px;
  --srl-shadow-flat:  none;
  --srl-shadow-card:  0 1px 2px rgba(26,26,24,0.03);
  --srl-shadow-pop:   0 8px 24px rgba(0,0,0,0.04);

  /* BLUR */
  --srl-blur-nav: 12px;

  /* MOTION */
  --srl-ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --srl-dur-fast: 150ms;
  --srl-dur-med:  220ms;

  /* SECTION RHYTHM */
  --srl-section-y: 88px;
  --srl-section-y-mobile: 56px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--srl-font-body);
  font-size: 14px;
  color: var(--srl-text-2);
  background: var(--srl-linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--srl-lh-body);
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--srl-font-display); font-weight: 500; color: var(--srl-text-1); font-optical-sizing: auto; }
p { margin: 0; }

/* ---------------- NAV ---------------- */
.srl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(var(--srl-blur-nav));
  -webkit-backdrop-filter: blur(var(--srl-blur-nav));
  border-bottom: 1px solid transparent;
  transition: box-shadow 220ms var(--srl-ease),
              border-color 220ms var(--srl-ease);
}
.srl-nav.is-scrolled {
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border-bottom-color: var(--srl-border);
}
.srl-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.srl-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.srl-logo-word {
  font-family: var(--srl-font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--srl-text-1);
  font-optical-sizing: auto;
}
.srl-logo-diamond {
  width: 10px; height: 10px;
  background: var(--srl-accent);
  transform: rotate(45deg);
  border-radius: 1.2px;
  display: inline-block;
}
.srl-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--srl-font-body);
  font-size: 13px;
  color: var(--srl-text-1);
}
.srl-nav-links > a, .srl-nav-item > a {
  color: var(--srl-text-1);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 150ms ease;
}
.srl-nav-links > a:hover, .srl-nav-item > a:hover { color: var(--srl-accent); }
.srl-nav-links a.is-active {
  font-weight: 600;
  color: var(--srl-text-1);
}
.srl-nav-links a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--srl-accent);
}
.srl-nav-item { position: relative; }
.srl-nav-item > a::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  width: 4px; height: 4px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform 200ms ease;
}
.srl-nav-item.is-open > a::after,
.srl-nav-item:hover > a::after,
.srl-nav-item:focus-within > a::after { transform: rotate(225deg) translateY(0px); }
.srl-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--srl-border);
  border-radius: 10px;
  box-shadow: var(--srl-shadow-pop);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}
.srl-nav-item:hover .srl-submenu,
.srl-nav-item:focus-within .srl-submenu,
.srl-nav-item.is-open .srl-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}
.srl-submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--srl-text-1);
  transition: background 150ms ease, color 150ms ease;
}
.srl-submenu a:hover { background: var(--srl-accent-wash); color: var(--srl-accent-hover); }
.srl-nav-cta {
  background: var(--srl-accent);
  color: #fff !important;
  padding: 9px 16px !important;
  border-radius: var(--srl-radius-btn);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 200ms var(--srl-ease), transform 200ms var(--srl-ease);
}
.srl-nav-cta:hover {
  background: var(--srl-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.srl-nav-cta::after { display: none !important; }

/* Burger */
.srl-burger {
  display: none;
  width: 26px; height: 18px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 0;
}
.srl-burger span {
  display: block; height: 1.5px; background: var(--srl-text-1);
  transition: transform 200ms ease, opacity 200ms ease;
}
.srl-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.srl-burger.is-open span:nth-child(2) { opacity: 0; }
.srl-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.srl-mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(14px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
}
.srl-mobile-menu.is-open { display: flex; }
.srl-mobile-menu a {
  padding: 14px 0;
  font-family: var(--srl-font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--srl-border);
  color: var(--srl-text-1);
}
.srl-mobile-menu .srl-sublink {
  padding-left: 16px;
  font-size: 16px;
  border-bottom: none;
  color: var(--srl-text-2);
  padding-top: 6px; padding-bottom: 6px;
}
.srl-mobile-menu .srl-nav-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  color: #fff;
}

/* ---------------- Buttons ---------------- */
.srl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--srl-radius-btn);
  font-family: var(--srl-font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1.5px solid transparent;
  transition: background 200ms var(--srl-ease),
              transform 200ms var(--srl-ease),
              border-color 200ms var(--srl-ease),
              color 200ms var(--srl-ease);
}
.srl-btn--primary {
  background: var(--srl-accent);
  color: #fff;
  border-color: var(--srl-accent);
}
.srl-btn--primary:hover {
  background: var(--srl-accent-hover);
  border-color: var(--srl-accent-hover);
  transform: translateY(-1px);
}
.srl-btn--ghost {
  background: transparent;
  color: var(--srl-text-1);
  border-color: var(--srl-text-1);
}
.srl-btn--ghost:hover {
  background: var(--srl-text-1);
  color: var(--srl-linen);
  transform: translateY(-1px);
}
.srl-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(192,113,74,0.25); }

/* ---------------- Containers / sections ---------------- */
.srl-container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.srl-container--editorial { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.srl-container--form { max-width: 600px; margin: 0 auto; padding: 0 32px; }
.srl-container--legal { max-width: 720px; margin: 0 auto; padding: 0 32px; }

.srl-section { padding: var(--srl-section-y) 32px; }
.srl-section--linen { background: var(--srl-linen); }
.srl-section--subtle { background: var(--srl-subtle); }
.srl-section--white { background: var(--srl-white); }
.srl-section--ink { background: var(--srl-ink); color: var(--srl-on-ink-1); }
.srl-section--gold-wash { background: var(--srl-gold-wash); }

/* ---------------- Kicker ---------------- */
.srl-kicker {
  font-family: var(--srl-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--srl-ls-kicker);
  text-transform: uppercase;
  color: var(--srl-accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.srl-kicker::before, .srl-kicker::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--srl-accent);
}
.srl-kicker--gold { color: var(--srl-gold); }
.srl-kicker--gold::before, .srl-kicker--gold::after { background: var(--srl-gold); }
.srl-kicker--on-ink { color: var(--srl-on-ink-2); font-weight: 500; }
.srl-kicker--on-ink::before, .srl-kicker--on-ink::after { background: var(--srl-on-ink-2); }

/* ---------------- Headings ---------------- */
.srl-h1 {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--srl-text-1);
  text-wrap: balance;
}
.srl-h1--md { font-size: clamp(36px, 5vw, 56px); }
.srl-h2 {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--srl-text-1);
  text-wrap: balance;
}
.srl-h3 {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--srl-text-1);
}
.srl-h3--lg { font-size: 24px; }
.srl-em {
  font-style: italic;
  color: var(--srl-accent);
  font-weight: 500;
}
.srl-em--gold { color: var(--srl-gold); font-style: italic; }
.srl-em--light { color: var(--srl-accent-light); font-style: italic; }

/* ---------------- Body / labels ---------------- */
.srl-lead {
  font-family: var(--srl-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--srl-text-2);
  max-width: 580px;
}
.srl-italic-lead {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--srl-text-2);
}
.srl-body { font-size: 14.5px; line-height: 1.75; color: var(--srl-text-2); }

/* ---------------- Tags ---------------- */
.srl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--srl-accent-wash);
  color: var(--srl-accent-hover);
  font-family: var(--srl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--srl-radius-xs);
  white-space: nowrap;
}
.srl-tag--indigo { background: var(--srl-indigo-wash); color: var(--srl-indigo); }
.srl-tag--gold { background: var(--srl-gold-wash); color: var(--srl-gold); }

/* ---------------- Cards ---------------- */
.srl-card {
  background: var(--srl-white);
  border: 1px solid var(--srl-border);
  border-radius: var(--srl-radius-card);
  padding: 32px;
  position: relative;
  transition: border-color 200ms var(--srl-ease),
              box-shadow 220ms var(--srl-ease),
              transform 220ms var(--srl-ease);
  display: flex;
  flex-direction: column;
}
.srl-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  border-color: var(--srl-sage-mid);
}
.srl-card--top-terracotta { border-top: 3px solid var(--srl-accent); padding-top: 30px; }
.srl-card--top-indigo { border-top: 3px solid var(--srl-indigo); padding-top: 30px; }
.srl-card .srl-num {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  color: var(--srl-accent);
  line-height: 1;
  margin-bottom: 18px;
  font-optical-sizing: auto;
}
.srl-card .srl-card-dur {
  font-family: var(--srl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--srl-accent);
}
.srl-card .srl-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.srl-card .srl-card-head .srl-num { margin-bottom: 0; }
.srl-grid-3 .srl-card .srl-h3 { min-height: calc(1.25em * 2); }

/* "En savoir plus →" links */
.srl-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--srl-accent);
  font-family: var(--srl-font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1.5px solid var(--srl-accent);
  padding-bottom: 4px;
  align-self: flex-start;
  margin-top: 4px;
  transition: border-width 150ms ease, color 200ms ease, gap 200ms ease;
}
.srl-link-arrow:hover {
  color: var(--srl-accent-hover);
  border-bottom-width: 2px;
  gap: 12px;
}
.srl-link-arrow--indigo {
  color: var(--srl-indigo);
  border-bottom-color: var(--srl-indigo);
}
.srl-link-arrow--indigo:hover { color: #243a52; }

/* ---------------- Grids ---------------- */
.srl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.srl-grid-2--about { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.srl-about-photo-col { min-width: 0; }
.srl-about-photo-col .srl-photo { max-width: 360px; }

/* ---------------- Section heads (centered) ---------------- */
.srl-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.srl-section-head .srl-lead { text-align: center; }

/* ---------------- Numbered list (Fraunces italic) ---------------- */
.srl-num-list { display: flex; flex-direction: column; }
.srl-num-list .srl-num-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--srl-border);
  align-items: baseline;
}
.srl-num-list .srl-num-item:first-child { border-top: 1.5px solid var(--srl-text-1); }
.srl-num-list .srl-num-item:last-child { border-bottom: 1.5px solid var(--srl-text-1); }
.srl-num-list .srl-num-item .srl-num-idx {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--srl-accent);
  line-height: 1;
  font-weight: 500;
}
.srl-num-list .srl-num-item .srl-num-body {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  color: var(--srl-text-1);
}
.srl-num-list--gold .srl-num-item { border-top-color: rgba(181,138,63,0.25); }
.srl-num-list--gold .srl-num-item:first-child { border-top: 1.5px solid var(--srl-gold); }
.srl-num-list--gold .srl-num-item:last-child { border-bottom: 1.5px solid var(--srl-gold); }
.srl-num-list--gold .srl-num-item .srl-num-idx { color: var(--srl-gold); }
.srl-num-list--ink .srl-num-item { border-top: 1px solid rgba(240,236,228,0.15); }
.srl-num-list--ink .srl-num-item:first-child { border-top: 1.5px solid var(--srl-accent-light); }
.srl-num-list--ink .srl-num-item:last-child { border-bottom: 1.5px solid var(--srl-accent-light); }
.srl-num-list--ink .srl-num-item .srl-num-idx { color: var(--srl-accent-light); }
.srl-num-list--ink .srl-num-item .srl-num-body { color: var(--srl-on-ink-1); }

/* ---------------- Big numbers format row ---------------- */
.srl-format-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 56px;
}
.srl-format-cell {
  padding: 28px 20px;
  border-top: 1.5px solid var(--srl-text-1);
  border-bottom: 1.5px solid var(--srl-text-1);
  text-align: center;
}
.srl-format-cell + .srl-format-cell { border-left: 1px solid var(--srl-border); }
.srl-format-big {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--srl-accent);
  margin-bottom: 8px;
}
.srl-format-lbl {
  font-family: var(--srl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--srl-text-3);
  margin-bottom: 8px;
}
.srl-format-sub { font-size: 13px; color: var(--srl-text-2); }

/* ---------------- Included grid ---------------- */
.srl-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.srl-included {
  background: var(--srl-white);
  border: 1px solid var(--srl-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 200ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.srl-included:hover {
  border-color: var(--srl-sage-mid);
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.srl-included-diamond {
  width: 10px; height: 10px;
  background: var(--srl-accent);
  transform: rotate(45deg);
  border-radius: 1.2px;
  margin-top: 8px;
  flex: 0 0 auto;
}
.srl-included-title {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--srl-text-1);
  margin-bottom: 4px;
}
.srl-included-body { font-size: 12.5px; color: var(--srl-text-2); line-height: 1.55; }

/* ---------------- Quote band (ink) ---------------- */
.srl-quote {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.3;
  color: var(--srl-on-ink-1);
  text-wrap: balance;
}
.srl-quote-mark {
  font-family: var(--srl-font-display);
  color: var(--srl-accent-light);
  font-size: 64px;
  line-height: 0;
  position: relative;
  top: 22px;
  margin-right: 4px;
}

/* ---------------- Photo ---------------- */
.srl-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--srl-subtle);
  position: relative;
  aspect-ratio: 4 / 5;
}
.srl-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Drop cap — gold, single use on About */
.srl-dropcap::first-letter {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: 56px;
  float: left;
  line-height: 0.92;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--srl-gold);
  font-optical-sizing: auto;
}

/* ---------------- Contact wrapper (Tally) ---------------- */
.srl-contact-form-wrapper {
  background: var(--srl-white);
  border: 1px solid var(--srl-border);
  border-radius: var(--srl-radius-card);
  padding: 16px 18px;
  margin-top: 8px;
}
.srl-contact-form-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
}
.srl-form-meta {
  font-size: 12px;
  color: var(--srl-text-3);
  line-height: 1.6;
  margin-top: 18px;
  text-align: center;
}
.srl-form-meta a {
  color: var(--srl-accent);
  border-bottom: 1px solid currentColor;
}

/* ---------------- Footer ---------------- */
.srl-footer {
  background: var(--srl-subtle);
  padding: 48px 32px 36px;
  margin-top: 0;
}
.srl-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--srl-border);
}
.srl-footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.srl-footer-links a {
  font-family: var(--srl-font-body);
  font-size: 13px;
  color: var(--srl-text-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 180ms ease;
}
.srl-footer-links a:hover { color: var(--srl-accent); }
.srl-footer-copy {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 18px;
  font-family: var(--srl-font-body);
  font-size: 12px;
  color: var(--srl-text-3);
}

/* ---------------- Address block (legal) ---------------- */
.srl-address-block {
  font-family: var(--srl-font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--srl-text-1);
  padding: 14px 0 14px 18px;
  border-left: 2px solid var(--srl-accent);
  white-space: pre-line;
  margin: 0 0 8px;
}

/* ---------------- Legal section ---------------- */
.srl-legal-section {
  padding-top: 44px;
  margin-top: 28px;
  border-top: 1px solid var(--srl-border);
}
.srl-legal-section-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 22px;
}
.srl-legal-num {
  font-family: var(--srl-font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--srl-accent);
  line-height: 1;
}
.srl-legal-h2 {
  font-family: var(--srl-font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--srl-text-1);
  margin: 0;
}
.srl-legal-section p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--srl-text-2);
  margin: 0 0 14px;
}
.srl-legal-section a {
  color: var(--srl-accent);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease;
}
.srl-legal-section a:hover { color: var(--srl-accent-hover); }
.srl-legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.srl-legal-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--srl-text-2);
}
.srl-legal-list li::before {
  content: '';
  flex: 0 0 7px;
  width: 7px; height: 7px;
  background: var(--srl-accent);
  transform: rotate(45deg);
  margin-top: 10px;
  border-radius: 1px;
}

/* ---------------- Focus ---------------- */
a:focus-visible,
button:focus-visible,
.srl-link-arrow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(192,113,74,0.25);
  border-radius: 4px;
}

/* ---------------- Motion preference ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------------- Mobile (≤ 768px) ---------------- */
@media (max-width: 768px) {
  .srl-section, .srl-footer { padding-left: 20px; padding-right: 20px; }
  .srl-section { padding-top: var(--srl-section-y-mobile); padding-bottom: var(--srl-section-y-mobile); }
  .srl-container, .srl-container--editorial, .srl-container--form, .srl-container--legal { padding-left: 20px; padding-right: 20px; }
  .srl-nav-inner { padding: 14px 20px; }
  .srl-nav-links { display: none; }
  .srl-burger { display: flex; }
  .srl-grid-3, .srl-grid-2, .srl-grid-2--about, .srl-included-grid, .srl-format-row { grid-template-columns: 1fr; gap: 24px; }
  .srl-about-photo-col .srl-photo { max-width: 100%; }
  .srl-grid-3 .srl-card .srl-h3 { min-height: 0; }
  .srl-format-cell + .srl-format-cell { border-left: 0; }
  .srl-footer-inner { flex-direction: column; align-items: flex-start; }
  .srl-h1 { font-size: 36px; }
  .srl-h2 { font-size: 26px; }
  .srl-btn { width: 100%; }
  .srl-hero-cta-row { width: 100%; flex-direction: column; }
  .srl-num-list .srl-num-item { grid-template-columns: 1fr; gap: 10px; }
  .srl-num-list .srl-num-item .srl-num-idx { font-size: 24px; }
  .srl-num-list .srl-num-item .srl-num-body { font-size: 17px; }
  .srl-quote-mark { font-size: 48px; top: 16px; }
  .srl-italic-lead { font-size: 18px; }
}
