:root {
  --ivory: #f4f0e7;
  --ivory-light: #faf7f0;
  --paper: #fffdf8;
  --charcoal: #232928;
  --ink-soft: #48514f;
  --teal: #1f5552;
  --teal-dark: #163f3d;
  --teal-mist: #dce6e2;
  --sage: #6e908a;
  --gold: #c4a56c;
  --gold-soft: #e8dbc2;
  --line: rgba(31, 85, 82, 0.18);
  --line-light: rgba(250, 247, 240, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

main { overflow: hidden; }

.site-header {
  width: min(1344px, calc(100% - 96px));
  height: 96px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(196, 165, 108, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: inset 0 0 0 3px var(--ivory);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-logo-symbol {
  flex: 0 0 auto;
  width: 48px;
  height: 54px;
  overflow: hidden;
  display: block;
  position: relative;
}

.brand-logo-symbol img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1; }

.brand-copy strong {
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--sage);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.7vw, 43px);
}

.site-header nav a {
  padding: 9px 0;
  color: #3e4846;
  font-size: 13px;
  font-weight: 550;
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: var(--teal);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.hero {
  width: min(1344px, calc(100% - 96px));
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.048em;
}

h1 {
  max-width: 760px;
  margin-bottom: 27px;
  color: var(--charcoal);
  font-size: clamp(66px, 6.25vw, 96px);
  line-height: .91;
}

h1 em { color: var(--teal); font-weight: 400; }

.hero-lead {
  max-width: 620px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.button {
  min-height: 56px;
  padding: 0 29px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { border: 1px solid var(--teal); background: var(--teal); color: white; }
.button-primary:hover { background: var(--teal-dark); }
.button-ghost { border: 1px solid var(--teal); background: transparent; color: var(--teal); }
.button-ghost:hover { background: rgba(31, 85, 82, .07); }

.trust-row {
  max-width: 730px;
  margin-top: 41px;
  border-top: 1px solid rgba(196, 165, 108, .48);
  border-bottom: 1px solid rgba(196, 165, 108, .48);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 82px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-soft);
  font-size: 12px;
}

.trust-item + .trust-item { border-left: 1px solid rgba(196, 165, 108, .48); }

.trust-link {
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.trust-link:hover { background: rgba(31, 85, 82, .06); color: var(--teal-dark); }
.trust-link:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.trust-item i {
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: normal;
}

.trust-item b { color: var(--charcoal); font-size: 13px; font-weight: 650; }

.hero-visual {
  min-height: 590px;
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 4%;
  right: -6%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 230, 226, .66), rgba(244, 240, 231, 0) 68%);
}

.art-rings {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: 8%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(110, 144, 138, .22);
  border-radius: 50%;
  box-shadow:
    0 0 0 29px rgba(110, 144, 138, .09),
    0 0 0 58px rgba(110, 144, 138, .06),
    0 0 0 87px rgba(110, 144, 138, .035);
}

.hero-art {
  position: absolute;
  z-index: 1;
  inset: -2% -5% -3% 0;
  width: 105%;
  height: 105%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(.82) contrast(.92);
  animation: art-float 12s ease-in-out infinite alternate;
}

.art-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(196, 165, 108, .8);
  border-radius: 50%;
}

.art-orbit-one { top: 55%; left: 24%; width: 92px; height: 92px; }
.art-orbit-two { top: 18%; right: 3%; width: 12px; height: 12px; background: var(--ivory); }

.art-dots {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 6%;
  width: 76px;
  height: 76px;
  opacity: .72;
  background-image: radial-gradient(circle, var(--sage) 1.2px, transparent 1.6px);
  background-size: 13px 13px;
}

.art-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 5%;
  padding: 11px 14px;
  border-left: 1px solid var(--gold);
  color: var(--teal);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@keyframes art-float {
  from { transform: translate3d(0, -5px, 0) rotate(-.3deg); }
  to { transform: translate3d(0, 8px, 0) rotate(.5deg); }
}

.care-strip {
  min-height: 80px;
  border-top: 1px solid rgba(196, 165, 108, .34);
  border-bottom: 1px solid rgba(196, 165, 108, .34);
  background: var(--ivory-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.care-strip span { width: 98px; height: 1px; background: var(--gold); }

.problems,
.services,
.pricing { padding: 118px max(48px, calc((100vw - 1344px) / 2)); }

.problems { background: var(--ivory-light); }
.services { background: var(--teal-dark); color: var(--ivory-light); }

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  min-height: 250px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .35);
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.problem-card:hover { z-index: 1; background: var(--paper); transform: translateY(-3px); }

.problem-card > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.problem-card h3 {
  margin: 45px 0 14px;
  color: var(--teal-dark);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.18;
}

.problem-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.problem-cta {
  margin-top: 38px;
  padding: 27px 0;
  border-top: 1px solid rgba(196, 165, 108, .55);
  border-bottom: 1px solid rgba(196, 165, 108, .55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.problem-cta p { max-width: 760px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.services .eyebrow { color: var(--gold-soft); }
.services .section-heading h2 { color: var(--ivory-light); }
.services .section-heading > p { color: rgba(250, 247, 240, .68); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  min-height: 345px;
  padding: 33px 28px 31px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover { z-index: 1; background: rgba(250, 247, 240, .055); transform: translateY(-4px); }

.service-number {
  margin-bottom: 57px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 18px;
  color: var(--ivory-light);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.service-card p { color: rgba(250, 247, 240, .64); font-size: 13px; line-height: 1.7; }

.service-person {
  margin-top: auto;
  padding-top: 25px;
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing {
  background: var(--ivory);
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(48px, calc((100vw - 1344px) / 2));
  left: max(48px, calc((100vw - 1344px) / 2));
  height: 1px;
  background: rgba(196, 165, 108, .6);
}

.pricing-heading { margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-group {
  padding: 38px;
  border: 1px solid rgba(31, 85, 82, .18);
  background: rgba(255, 253, 248, .56);
}

.pricing-group:first-child { background: rgba(220, 230, 226, .62); }

.pricing-group-header { min-height: 104px; }

.pricing-group-header > span {
  color: #8e7040;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.pricing-group h3 {
  max-width: 500px;
  margin: 13px 0 0;
  color: var(--teal-dark);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.08;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-row {
  min-height: 96px;
  padding-left: 22px;
  border: 1px solid rgba(31, 85, 82, .2);
  background: rgba(255, 253, 248, .86);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, 160px);
  align-items: stretch;
  gap: 24px;
  overflow: hidden;
}

.price-row > div {
  padding: 19px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-name {
  margin: 0;
  color: var(--charcoal);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.price-duration {
  margin-top: 8px;
  color: var(--sage);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.price-value {
  min-width: 142px;
  padding: 14px 18px;
  background: var(--teal-dark);
  color: var(--ivory-light);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.02em;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.price-value::before {
  content: "Cena";
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-footer {
  margin-top: 34px;
  padding: 25px 0;
  border-top: 1px solid rgba(196, 165, 108, .55);
  border-bottom: 1px solid rgba(196, 165, 108, .55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pricing-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.team-contact {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: #e5ece8;
}

.team-side {
  padding: 116px max(52px, calc((100vw - 1344px) / 2)) 106px max(48px, calc((100vw - 1344px) / 2));
}

.section-heading.compact { display: block; margin-bottom: 52px; }
.section-heading.compact h2 { max-width: 620px; font-size: clamp(44px, 4.5vw, 66px); }

.team-list { border-top: 1px solid var(--line); }

.team-card {
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.team-card summary {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  cursor: pointer;
  list-style: none;
}

.team-card summary::-webkit-details-marker { display: none; }
.team-card summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; }
.team-card-copy { min-width: 0; }

.team-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.avatar {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(196, 165, 108, .75);
  border-radius: 50%;
  background: rgba(250, 247, 240, .6);
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.avatar-photo { overflow: hidden; background: var(--ivory-light); }

.avatar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 27%;
}

.avatar-photo.ola-photo img {
  transform: scale(2.15);
  transform-origin: 50% 21%;
}

.team-card h3 {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.team-role { color: #8e7040; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.team-card p { max-width: 590px; margin: 11px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.team-toggle {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(196, 165, 108, .78);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.team-card[open] .team-toggle { transform: rotate(45deg); background: rgba(250, 247, 240, .72); }

.team-more {
  margin-top: 14px;
  display: inline-block;
  color: var(--teal);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-more::after { content: "  →"; color: var(--gold); }
.team-card[open] .team-more { display: none; }

.team-details {
  margin: 22px 0 0 76px;
  padding: 22px 0 5px;
  border-top: 1px solid rgba(196, 165, 108, .48);
}

.team-details.with-photo {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}

.team-profile-photo {
  width: 155px;
  aspect-ratio: 1098 / 1433;
  border: 1px solid rgba(196, 165, 108, .58);
  border-radius: 3px;
  display: block;
  object-fit: cover;
}

.team-details-copy > p {
  margin: 0 0 12px;
  color: #8e7040;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-details ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 26px;
  list-style: none;
}

.team-details li {
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  position: relative;
}

.team-details li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.founder-note {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(196, 165, 108, .6);
  border-bottom: 1px solid rgba(196, 165, 108, .6);
  display: flex;
  align-items: center;
  gap: 17px;
}

.founder-monogram {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 11px;
}

.founder-note p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

.contact-card {
  padding: 116px max(48px, calc((100vw - 1344px) / 2)) 106px 72px;
  background: var(--teal);
  color: white;
}

.eyebrow.light { color: var(--gold-soft); }

.contact-card h2 {
  max-width: 480px;
  margin-bottom: 27px;
  color: var(--ivory-light);
  font-size: clamp(46px, 5vw, 68px);
  line-height: .98;
}

.contact-intro { max-width: 470px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.75; }

.contact-links { margin: 44px 0 28px; border-top: 1px solid rgba(255, 255, 255, .2); }
.contact-links > * { padding: 21px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); display: block; }
.contact-links span { display: block; margin-bottom: 7px; color: var(--gold-soft); font-size: 8px; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.contact-links strong { font-family: "Iowan Old Style", "Baskerville", Georgia, serif; font-size: 19px; font-weight: 400; line-height: 1.45; overflow-wrap: anywhere; }
.address-entry strong { display: block; }
.route-link {
  min-height: 40px;
  margin-top: 15px;
  padding: 0 15px;
  border: 1px solid rgba(232, 219, 194, .78);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ivory-light);
  font-size: 11px;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.route-link::after { content: "↗"; color: var(--gold-soft); font-size: 14px; }
.route-link:hover { border-color: var(--ivory-light); background: rgba(255, 255, 255, .1); transform: translateY(-1px); }
.route-link:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.hours { color: rgba(255, 255, 255, .58); font-size: 11px; }
.button-light { margin-top: 16px; border: 1px solid var(--ivory-light); background: var(--ivory-light); color: var(--teal-dark); }
.button-light:hover { background: transparent; color: white; }

footer {
  min-height: 194px;
  padding: 0 max(48px, calc((100vw - 1344px) / 2));
  border-top: 1px solid rgba(196, 165, 108, .45);
  background: var(--ivory-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 10px;
}

.footer-brand { width: 210px; height: 158px; display: block; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-meta { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-meta p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer-legal a, .footer-top-link { color: var(--teal); font-weight: 650; }
.footer-legal a { font-size: 11px; text-decoration: underline; text-decoration-color: rgba(196, 165, 108, .6); text-underline-offset: 4px; }
.footer-legal a:hover, .footer-top-link:hover { color: var(--teal-dark); }

.legal-page { overflow: visible; }

.legal-hero {
  width: min(900px, calc(100% - 96px));
  margin: 0 auto;
  padding: 82px 0 58px;
  border-bottom: 1px solid rgba(196, 165, 108, .55);
}

.legal-back {
  margin-bottom: 46px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}

.legal-back:hover { color: var(--teal-dark); }
.legal-hero .eyebrow { margin-bottom: 20px; }
.legal-hero h1 { max-width: none; margin: 0 0 24px; font-size: clamp(56px, 8vw, 94px); line-height: .96; }
.legal-hero h1 em { color: var(--teal); font-weight: 400; }
.legal-intro { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }

.legal-content {
  width: min(900px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 104px;
}

.legal-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
}

.legal-section:last-child { border-bottom: 0; }
.legal-section-number { padding-top: 7px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.legal-section-body h2 { margin: 0 0 18px; color: var(--teal-dark); font-family: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif; font-size: clamp(26px, 3vw, 34px); font-weight: 400; letter-spacing: -.025em; }
.legal-section-body h3 { margin: 26px 0 12px; color: var(--teal); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.legal-section-body p, .legal-section-body li { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.legal-section-body p { margin-bottom: 14px; }
.legal-section-body ul, .legal-section-body ol { margin: 10px 0 18px; padding-left: 22px; }
.legal-section-body li + li { margin-top: 7px; }
.legal-section-body a { color: var(--teal); text-decoration: underline; text-decoration-color: rgba(196, 165, 108, .65); text-underline-offset: 3px; }
.legal-section-body strong { color: var(--charcoal); }
.legal-sublist { margin-top: 8px !important; }
.legal-update { margin-top: 26px; color: var(--sage); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); gap: 30px; }
  h1 { font-size: clamp(62px, 7vw, 84px); }
  .problem-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .team-contact { grid-template-columns: 1fr; }
  .team-side, .contact-card {
    padding-left: max(48px, calc((100vw - 820px) / 2));
    padding-right: max(48px, calc((100vw - 820px) / 2));
  }
}

@media (max-width: 780px) {
  .site-header { width: min(100% - 32px, 680px); height: 82px; }
  .site-header::after { display: none; }
  .brand-logo-symbol { width: 38px; height: 44px; }
  .brand-logo-symbol img { width: 82px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  .header-cta { min-height: 44px; padding: 0 15px; font-size: 11px; }

  .hero {
    width: min(100% - 32px, 680px);
    min-height: auto;
    padding: 58px 0 46px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  h1 { font-size: clamp(50px, 13.8vw, 72px); line-height: .94; }
  .hero-lead { font-size: 15px; line-height: 1.68; }
  .button { min-height: 52px; padding: 0 21px; }
  .hero-actions { gap: 11px; }
  .hero-actions .button { flex: 1 1 150px; }

  .trust-row { margin-top: 34px; grid-template-columns: 1fr; }
  .trust-item { min-height: 60px; padding: 10px 4px; }
  .trust-item + .trust-item { border-top: 1px solid rgba(196, 165, 108, .48); border-left: 0; }
  .trust-item i { width: 33px; height: 33px; }

  .hero-visual { min-height: 390px; }
  .hero-art { inset: -3% -8% -4% -4%; width: 112%; height: 112%; }
  .art-rings { top: 12%; right: 8%; width: 72%; }
  .art-orbit-one { top: 56%; left: 16%; width: 70px; height: 70px; }
  .art-caption { right: 2px; }

  .care-strip { min-height: 65px; gap: 15px; font-size: 8px; }
  .care-strip span { width: 38px; }

  .problems, .services, .pricing { padding: 82px 20px; }
  .section-heading { margin-bottom: 43px; grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: clamp(42px, 12vw, 59px); }
  .section-heading > p { font-size: 14px; }
  .problem-grid, .service-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; }
  .problem-card h3 { margin-top: 30px; }
  .problem-cta { align-items: stretch; flex-direction: column; }
  .service-card { min-height: 292px; }
  .service-number { margin-bottom: 42px; }

  .pricing::before { right: 20px; left: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-group { padding: 30px 18px 24px; }
  .pricing-group-header { min-height: 94px; }
  .price-row {
    min-height: 94px;
    padding-left: 15px;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 12px;
  }
  .price-row > div { padding: 16px 0; }
  .price-name { font-size: 17px; }
  .price-value { min-width: 0; padding: 12px 10px; font-size: 20px; }
  .pricing-footer { align-items: stretch; flex-direction: column; }
  .pricing-footer .button { width: 100%; }

  .team-side, .contact-card { padding: 82px 20px; }
  .team-card summary { grid-template-columns: 48px 1fr; gap: 15px; }
  .avatar { width: 43px; height: 43px; }
  .team-details { margin-left: 63px; }
  .team-details.with-photo { grid-template-columns: 1fr; gap: 18px; }
  .team-profile-photo { width: min(168px, 100%); }
  .team-details ul { grid-template-columns: 1fr; }
  .founder-note { align-items: flex-start; }

  footer { padding: 34px 20px; flex-direction: column; text-align: center; }
  .footer-brand { width: 178px; height: 134px; }
  .legal-hero, .legal-content { width: calc(100% - 40px); }
  .legal-hero { padding: 56px 0 42px; }
  .legal-back { margin-bottom: 34px; }
  .legal-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .legal-section { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .legal-section-number { padding-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
