:root {
  --ink: #141414;
  --ink-2: #292929;
  --paper: #fff;
  --paper-2: #f7f5ef;
  --paper-3: #f1efe8;
  --muted: #575757;
  --muted-2: #747474;
  --line: #d9d7d0;
  --line-dark: #bdbab0;
  --orange: #f59a18;
  --orange-2: #d97900;
  --blue: #4549c7;
  --blue-2: #30349e;
  --success: #176b3a;
  --danger: #9d1c1c;
  --max: 1280px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 55px rgba(20, 20, 20, .09);
  --shadow-sm: 0 8px 24px rgba(20, 20, 20, .07);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.65 var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

img,
svg {
  max-width: 100%;
  height: auto
}

a {
  color: inherit
}

button,
input,
select,
textarea {
  font: inherit
}

button,
a {
  touch-action: manipulation
}

:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow)
}

.skip-link:focus {
  top: 16px
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px)
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
  min-height: 48px
}

.brand-mark {
  width: 172px;
  height: 56px;
  flex: 0 0 172px;
  display: grid;
  place-items: center;
  position: relative;
  line-height: 1;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: .94
}

.brand-text strong {
  font-size: 1.2rem;
  letter-spacing: -.03em
}

.brand-text span {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: .05em
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: .92rem;
  border-radius: 8px
}

.main-navigation a:hover,
.main-navigation a[aria-current=page] {
  background: #E0E0E0;
  color: black;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 9px;
  cursor: pointer
}

.menu-toggle .bar {
  display: block;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform .18s ease, opacity .18s ease
}

.menu-toggle[aria-expanded=true] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] .bar:nth-child(2) {
  opacity: 0
}

.menu-toggle[aria-expanded=true] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease
}

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

.button:active {
  transform: translateY(0)
}

.button-primary {
  background: var(--orange);
  color: var(--ink)
}

.button-primary:hover {
  background: #e88b05
}

.button-dark {
  background: var(--ink);
  color: #fff
}

.button-dark:hover {
  background: #303030
}

.button-outline {
  background: transparent;
  border-color: var(--ink)
}

.button-outline:hover {
  background: var(--ink);
  color: #fff
}

.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: 590px
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-2);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font: 700 clamp(3.2rem, 6.4vw, 6.4rem)/.96 var(--serif);
  letter-spacing: -.055em
}

.hero .lead,
.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.65
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px
}

.text-link {
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  text-decoration-color: var(--orange)
}

.text-link:hover {
  text-decoration-color: var(--blue)
}

.standards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px
}

.standard {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-weight: 850
}

.standard:first-child {
  padding-left: 0
}

.standard:last-child {
  border: 0
}

.standard-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: .72rem
}

.standard:nth-child(2) .standard-icon {
  border-radius: 5px
}

.standard:nth-child(3) .standard-icon {
  border-radius: 7px
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center
}

.art-ring {
  width: min(455px, 75vw);
  aspect-ratio: 1;
  border: 10px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: #fff
}

.art-ring:before,
.art-ring:after {
  content: "";
  position: absolute;
  border: 1px solid #dedbd3;
  border-radius: 50%;
  inset: -55px
}

.art-ring:after {
  inset: -105px
}

.art-letter {
  font: 950 clamp(9rem, 18vw, 15rem)/1 var(--sans);
  letter-spacing: -.13em;
  transform: translateX(-5px)
}

.dot {
  position: absolute;
  border-radius: 50%
}

.dot.black {
  width: 54px;
  height: 54px;
  background: var(--ink);
  left: 2%;
  top: 4%
}

.dot.orange {
  width: 54px;
  height: 54px;
  background: var(--orange);
  right: -1%;
  bottom: 11%
}


.p-left {
  left: 0;
  top: 43%;
  flex-direction: row
}

.p-left:after {
  order: 3
}

.p-right {
  right: 0;
  top: 43%;
  flex-direction: row-reverse
}

.p-bottom {
  bottom: 0;
  left: 42%;
  flex-direction: column-reverse
}

.p-bottom:after {
  width: 1px;
  height: 38px
}

.section {
  padding: 92px 0
}

.section.soft {
  background: var(--paper-2)
}

.section.dark {
  background: var(--ink);
  color: #fff
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px
}

