/* Constantinos Tokatlides Law Office
   Living Archive: dark, restrained, quiet authority.
   Autonomous static site. Minimal local JavaScript and no third-party requests. */

/* Locally hosted subsets. Latin and Greek are split by unicode-range so that an
   English page never downloads the Greek files and a Greek page never downloads
   more than it needs. Paths are resolved against this stylesheet, so they remain
   correct for pages served from /el/. No external font request is made. */

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/eb-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/eb-garamond-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+0374-0375, U+037A, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  unicode-range: U+0374-0375, U+037A, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

:root {
  --ink: #161C24;          /* dominant background */
  --ink-deep: #12171E;     /* footer / recessed */
  --ink-raised: #1A212A;   /* appointments band */
  --paper: #F6F3ED;        /* primary type */
  --paper-soft: #C2BDB4;   /* secondary type  9.2:1 */
  --paper-muted: #A9A49B;  /* tertiary type   6.9:1 */
  --bronze: #C69A61;       /* accent type on dark 6.7:1 */
  --bronze-deep: #7A5A2E;  /* brand bronze — hairlines only */
  --rule: #2C3541;
  --rule-bronze: rgba(198, 154, 97, 0.32);

  --display: "EB Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --measure: 58ch;
  --gutter: clamp(1.5rem, 6vw, 5.5rem);
  --section-y: clamp(5.5rem, 13vw, 11rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  z-index: 50;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

/* ---------- Header ---------- */

.site-head { background: var(--ink); }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 6.5rem;
  padding-block: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-mark { width: auto; height: 40px; display: block; }

.brand-name {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--paper);
}
.brand-name-line { white-space: nowrap; }

.head-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-inline-start: auto;
}

.head-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper-soft);
  padding-block: 0.45rem;
  border-bottom: 1px solid transparent;
  transition: color 260ms ease, border-color 260ms ease;
}
.head-link:hover { color: var(--bronze); border-bottom-color: var(--rule-bronze); }
.head-link.is-current { color: var(--paper); border-bottom-color: var(--rule-bronze); }

/* ---------- Language selector ---------- */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding-block: 0.45rem;
  border-bottom: 1px solid transparent;
  color: var(--paper-muted);
  text-decoration: none;
  transition: color 260ms ease, border-color 260ms ease;
}
.lang-link:hover { color: var(--bronze); border-bottom-color: var(--rule-bronze); }
.lang-link.is-current { color: var(--paper); border-bottom-color: var(--rule-bronze); }

.lang-sep {
  color: var(--rule-bronze);
  font-size: 0.68rem;
}

/* Below the width at which the brand, the five navigation links and the language
   selector can share a single line, fall back to the established two-row header:
   brand + language selector on the first row, navigation on the second. The
   narrower breakpoints below refine this further. */
@media (max-width: 63.9375rem) {
  .head-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1rem;
    row-gap: 1.1rem;
    min-height: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .lang-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .head-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    margin-inline-start: 0;
  }
}

/* ---------- Stage ---------- */

.stage {
  padding-block: clamp(5rem, 15vh, 10rem) var(--section-y);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 7rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 62rem) {
  .stage-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(4rem, 9vw, 8rem);
  }
}

.eyebrow {
  margin: 0 0 2.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: 0.004em;
  color: var(--paper);
}
h1 span { display: block; color: var(--paper-soft); }

.cta-row {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 2.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

button.btn {
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn-primary:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink); }

.btn-quiet {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--rule);
}
.btn-quiet:hover { border-color: var(--bronze); color: var(--bronze); }
.btn-quiet.is-copied {
  border-color: var(--bronze);
  color: var(--bronze);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Living Archive ---------- */

.archive { position: relative; }

.archive-label {
  margin: 0 0 1.25rem;
  color: var(--paper-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.frames {
  position: relative;
  min-height: 15rem;
}

.frame {
  border-left: 1px solid var(--rule-bronze);
  padding: 0.2rem 0 0.2rem clamp(1.5rem, 3vw, 2.5rem);
}

.frame-index {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--bronze);
}

.frame-title {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.22;
  color: var(--paper);
}

.frame-body {
  margin: 0;
  max-width: 40ch;
  color: var(--paper-soft);
  font-size: 1rem;
}

/* Progress hairline — hidden unless the crossfade is running */
.archive-progress { display: none; }

.archive-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
}

.archive-controls button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.archive-controls button:hover,
.archive-controls button[aria-pressed="true"] {
  border-color: var(--rule-bronze);
  background: var(--ink-raised);
  color: var(--bronze);
}

.archive.is-scripted .frames > .frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--ink);
  animation: none;
}

