:root {
  --bg: #fffcfe;
  --surface: #ffffff;
  --surface-soft: #fff5fb;
  --surface-glass: rgba(255, 255, 255, 0.94);
  --surface-panel: rgba(255, 255, 255, 0.76);
  --text: #050505;
  --muted: #5f5f5f;
  --line: #eee7ed;
  --brand-green: #b0ff30;
  --brand-green-soft: #f2ffd9;
  --brand-pink: #ff68c0;
  --brand-pink-soft: #fff0f8;
  --brand-gray: #383838;
  --badge-mint: #95dcca;
  --control: #050505;
  --control-text: #ffffff;
  --grid-bg: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23141820' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 0H120V120H0Z'/%3E%3Cpath d='M60 0V120M0 60H120'/%3E%3C/g%3E%3Cg fill='%23141820' fill-opacity='0.12'%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3C/g%3E%3C/svg%3E");
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.09);
  --shadow-soft: 0 14px 38px rgba(5, 5, 5, 0.07);
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background-color: #fffcfe;
  background-size: 120px 120px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

.page-home::before {
  content: "";
  position: fixed;
  left: 0;
  top: clamp(200px, 33vh, 370px);
  width: 14vw;
  min-width: 120px;
  max-width: 220px;
  height: clamp(300px, 48vh, 540px);
  z-index: -1;
  pointer-events: none;
  background-color: #b0ff30;
  border-radius: 0 42px 42px 0;
}

.page-home::after {
  content: "";
  position: fixed;
  right: 0;
  top: clamp(310px, 35vh, 390px);
  width: 14vw;
  min-width: 120px;
  max-width: 220px;
  height: clamp(300px, 48vh, 540px);
  z-index: -1;
  pointer-events: none;
  background-color: #ff68c0;
  border-radius: 42px 0 0 42px;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 104, 192, 0.44);
  outline-offset: 4px;
}

.landing-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 34px 0 34px;
}

.brand-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 18px 0 34px;
}

.brand-mark {
  width: min(840px, 100%);
  margin-bottom: 18px;
  overflow: hidden;
}

.brand-mark img {
  width: min(420px, 50%);
  height: auto;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-gray);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  width: 100%;
  max-width: 880px;
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
  white-space: normal;
}

.page-home h1 {
  max-width: none;
  white-space: nowrap;
}

.page-division h1,
.page-service h1,
.page-simple h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1.02;
  white-space: normal;
}

.hero-copy {
  width: 100%;
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.division-card {
  --card-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  min-height: 486px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, 0, 0);
  transition:
    transform 620ms var(--card-ease),
    box-shadow 620ms var(--card-ease),
    border-color 420ms ease,
    background-color 420ms ease;
  will-change: transform;
}

.division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.division-card:hover {
  border-color: rgba(255, 104, 192, 0.28);
  box-shadow: 0 28px 72px rgba(5, 5, 5, 0.12);
  transform: translate3d(0, -5px, 0);
}

.division-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-green-soft), var(--brand-pink-soft));
}

.division-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: grayscale(0%) saturate(1.04) contrast(1.015) brightness(1);
  transform: scale(1.01);
  transition:
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms ease;
  will-change: transform, filter;
}

.division-card:hover .division-image img {
  filter: grayscale(100%) saturate(0%) brightness(1.04);
  transform: scale(1.045);
}

.division-content {
  display: grid;
  gap: 9px;
  padding: 24px;
  background: var(--surface-glass);
  transform: translateY(0);
  transition: transform 620ms var(--card-ease), background-color 420ms ease;
}

.division-card:hover .division-content {
  transform: translateY(-2px);
}

.division-label {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #000000;
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.division-name {
  font-size: 1.54rem;
  line-height: 1.08;
  font-weight: 760;
}

.division-summary {
  min-height: 72px;
  color: var(--muted);
  font-size: 0.98rem;
}

.division-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 740;
  transition: color 420ms ease, transform 560ms var(--card-ease);
}

.division-card:hover .division-action {
  transform: translateY(-1px);
}

.division-action::after {
  content: "\2192";
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--control);
  color: var(--control-text);
  transition:
    transform 560ms var(--card-ease),
    background-color 420ms ease,
    box-shadow 560ms var(--card-ease);
}

.division-card:hover .division-action::after {
  background: var(--brand-pink);
  box-shadow: 0 10px 24px rgba(255, 104, 192, 0.22);
  transform: translateX(3px) scale(1.025);
}

.division-card-featured {
  z-index: 2;
  min-height: 526px;
  transform: translate3d(0, -18px, 0) scale(1.045);
}

.division-card-featured:hover {
  transform: translate3d(0, -23px, 0) scale(1.055);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-inner a {
  transition: color 160ms ease;
}

.footer-inner a:hover {
  color: var(--text);
}

.division-page,
.service-page,
.simple-page {
  width: min(1080px, calc(100% - 40px));
  min-height: calc(100vh - 102px);
  margin: 0 auto;
  padding: 42px 0 38px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.back-link::before {
  content: "\2190";
}

.division-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.division-hero-copy,
.division-hero-image {
  min-width: 0;
}

.division-hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.division-hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.division-hero-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.focus-panel,
.service-list,
.simple-content {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 42px);
}

.focus-panel h2,
.simple-content h1 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.02;
}