.section-heading h2 {
  margin: 0;
  font: 700 clamp(2.2rem, 4vw, 3.7rem)/1.05 var(--serif);
  letter-spacing: -.04em
}

.heading-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--orange);
  margin: 18px auto 0
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: 0 0 0 transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #c8c4ba
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  margin-bottom: 22px
}

.card-icon svg {
  width: 27px;
  height: 27px
}

.card h3 {
  margin: 0 0 10px;
  font: 800 1.35rem/1.15 var(--serif)
}

.card p {
  color: var(--muted);
  margin-bottom: 20px
}

.card a {
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: var(--orange)
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a
}

.stat {
  padding: 25px 20px;
  text-align: center;
  border-right: 1px solid #3a3a3a
}

.stat:last-child {
  border: 0
}

.stat strong {
  display: block;
  font: 800 clamp(2rem, 4vw, 3.2rem)/1 var(--serif)
}

.stat span {
  color: #cfcfcf
}

.page-hero {
  padding: 82px 0 60px;
  background: linear-gradient(180deg, #fff, var(--paper-2))
}

.page-hero .container {
  max-width: 1050px
}

.page-hero h1 {
  margin: 0 0 22px;
  font: 700 clamp(3rem, 6vw, 5.8rem)/.98 var(--serif);
  letter-spacing: -.055em
}

.page-hero .eyebrow {
  margin-bottom: 15px
}

.breadcrumbs {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .9rem
}

.breadcrumbs a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px
}

.breadcrumbs span {
  margin: 0 7px
}

.services-accordion {
  display: grid;
  gap: 16px;
  max-width: 1050px;
  margin-inline: auto;
}

.service-accordion {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: clip;
  box-shadow: 0 4px 18px rgba(20, 20, 20, .04);
}

.service-accordion:nth-child(even) {
  background: var(--paper-2);
}

.service-accordion > summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  min-height: 108px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
}

.service-accordion > summary::-webkit-details-marker {
  display: none;
}

.service-accordion > summary:hover {
  background: #f4f4f4;
}

.service-accordion > summary:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: -4px;
}

.service-number {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -.08em;
  color: var(--blue);
}

.service-summary-title {
  font: 700 clamp(1.45rem, 2.4vw, 2.25rem)/1.05 var(--serif);
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .18s ease;
  justify-self: end;
}

.service-accordion[open] .accordion-icon {
  transform: rotate(225deg) translate(-2px, -2px);
}

.service-panel {
  padding: 0 28px 32px;
  border-top: 1px solid var(--line);
}

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

.service-panel h3 {
  font: 800 1.35rem/1.15 var(--serif);
  margin: 34px 0 12px;
}

.service-panel p {
  max-width: 900px;
  color: var(--muted);
}

.service-panel ul {
  padding-left: 1.3rem;
  max-width: 980px;
}

.service-panel li {
  margin: .65rem 0;
}

.service-panel li::marker {
  color: var(--orange-2);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0
}

.plan {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 25px;
  background: #fff
}

.plan.recommended {
  border: 2px solid var(--blue);
  padding: 24px;
  box-shadow: var(--shadow-sm)
}

.plan-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 13px
}

.plan h3 {
  margin-top: 0
}

.plan ul {
  margin-bottom: 0
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px
}

.region-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 30px;
  background: #fff
}

.region-card h3 {
  margin: 0 0 12px;
  font: 800 1.45rem/1.1 var(--serif)
}

.region-card dl {
  margin: 0
}

.region-card dt {
  font-weight: 900;
  margin-top: 14px
}

.region-card dd {
  margin: 2px 0 0;
  color: var(--muted)
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


.region-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.region-list li {
  margin: .9rem 0;
  padding-left: .2rem;
}

.region-list li::marker {
  color: var(--orange-2);
}

.region-list strong {
  display: block;
  font-weight: 900;
}

.region-list span {
  display: block;
  color: var(--muted);
}

.callout {
  border-left: 5px solid var(--orange);
  background: var(--paper-2);
  padding: 22px 24px;
  margin: 28px 0;
  border-radius: 0 13px 13px 0
}

.callout.blue {
  border-left-color: var(--blue)
}

.faq {
  max-width: 950px;
  margin-inline: auto
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0
}

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

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
  padding-right: 30px
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 45px;
  align-items: start
}