.archive.is-scripted .frames > .frame.is-active {
  opacity: 1;
}

.archive.is-scripted .archive-progress {
  display: none;
}

/* Live rotation: 21s cycle, 7s per frame.
   Frames change cleanly so text contrast remains accessible at every instant. */
@media (prefers-reduced-motion: no-preference) {
  .frames > .frame {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: var(--ink);
    animation: archive-rotate 21s steps(1, end) infinite;
  }
  .frames > .frame-1 { animation-delay: 0s; }
  .frames > .frame-2 { animation-delay: 7s; }
  .frames > .frame-3 { animation-delay: 14s; }

  @keyframes archive-rotate {
    0%   { opacity: 1; }
    33.2% { opacity: 1; }
    33.3% { opacity: 0; }
    100% { opacity: 0; }
  }

  .archive-progress {
    display: block;
    position: relative;
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-left: clamp(1.5rem, 3vw, 2.5rem);
    height: 1px;
    background: rgba(198, 154, 97, 0.16);
    overflow: hidden;
  }

  .archive-progress-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    background: var(--bronze);
    opacity: 0.55;
    transform-origin: left center;
    transform: scaleX(0);
    animation: archive-progress 7s linear infinite;
  }

  @keyframes archive-progress {
    0%   { transform: scaleX(0); opacity: 0.2; }
    6%   { opacity: 0.55; }
    94%  { opacity: 0.55; }
    100% { transform: scaleX(1); opacity: 0.2; }
  }
}

/* Keep the manually controlled frame stable when motion is reduced.
   JavaScript still adds .is-scripted so that the 01/02/03 controls work;
   retaining the frame height prevents those controls from rising over the text. */
@media (prefers-reduced-motion: reduce) {
  .frames {
    min-height: 15rem;
  }
}

/* ---------- Profile introduction ---------- */

.home-profile {
  background: var(--ink-raised);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--section-y);
  scroll-margin-top: 1rem;
}

.home-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.home-profile-body {
  max-width: 52rem;
}

.home-profile-body .eyebrow {
  margin-bottom: 1.4rem;
}

.home-profile-body h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--paper);
}

.home-profile-standing {
  margin: 1.25rem 0 0;
  max-width: 48ch;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.home-profile-copy {
  margin-top: 2rem;
  max-width: var(--measure);
}

.home-profile-copy p {
  margin: 0;
  color: var(--paper-muted);
}

.home-profile-copy p + p {
  margin-top: 1rem;
}

.home-profile-actions {
  margin-top: 2.25rem;
}

@media (min-width: 62rem) {
  .home-profile-grid {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

/* ---------- International clients ---------- */

.international {
  background: var(--ink-deep);
  border-top: 1px solid var(--rule);
  padding-block: var(--section-y);
  scroll-margin-top: 1rem;
}

.international-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

@media (min-width: 62rem) {
  .international-grid {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.international-body {
  max-width: 52rem;
}

.international-body .eyebrow {
  margin-bottom: 1.4rem;
}

.international-body h2 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--paper);
}

.international-intro {
  max-width: var(--measure);
  margin: 1.6rem 0 0;
  color: var(--paper-soft);
}

.international-services {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--rule);
}

.international-service {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--rule);
}

.service-index {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.international-service h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--paper);
}

.international-service p:last-child {
  margin: 0.6rem 0 0;
  max-width: var(--measure);
  font-size: 0.9375rem;
  color: var(--paper-muted);
}

.international-location {
  margin: clamp(2rem, 4vw, 2.5rem) 0 0;
  padding-left: 1.2rem;
  border-left: 1px solid var(--rule-bronze);
  font-size: 0.9375rem;
  color: var(--paper-soft);
}

.international-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: clamp(2rem, 4vw, 2.5rem);
}

/* ---------- Practical guides ---------- */

.guides-intro {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding-block: var(--section-y);
  scroll-margin-top: 1rem;
}