.focus-panel p,
.simple-content p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-content section {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.14;
}

.legal-content p,
.legal-list {
  max-width: 820px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-data {
  display: grid;
  gap: 0;
  width: min(820px, 100%);
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-data div:first-child {
  border-top: 0;
}

.legal-data dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
  color: var(--text);
  font-weight: 480;
  overflow-wrap: anywhere;
}

.legal-updated {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cookie-table {
  display: grid;
  width: min(920px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.cookie-table [role="row"] {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 0.9fr 0.9fr;
}

.cookie-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.cookie-table span {
  min-width: 0;
  padding: 13px 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  overflow-wrap: anywhere;
}

.cookie-table span:first-child {
  border-left: 0;
}

.cookie-table [role="columnheader"] {
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list {
  margin-top: 26px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.02;
}

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

.service-card {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 104, 192, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.service-card-name {
  display: block;
  font-size: 1.28rem;
  font-weight: 760;
  line-height: 1.12;
}

.service-card-summary {
  display: block;
  color: var(--muted);
  font-size: 0.97rem;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 740;
}

.service-card-action::after {
  content: "\2192";
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 8px 13px;
  color: var(--brand-gray);
  font-weight: 690;
}



.gallery-panel {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3.6vw, 34px);
}

.gallery-heading {
  align-items: flex-start;
  margin-bottom: 22px;
}

.gallery-heading > div {
  min-width: 0;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 1.02;
}

.gallery-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.gallery-carousel {
  position: relative;
}

.gallery-carousel-viewport {
  position: relative;
  min-height: clamp(320px, 50vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(16, 24, 32, 0.07);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity 360ms ease,
    visibility 360ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-slide img,
.gallery-lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-slide figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 1;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 780;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #050505;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-nav-prev {
  left: 16px;
}

.gallery-nav-next {
  right: 16px;
}

.gallery-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

body.is-lightbox-open {
  overflow: hidden;
}


.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.86);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-inner {
  position: relative;
  width: min(1180px, 100%);
  height: min(78vh, 760px);
}

.gallery-lightbox-figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #050505;
}

.gallery-lightbox-figure figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-weight: 760;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.gallery-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  font-size: 1.4rem;
  font-weight: 760;
  cursor: pointer;
}

.gallery-lightbox .gallery-nav-prev {
  left: -22px;
}

.gallery-lightbox .gallery-nav-next {
  right: -22px;
}

.gallery-lightbox-counter {
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  font-size: 0.88rem;
  font-weight: 760;
}


@media (max-width: 980px) {
  .landing-shell {
    padding-top: 30px;
  }

  .page-home::before {
    top: clamp(340px, 48vw, 420px);
    width: clamp(96px, 18vw, 170px);
    min-width: 0;
    height: clamp(250px, 44vh, 440px);
  }

  .page-home::after {
    top: clamp(370px, 54vw, 460px);
    width: clamp(96px, 18vw, 170px);
    min-width: 0;
    height: clamp(250px, 44vh, 440px);
  }

  .division-grid,
  .division-hero {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: 0;
    grid-template-columns: 42% 1fr;
    grid-template-rows: auto;
  }

  .division-card-featured,
  .division-card-featured:hover {
    min-height: 0;
    transform: none;
  }

  .division-summary {
    min-height: 0;
  }

  .division-hero-image img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .page-home h1 {
    white-space: normal;
  }
}

@media (max-width: 660px) {
  body {
    background-color: #fffcfe;
    background-size: 96px 96px;
  }

  .brand-mark img {
    width: min(330px, 82%);
    height: auto;
    margin: 0 auto;
  }
  
  .page-home::before {
    display: block;
    left: -28px;
    top: 365px;
    width: 112px;
    min-width: 0;
    max-width: none;
    height: 245px;
    border-radius: 0 30px 30px 0;
  }

  .page-home::after {
    display: block;
    right: -28px;
    top: 390px;
    width: 112px;
    min-width: 0;
    max-width: none;
    height: 275px;
    border-radius: 30px 0 0 30px;
  }

  .landing-shell,
  .division-page,
  .service-page,
  .simple-page,
  .site-footer {
    width: min(1180px, calc(100vw - 44px));
  }

  .brand-hero {
    padding-top: 8px;
    padding-bottom: 26px;
  }

  .brand-mark {
    width: min(510px, 100%);
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(1.82rem, 9vw, 2.7rem);
    white-space: normal;
  }

  .page-home h1 {
    max-width: 18rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.62rem;
    line-height: 1.12;
    white-space: normal;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .division-grid {
    gap: 16px;
  }

  .division-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .division-card-featured,
  .division-card-featured:hover {
    transform: none;
  }

  .division-image img {
    height: 210px;
  }

  .division-content {
    padding: 20px;
  }

  .division-name {
    font-size: 1.34rem;
  }

  .division-summary {
    font-size: 0.96rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    flex-direction: column;
  }

  .division-page,
  .service-page,
  .simple-page {
    padding-top: 28px;
  }

  .back-link {
    margin-bottom: 24px;
  }

  .division-hero-image img {
    height: 260px;
  }
}


@media (max-width: 760px) {
  .gallery-panel {
    padding: 18px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    max-width: none;
    margin-top: 10px;
  }

  .gallery-carousel-viewport {
    min-height: 310px;
    border-radius: 18px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .gallery-nav-prev {
    left: 10px;
  }

  .gallery-nav-next {
    right: 10px;
  }

  .gallery-counter {
    right: 12px;
    bottom: 12px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-inner {
    height: min(72vh, 620px);
  }

  .gallery-lightbox .gallery-nav-prev {
    left: 10px;
  }

  .gallery-lightbox .gallery-nav-next {
    right: 10px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .gallery-lightbox-counter {
    top: 10px;
    left: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #050505;
    --surface: #101010;
    --surface-soft: #161616;
    --surface-glass: rgba(16, 16, 16, 0.94);
    --surface-panel: rgba(18, 18, 18, 0.82);
    --text: #ffffff;
    --muted: #b7b7b7;
    --line: #2f2f2f;
    --brand-green-soft: #20340b;
    --brand-pink-soft: #351326;
    --brand-gray: #d6d6d6;
    --control: #b0ff30;
    --control-text: #050505;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.34);
  }

  body {
    background:
      radial-gradient(circle at 16% 8%, rgba(176, 255, 48, 0.16), transparent 28rem),
      radial-gradient(circle at 84% 18%, rgba(255, 104, 192, 0.14), transparent 30rem),
      linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
  }

  .division-card,
  .service-card,
  .gallery-panel,
  .gallery-carousel-viewport,
  .focus-panel,
  .service-list,
  .simple-content,
  .division-hero-image {
    border-color: var(--line);
  }

  .division-card::after {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .division-content {
    background: var(--surface-glass);
  }

  .pill-list span {
    color: var(--text);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .division-card,
  .division-image img,
  .division-content,
  .division-action,
  .division-action::after {
    transition-duration: 240ms !important;
  }

  .division-card:hover {
    transform: translate3d(0, -2px, 0);
  }

  .division-card:hover .division-image img {
    transform: scale(1.018);
  }

  .division-card:hover .division-content,
  .division-card:hover .division-action {
    transform: none;
  }

  .division-card:hover .division-action::after {
    transform: translateX(2px);
  }
}

@media (hover: none), (pointer: coarse) {
  .division-image img,
  .division-card:hover .division-image img {
    filter: none;
  }
}

.company-section {
  margin-top: 34px;
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.company-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.company-info h2,
.contact-form h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.company-data {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-data div {
  display: grid;
  grid-template-columns: minmax(88px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.company-data div:first-child {
  border-top: 0;
}

.company-data dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 480;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 42px);
}

.contact-form .eyebrow,
.contact-form h2 {
  margin-bottom: 0;
}

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

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

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-form label > span {
  color: var(--brand-gray);
  font-size: 0.84rem;
  font-weight: 740;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 104, 192, 0.22);
  border-color: rgba(255, 104, 192, 0.62);
}

.contact-form button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--control);
  color: var(--control-text);
  padding: 12px 22px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 2px;
}

.contact-form .privacy-consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--brand-pink);
}

.contact-form .privacy-consent > span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 640;
  line-height: 1.42;
}

.privacy-consent a {
  color: var(--text);
  font-weight: 780;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: none;
  width: min(940px, calc(100% - 32px));
  transform: translateX(-50%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.18);
  padding: 16px 18px;
  backdrop-filter: blur(16px);
}

.cookie-notice.is-visible {
  display: grid;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-notice strong {
  color: var(--text);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions a,
.cookie-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 780;
}

.cookie-actions a {
  border: 1px solid var(--line);
  color: var(--text);
}

.cookie-actions button {
  border: 0;
  background: var(--control);
  color: var(--control-text);
  cursor: pointer;
}

@media (max-width: 980px) {
  .company-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 0;
  }

  .contact-form {
    border-radius: 20px;
    padding: 22px;
  }

  .legal-data div,
  .cookie-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .cookie-table span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cookie-table span:first-child {
    border-top: 0;
  }

  .cookie-notice,
  .cookie-notice.is-visible {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions a,
  .cookie-actions button {
    flex: 1 1 150px;
  }
}

@media (prefers-color-scheme: dark) {
  .cookie-notice {
    background: rgba(16, 16, 16, 0.96);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  }

  .cookie-table {
    background: var(--surface);
  }

  .cookie-table [role="columnheader"] {
    background: var(--surface-soft);
  }
}