.contact-intro {
  position: sticky;
  top: 120px
}

.contact-intro h2 {
  font: 700 clamp(2.1rem, 4vw, 3.4rem)/1.05 var(--serif);
  letter-spacing: -.04em
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 20px
}

.benefits li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px
}

.benefits .check {
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 950
}

.benefits strong {
  display: block
}

.benefits span {
  display: block;
  color: var(--muted);
  font-size: .95rem
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-group {
  display: grid;
  gap: 7px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-weight: 850
}

.required {
  color: var(--danger)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #a7a59f;
  border-radius: 9px;
  padding: 11px 13px;
  background: #fff;
  color: var(--ink)
}

.form-group textarea {
  min-height: 155px;
  resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(69, 73, 199, .2)
}

.form-help {
  font-size: .83rem;
  color: var(--muted)
}

.checkbox {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 20px 0
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  flex: 0 0 auto
}

.form-status {
  min-height: 28px;
  margin-top: 14px;
  font-weight: 800
}

.form-status.error {
  color: var(--danger)
}

.form-status.success {
  color: var(--success)
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px;
  align-items: center
}

.about-visual {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.about-visual:before,
.about-visual:after {
  content: "";
  position: absolute;
  border: 1px solid #555;
  border-radius: 50%;
  width: 430px;
  height: 430px
}

.about-visual:after {
  width: 600px;
  height: 600px
}

.about-visual .big-a {
  position: relative;
  z-index: 1;
  font: 950 13rem/1 var(--sans)
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.principle-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 23px;
  background: #fff
}

.principle-card h3 {
  margin-top: 0
}

.cta {
  padding: 75px 0;
  background: var(--ink);
  color: #fff
}

.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta h2 {
  font: 700 clamp(2.3rem, 4vw, 3.8rem)/1.02 var(--serif);
  letter-spacing: -.04em;
  margin: 0 0 12px
}

.cta p {
  color: #d5d5d5;
  max-width: 760px;
  margin: 0
}

.cta .button-primary {
  flex: 0 0 auto
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 62px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px
}

.footer-brand {
  font-size: 1.45rem;
  font-weight: 950
}

.site-footer h2 {
  font: 900 .82rem/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 4px 0 16px
}

.site-footer p {
  color: #bdbdbd;
  max-width: 420px
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.site-footer a {
  color: #ddd;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px
}

.site-footer a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 45px;
  padding: 18px 0;
  color: #aaa;
  font-size: .88rem
}

.footer-bottom p {
  margin: 0
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto
}

.back-top:hover {
  transform: translateY(-3px)
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media(max-width:1280px) {
  .main-navigation ul {
    gap: 2px
  }

  .main-navigation a {
    padding-inline: 8px
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .region-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-grid {
    grid-template-columns: 1fr 430px
  }

  .content-layout {
    grid-template-columns: 210px minmax(0, 1fr)
  }
}

@media(max-width:900px) {
  .header-actions .header-cta {
    display: none
  }

  .main-navigation {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px 20px
  }

  .main-navigation.is-open {
    display: block
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: stretch
  }

  .main-navigation a {
    width: 100%;
    padding: 12px
  }

  .menu-toggle {
    display: block
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 410px
  }

  .contact-intro {
    position: static
  }

  .content-layout {
    display: block
  }

  .services-accordion {
    width: 100%;
  }

  .service-accordion > summary {
    grid-template-columns: 64px minmax(0, 1fr) 22px;
    gap: 14px;
    min-height: 94px;
    padding: 18px 20px;
  }

  .service-number {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .service-panel {
    padding: 0 20px 28px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta .container {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid #3a3a3a
  }

  .stat:last-child {
    border-bottom: 0
  }
}

@media(max-width:620px) {
  .container {
    width: min(calc(100% - 30px), var(--max))
  }

  .header-inner {
    min-height: 76px
  }

 .brand-mark {
    width: 45px;
    height: 45px
  }

  .brand-text strong {
    font-size: 1.05rem
  }

  .brand-text span {
    display: none
  }

  .hero {
    padding: 52px 0 45px
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem)
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero-actions .button,
  .hero-actions .text-link {
    text-align: center;
    width: 100%
  }

  .standards {
    display: grid;
    gap: 13px
  }

  .standard,
  .standard:first-child {
    padding: 0;
    border: 0
  }

  .hero-art {
    min-height: 330px
  }

  .art-ring {
    width: 270px;
    border-width: 7px
  }

  .art-ring:before {
    inset: -32px
  }

  .art-ring:after {
    inset: -62px
  }

  .dot.black,
  .dot.orange {
    width: 38px;
    height: 38px
  }

  .principle {
    font-size: .83rem
  }

  .principle:after {
    width: 35px
  }
.p-bottom {
    left: 34%;
    bottom: -4px
  }

  .p-bottom:after {
    height: 23px
  }

  .section {
    padding: 65px 0
  }

  .section-heading {
    margin-bottom: 34px
  }

  .cards,
  .feature-grid,
  .plan-grid,
  .region-grid,
  .form-grid,
  .principles {
    grid-template-columns: 1fr
  }

  .page-hero {
    padding: 58px 0 43px
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem)
  }

  .service-section {
    padding: 62px 0
  }

  .form-card {
    padding: 23px
  }

  .cta {
    padding: 60px 0
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    margin-top: 35px
  }

  .back-top {
    right: 12px;
    bottom: 12px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .button,
  .card,
  .menu-toggle .bar,
  .back-top,
  .reveal {
    transition: none
  }

  .button:hover,
  .card:hover,
  .back-top:hover,
  .reveal {
    transform: none
  }

  .reveal {
    opacity: 1
  }
}

@media(forced-colors:active) {
  .site-header {
    backdrop-filter: none
  }

  .button {
    border: 1px solid ButtonText
  }

  .button-primary,
  .button-dark {
    background: ButtonFace;
    color: ButtonText
  }

  .brand-mark,
  .standard-icon {
    border-color: ButtonText
  }


  .card,
  .form-card,
  .region-card,
  .plan,
  .feature {
    border: 1px solid ButtonText
  }
}

.center {
  text-align: center
}

/* V5 accessibility and visual refinement */
:root {
  --sans: "Trebuchet MS", Verdana, Arial, sans-serif;
  --serif: "Trebuchet MS", Verdana, Arial, sans-serif;
}

/* Give text a little more breathing room without affecting layout */
body {
  letter-spacing: 0.01em;
  word-spacing: 0.03em;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.015em;
}


/* Language selector: native disclosure pattern, not a switch. */
.language-nav {
  position: relative;
  min-width: 138px;
}

.language-nav summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
}

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

.language-nav summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.language-nav[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-nav summary:hover {
  background: #f3f3f3;
}

.language-nav summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.language-label {
  color: var(--muted);
  white-space: nowrap;
}

.language-current {
  font-weight: 900;
}

.language-options {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 120;
  display: grid;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.language-options a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
}

.language-options a:hover {
  background: #f3f3f3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.language-options a[aria-current="page"] {
  background: #f1f1f1;
  box-shadow: inset 3px 0 0 var(--orange);
}

.language-options a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .language-nav summary::after,
  .accordion-icon {
    transition: none;
  }
}

/* Home hero graphic: keep the complete generated composition visible. */
.hero-art {
  min-height: 600px;
  overflow: visible;
  display: grid;
  place-items: center;
}

.art-stage {
  width: min(760px, 100%);
  display: grid;
  place-items: center;
}

.art-stage picture {
  display: block;
  width: 100%;
}

.hero-logo-composite {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero-art {
    min-height: 480px;
  }

  .art-stage {
    width: min(700px, 100%);
  }
}

@media (max-width: 700px) {
  .hero-art {
    min-height: auto;
    margin-top: 12px;
  }

  .art-stage {
    width: 100%;
  }

  .hero-logo-composite {
    width: 100%;
  }
}

.site-footer a:hover {
  color: #fff;
  background: #2b2b2b;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer a:focus-visible {
  color: #fff;
  background: #2b2b2b;
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .language-nav {
    min-width: 128px;
  }

  .art-stage {
    min-height: 470px;
  }
.footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding-top: 48px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

 .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .header-actions {
    margin-left: auto;
  }

  .language-nav summary {
    min-height: 40px;
    padding-inline: 8px;
  }

  .hero-art {
    min-height: 440px;
    margin-top: 8px;
  }

  .art-stage {
    min-height: 430px;
  }
.p-bottom {
    bottom: 0;
  }

  .site-footer a {
    width: fit-content;
    max-width: 100%;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-bottom: 24px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner {
    min-height: 72px;
    gap: 5px;
  }

  .brand {
    gap: 7px;
  }


  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .language-nav {
    min-width: 0;
  }

  .language-nav summary {
    min-height: 40px;
    padding-inline: 6px;
    font-size: .76rem;
  }
}

@media (max-width: 340px) {
  .brand-mark {
    width: 112px;
    height: 38px;
    flex-basis: 112px;
  }

  .header-actions {
    gap: 4px;
    min-width: 0;
  }

  .language-nav summary {
    padding-inline: 5px;
  }

  .language-label {
    display: none;
  }
}

/* At 200% zoom the layout must reflow instead of forcing horizontal scrolling. */
@media (min-width: 621px) and (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .header-cta {
    display: none;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-art {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .back-top,
  .site-footer a,
  .reveal,
  .menu-toggle .bar {
    transition: none !important;
  }

  .back-top:hover,
  .button:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  .language-nav summary,
  .language-options,
  .language-options a[aria-current="page"],
  .back-top,
  .site-footer a {
    border: 2px solid ButtonText;
  }
:focus-visible {
    outline: 3px solid Highlight;
  }
}
/* Bamboo Lab logo: use the supplied V13 logo asset without changing the V12 design system. */
.brand-logo {
  display: block;
  width: 156px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 700px) {
  .brand-logo {
    width: 138px;
  }
}

@media (max-width: 400px) {
  .brand-logo {
    width: 120px;
  }
}

@media (max-width: 340px) {
  .brand-logo {
    width: 108px;
  }
}


/* V18 — Mobile language-first header and page-preserving language switcher. */
.language-nav {
  flex: 0 0 auto;
}

@media (min-width: 901px) {
  .header-inner > .brand { order: 1; }
  .header-inner > .main-navigation { order: 2; }
  .header-inner > .language-nav { order: 3; }
  .header-inner > .header-actions { order: 4; }
  .header-inner > .menu-toggle { order: 5; }
}

@media (max-width: 900px) {
  .header-inner > .brand { order: 1; }
  .header-inner > .language-nav { order: 2; }
  .header-inner > .menu-toggle { order: 3; }
  .header-inner > .main-navigation { order: 4; }
  .header-inner > .header-actions { order: 5; }

  /* Keep the language control compact and recognizable on mobile. */
  .language-nav {
    min-width: 0;
  }

  .language-nav summary {
    min-height: 48px;
    padding: 7px 8px;
    gap: 6px;
    font-size: .84rem;
  }

  .language-globe {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
  }

  .language-globe svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .language-label {
    display: none;
  }

  .language-current {
    font-size: 0;
    line-height: 1;
  }

  .language-current::after {
    content: attr(data-short);
    font-size: .84rem;
    font-weight: 900;
  }

  .language-nav summary::after {
    width: 6px;
    height: 6px;
    margin-left: 1px;
  }

  .language-options {
    min-width: 150px;
  }
}

@media (max-width: 400px) {
  .header-inner {
    gap: 5px;
  }

  .language-nav summary {
    min-height: 46px;
    padding-inline: 7px;
  }

  .language-globe,
  .language-globe svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 340px) {
  .language-nav summary {
    padding-inline: 6px;
  }
}


/* V19 — WCAG 2.2 header focus order.
   DOM order: brand → navigation → language → menu toggle → actions.
   Desktop therefore reaches navigation before language. On mobile the navigation
   is display:none until opened, so the initial focus sequence is language → menu. */
@media (min-width: 901px) {
  .header-inner > .brand { order: 1; }
  .header-inner > .main-navigation { order: 2; }
  .header-inner > .language-nav { order: 3; }
  .header-inner > .menu-toggle { order: 4; }
  .header-inner > .header-actions { order: 5; }
}

@media (max-width: 900px) {
  .header-inner > .brand { order: 1; }
  .header-inner > .language-nav { order: 2; }
  .header-inner > .menu-toggle { order: 3; }
  .header-inner > .main-navigation { order: 4; }
  .header-inner > .header-actions { order: 5; }
}