.guides-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

@media (min-width: 62rem) {
  .guides-intro-grid {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.guides-intro-body {
  max-width: 58rem;
}

.guides-intro-body .eyebrow {
  margin-bottom: 1.4rem;
}

.guides-intro-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.guides-intro-copy {
  max-width: var(--measure);
  margin: 1.6rem 0 0;
  color: var(--paper-soft);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.guide-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.guide-links a {
  display: grid;
  min-height: 10rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color 220ms ease;
}

.guide-links a:hover {
  background: var(--ink-raised);
}

.guide-links span {
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.guide-links strong {
  align-self: end;
  margin-top: 2rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
}

.guide-links small {
  margin-top: 0.4rem;
  color: var(--paper-muted);
  font-size: 0.8125rem;
}

/* ---------- Appointments (visually secondary) ---------- */

.panel {
  background: var(--ink-raised);
  border-top: 1px solid var(--rule);
  padding-block: var(--section-y);
  scroll-margin-top: 1rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 62rem) {
  .panel-grid { grid-template-columns: 13rem minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); }
}

.section-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-top: 0.7rem;
}

.panel-body { max-width: 58rem; }

.panel-body h2 {
  margin: 0 0 1.35rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  line-height: 1.22;
  color: var(--paper);
}

.panel-intro { margin: 0; color: var(--paper-soft); font-size: 1rem; }

.international-intro,
.international-service div > p,
.international-location,
.panel-intro,
.urgent-body > p,
.fee-note,
.consultation-terms p,
.disclaimer,
.legal-body p,
.profile-section > p,
.profile-feature p,
.profile-records li > span:last-child,
.profile-close > p,
.team-principles > div > p:not(.record-meta) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.consultation-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  background: var(--rule);
  border: 1px solid var(--rule);
}

@media (min-width: 48rem) {
  .consultation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.consultation-option {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--ink-raised);
}

.consultation-option-featured {
  background: color-mix(in srgb, var(--ink-raised) 92%, var(--bronze));
}

.consultation-index {
  margin: 0 0 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.consultation-option h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
}

.consultation-summary {
  margin: 1rem 0 0;
  min-height: 4.8em;
  font-size: 0.9375rem;
  color: var(--paper-soft);
}

.consultation-facts {
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--rule);
}

.consultation-facts div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule);
}

.consultation-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.consultation-facts dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--paper-soft);
}

.consultation-price {
  margin: auto 0 1.25rem;
  padding-top: 2rem;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--paper);
}

.consultation-price span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--paper-muted);
}

.consultation-option .btn {
  align-self: flex-start;
}

.btn-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.urgent-consultation {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  margin-top: 1px;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--ink-deep) 82%, var(--ink-raised));
}

@media (min-width: 48rem) {
  .urgent-consultation {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  }
}

.urgent-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
}

.urgent-body {
  min-width: 0;
}

.urgent-body > p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--paper-soft);
}

.urgent-body > p + p {
  margin-top: 1rem;
}

.urgent-examples {
  margin-top: 1rem;
  border-block: 1px solid var(--rule);
}

.urgent-examples summary {
  position: relative;
  min-height: 3rem;
  padding: 0.75rem 2rem 0.75rem 0;
  list-style: none;
  color: var(--paper-soft);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1rem;
}

.urgent-examples summary::-webkit-details-marker {
  display: none;
}

.urgent-examples summary::after {
  position: absolute;
  right: 0;
  content: "+";
  color: var(--bronze);
}

.urgent-examples[open] summary::after {
  content: "−";
}

.urgent-examples p {
  margin: 0;
  padding-bottom: 1rem;
  color: var(--paper-muted);
  font-size: 0.875rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.urgent-examples p + p {
  padding-top: 0.15rem;
}

.urgent-facts {
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--rule);
}

.urgent-facts div {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule);
}

.urgent-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.urgent-facts dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--paper-soft);
}

.urgent-facts strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--paper);
}

.urgent-conditions {
  margin-top: 1.5rem !important;
}

.urgent-payment {
  font-size: 0.875rem !important;
  color: var(--paper-muted) !important;
}

.urgent-body .btn {
  margin-top: 1.5rem;
}

.formats {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 3.25rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.format {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.2rem 0.75rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 40rem) {
  .format { grid-template-columns: 2.75rem 10rem minmax(0, 1fr); align-items: baseline; }
}

.format-index {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--bronze);
}
.format-name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--paper);
}
.format-detail {
  grid-column: 2 / -1;
  font-size: 0.9375rem;
  color: var(--paper-muted);
}
@media (min-width: 40rem) {
  .format-detail { grid-column: auto; }
}

.fee-note {
  margin: clamp(2rem, 4vw, 2.5rem) 0 0;
  padding-left: 1.2rem;
  border-left: 1px solid var(--rule-bronze);
  font-size: 0.9375rem;
  color: var(--paper-soft);
}

.fee-note strong {
  color: var(--paper);
  font-weight: 600;
}

.booking-policies-label {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.booking-policies-label + .consultation-terms {
  margin-top: 0.75rem;
}

.consultation-terms {
  margin-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.consultation-terms + .consultation-terms {
  margin-top: 0;
  border-top: 0;
}

.consultation-terms summary {
  position: relative;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--paper-soft);
}

.consultation-terms summary::-webkit-details-marker {
  display: none;
}

.consultation-terms summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--bronze);
}

.consultation-terms[open] summary::after {
  content: "−";
}

.consultation-terms p {
  margin: 0;
  padding: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--paper-muted);
}

.consultation-terms p + p {
  padding-top: 0.15rem;
}

.panel-actions { margin-top: clamp(2rem, 4vw, 2.5rem); }

.disclaimer {
  margin: clamp(2.5rem, 5vw, 3.25rem) 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--paper-muted);
}

.faq {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rule);
}

.faq .eyebrow {
  margin-bottom: 1rem;
}

.faq h3 {
  margin: 0 0 1.75rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  position: relative;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: 1.05rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--bronze);
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  max-width: var(--measure);
  margin: 0;
  padding: 0 0 1.25rem;
  color: var(--paper-muted);
  font-size: 0.9rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* ---------- Practical guides page ---------- */

.guides-page .profile-hero h1 {
  max-width: 15ch;
}

.guides-content {
  max-width: 56rem;
}

.guide-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--rule);
  scroll-margin-top: 2rem;
}

.guide-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.guide-section h2 {
  margin: 0;
  max-width: 21ch;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.guide-deck {
  margin: 1.25rem 0 0;
  max-width: var(--measure);
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.guide-section h3 {
  margin: 2.5rem 0 0.8rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
}

.guide-section p,
.guide-section li {
  color: var(--paper-soft);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.guide-section p {
  max-width: var(--measure);
  margin: 1rem 0 0;
}

.guide-section ul {
  max-width: var(--measure);
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.guide-section li + li {
  margin-top: 0.65rem;
}

.guide-note {
  margin-top: 2rem !important;
  padding: 1.2rem 1.4rem;
  border-left: 1px solid var(--bronze);
  background: var(--ink-raised);
  color: var(--paper-muted) !important;
  font-size: 0.9rem;
}

.guide-sources {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--paper-muted);
  font-size: 0.8rem;
}

.guide-sources a {
  color: var(--paper-soft);
  text-decoration-color: var(--rule-bronze);
  text-underline-offset: 0.2rem;
}

.guide-sources a:hover {
  color: var(--bronze);
}

.guide-back {
  display: none;
}

/* ---------- Footer (visually secondary) ---------- */

.site-foot {
  background: var(--ink-deep);
  border-top: 1px solid var(--rule);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.foot-inner { display: grid; gap: 2.25rem; }

.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem 2rem;
}

.foot-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.foot-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--paper-muted);
}
.foot-meta a { color: var(--paper-soft); text-decoration: none; border-bottom: 1px solid var(--rule); }
.foot-meta a:hover { color: var(--bronze); border-bottom-color: var(--rule-bronze); }

.foot-legal { border-top: 1px solid var(--rule); }

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

.legal-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-muted);
  transition: color 240ms ease;
}
.legal-item summary::-webkit-details-marker { display: none; }
.legal-item summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: var(--bronze);
}
.legal-item[open] summary::after { content: "–"; }
.legal-item summary:hover { color: var(--bronze); }

.legal-body { padding: 0 0 1.6rem; max-width: var(--measure); }
.legal-body p { margin: 0; font-size: 0.875rem; color: var(--paper-muted); }
.legal-body p + p { margin-top: 0.9rem; }
.legal-body a { color: var(--paper-soft); text-decoration-color: var(--rule-bronze); }
.legal-body a:hover { color: var(--bronze); }

.foot-copy {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--paper-muted);
}

.mobile-action-bar {
  display: none;
}

/* ---------- Professional profile ---------- */

.profile {
  background: var(--ink);
}

.profile-tabs {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink-deep);
}

.profile-tabs-inner {
  display: flex;
  gap: clamp(1.75rem, 5vw, 4rem);
}

.profile-tab {
  position: relative;
  padding-block: 1.1rem;
  color: var(--paper-muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
}

.profile-tab:hover,
.profile-tab.is-current {
  color: var(--paper);
}

.profile-tab.is-current::after {
  background: var(--bronze);
}

.profile-hero {
  padding-block: clamp(5rem, 11vw, 9rem) clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.profile-hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 62rem) {
  .profile-hero-grid {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.profile-hero .eyebrow {
  margin-bottom: 1.5rem;
}

.profile-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
}

.profile-standing {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  max-width: 48ch;
  color: var(--paper-soft);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.45;
}

.profile-layout {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

@media (min-width: 62rem) {
  .profile-layout {
    grid-template-columns: 13rem minmax(0, 1fr);
  }
}

.profile-aside {
  align-self: start;
}

@media (min-width: 62rem) {
  .profile-aside {
    position: sticky;
    top: 2rem;
  }
}

.profile-index {
  display: grid;
  border-top: 1px solid var(--rule);
}

.profile-index a {
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  color: var(--paper-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-index a:hover {
  color: var(--bronze);
}

.profile-contact {
  margin-top: 2.5rem;
}

.profile-contact-label {
  margin: 0 0 0.65rem;
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.profile-contact a {
  color: var(--paper-soft);
  font-size: 0.9375rem;
  text-decoration-color: var(--rule-bronze);
  text-underline-offset: 0.25rem;
}

.text-button {
  display: block;
  margin-top: 0.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.25rem;
}

.text-button:hover,
.text-button.is-copied {
  color: var(--bronze);
  text-decoration-color: var(--rule-bronze);
}

.profile-content {
  max-width: 51rem;
}

.profile-section {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--rule);
  scroll-margin-top: 2rem;
}

.profile-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.profile-section h2 {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.profile-section > p {
  margin: 0;
  max-width: var(--measure);
  color: var(--paper-soft);
}

.profile-section > p + p {
  margin-top: 1.35rem;
}

.profile-overview > p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.team-page .profile-section > p,
.team-page .team-principles p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.profile-lead {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--paper-soft) !important;
}

.profile-practice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2 18rem;
  column-gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}

.profile-practice-list li {
  break-inside: avoid;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--paper-soft);
}

.profile-records {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.profile-records li {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.4rem, 3vw, 1.9rem) 0;
  border-bottom: 1px solid var(--rule);
}

.profile-records strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
}

.profile-records li > span:last-child {
  color: var(--paper-muted);
  font-size: 0.9375rem;
}

.records-toggle {
  display: none;
}

.record-meta {
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-feature {
  margin-block: clamp(2rem, 4vw, 2.75rem);
  padding-block: clamp(1.5rem, 3vw, 2rem);
  border-block: 1px solid var(--rule);
}

.profile-feature p {
  margin: 0;
  color: var(--paper-muted);
}

.profile-feature h3 {
  margin: 0.75rem 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
}

.team-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.team-principles > div {
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--rule);
}

.team-principles > div:nth-child(odd) {
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.team-principles > div:nth-child(even) {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--rule);
}

.team-principles h3 {
  margin: 0.6rem 0 0.65rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
}

.team-principles p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.9375rem;
}

.profile-inline-link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: var(--rule-bronze);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.profile-inline-link:hover,
.profile-inline-link:focus-visible {
  color: var(--paper);
  text-decoration-color: var(--bronze);
}

.profile-credentials {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.profile-credentials > div {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 40rem) {
  .profile-credentials > div {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

.profile-credentials dt {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.12rem;
}

.profile-credentials dd {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.9375rem;
}

.profile-languages {
  margin-top: 2rem !important;
}

.profile-languages span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-close {
  padding: clamp(3rem, 6vw, 4.5rem);
  background: var(--ink-raised);
  border: 1px solid var(--rule);
}

.profile-close > p {
  margin: 0;
  max-width: 44ch;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
  line-height: 1.45;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: 2rem;
}

/* ---------- Motion preferences ---------- */

@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;
  }
}

/* ---------- Narrow screens ---------- */

@media (max-width: 47.99rem) {
  html {
    scroll-padding-top: 8.75rem;
  }

  body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
  }

  .site-head {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--rule);
    background: rgba(22, 28, 36, 0.96);
    backdrop-filter: blur(12px);
  }

  .head-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .lang-link {
    min-height: 2.75rem;
  }

  body:not(.profile-page) #main {
    display: flex;
    flex-direction: column;
  }

  body:not(.profile-page) .stage {
    order: 1;
  }

  body:not(.profile-page) .home-profile {
    order: 2;
  }

  body:not(.profile-page) #appointments {
    order: 3;
  }

  body:not(.profile-page) #international-clients {
    order: 4;
  }

  body:not(.profile-page) #practical-guides {
    order: 5;
  }

  .panel,
  .home-profile,
  .international,
  .guides-intro,
  .profile-section,
  .guide-section {
    scroll-margin-top: 9rem;
  }

  .urgent-consultation {
    border-color: var(--rule-bronze);
    background: color-mix(in srgb, var(--ink-deep) 88%, var(--bronze));
  }

  .international-actions .copy-email,
  .panel-actions .copy-email {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem max(0.75rem, env(safe-area-inset-right)) calc(0.5rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    border-top: 1px solid var(--rule);
    background: rgba(18, 23, 30, 0.97);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    color: var(--paper);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar .mobile-urgent {
    border-color: var(--rule-bronze);
    background: var(--paper);
    color: var(--ink);
  }

  .profile-tabs-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-tab {
    min-height: 2.75rem;
    padding-block: 0.8rem;
    border-bottom: 1px solid var(--rule);
  }

  .profile-tab:last-child {
    border-bottom: 0;
  }

  .profile-tab.is-current::after {
    right: auto;
    width: 2.5rem;
  }

  .profile-records.is-collapsible:not(.is-expanded) li:nth-child(n + 5) {
    display: none;
  }

  .records-toggle {
    display: block;
    min-height: 2.75rem;
    margin-top: 1rem;
  }

  .guides-page .profile-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guides-page .profile-index a {
    min-height: 3.25rem;
    padding-right: 0.75rem;
  }

  .guides-page .guide-section {
    border-top-color: var(--rule-bronze);
  }

  .guide-back {
    display: inline-flex;
    min-height: 2.75rem;
    margin-top: 2rem;
    align-items: center;
    color: var(--paper-muted);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-decoration-color: var(--rule-bronze);
    text-transform: uppercase;
    text-underline-offset: 0.25rem;
  }
}

@media (max-width: 34rem) {
  .head-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 1rem;
    min-height: 0;
    padding-block: 1.25rem;
  }
  .brand { grid-column: 1; }
  .lang-switch {
    grid-column: 2;
    justify-self: end;
    gap: 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .lang-switch .lang-link { min-width: 1.75rem; }
  .head-actions { grid-column: 1 / -1; margin-inline-start: 0; }
  .brand-mark { height: 34px; }
  .brand-name { font-size: 0.8125rem; letter-spacing: 0.11em; }
  .brand-name-line { white-space: normal; }
  .head-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    padding-top: 0.4rem;
    border-top: 1px solid var(--rule);
  }
  .guide-links { grid-template-columns: 1fr; }
  .head-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .stage { min-height: 0; padding-block: clamp(3.5rem, 12vh, 6rem) var(--section-y); }
  .btn { width: 100%; }
  .frames { min-height: 17rem; }
  .profile-practice-list { columns: 1; }
  .profile-tab { font-size: 0.68rem; letter-spacing: 0.12em; }
  .team-principles { grid-template-columns: 1fr; }
  .team-principles > div:nth-child(odd),
  .team-principles > div:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }
  .profile-close { padding: 2rem 1.5rem; }
  .profile-actions .btn { width: 100%; }
}
