:root {
  --forest: #2e413e;
  --forest-deep: #182e2a;
  --forest-soft: #3d5953;
  --leaf: #73d676;
  --leaf-soft: #dff2dc;
  --aqua: #6accc6;
  --paper: #f4f3ed;
  --paper-deep: #e8e8df;
  --white: #ffffff;
  --ink: #17211f;
  --muted: #66706d;
  --line: rgba(23, 33, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(18, 46, 39, 0.13);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--forest);
  color: var(--white);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(9, 25, 21, 0.23);
}

.brand {
  display: flex;
  width: 174px;
  height: 76px;
  align-items: center;
}

.brand img {
  width: 163px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.15vw, 33px);
  font-size: 0.92rem;
}

.primary-nav > a:not(.nav-portal) {
  position: relative;
  padding: 28px 0 25px;
  color: rgba(255, 255, 255, 0.82);
}

.primary-nav > a:not(.nav-portal)::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav > a[aria-current="page"] {
  color: var(--white);
}

.nav-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-portal:hover {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--forest-deep);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #39705f;
}

.hero-home {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-home::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 41, 36, 0.93) 0%, rgba(26, 48, 43, 0.75) 43%, rgba(26, 48, 43, 0.2) 75%);
  content: "";
}

.hero-home > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 54px;
}

.hero-home h1,
.page-hero h1,
.product-hero h1,
.section-heading h2,
.statement h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-home h1 {
  max-width: 900px;
}

.hero-home h1 em,
.statement h2 em {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--leaf);
  color: var(--forest-deep);
}

.button-primary:hover {
  background: #b7df45;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button-dark {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.button-line {
  border-color: var(--line);
  color: var(--ink);
}

.button-line:hover {
  border-color: var(--forest);
}

.hero-proof {
  display: grid;
  max-width: 730px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: auto;
  padding-top: 70px;
}

.hero-proof div {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 14px;
}

.hero-proof span {
  color: var(--leaf);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.hero-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.4;
}

.signal-strip {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 58px);
  padding: 16px 24px;
  background: var(--leaf);
  color: var(--forest-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.section {
  padding: clamp(82px, 9vw, 132px) clamp(24px, 5vw, 72px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 800px;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .simple-card,
.section-dark .value-card {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.055);
}

.section-dark .simple-card p,
.section-dark .value-card p {
  color: rgba(255, 255, 255, 0.68);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.focus-card {
  position: relative;
  display: flex;
  min-height: 360px;
  grid-column: span 4;
  flex-direction: column;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease;
}

.focus-card:nth-child(1),
.focus-card:nth-child(5) {
  grid-column: span 6;
}

.focus-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.focus-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(115, 214, 118, 0.34);
  border-radius: 50%;
  content: "";
}

.focus-card-code {
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-lockup,
.product-brand-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  min-width: 150px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(23, 33, 31, 0.09);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(14, 35, 30, 0.09);
}

.focus-card .brand-lockup {
  margin-top: 22px;
}

.brand-lockup img,
.product-brand-lockup img {
  width: auto;
  max-width: 174px;
  max-height: 42px;
}

.brand-lockup .brand-logo-dermagy,
.product-brand-lockup .brand-logo-dermagy {
  max-height: 54px;
}

.focus-card h3 {
  margin: auto 0 8px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.focus-card p {
  z-index: 1;
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.focus-card-link {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 700;
}

.focus-card-link span {
  transition: transform 180ms ease;
}

.focus-card:hover .focus-card-link span {
  transform: translateX(5px);
}

.three-grid,
.service-grid,
.value-grid,
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.simple-card,
.value-card,
.product-feature {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
}

.simple-card-number,
.feature-number {
  color: #3b725f;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.simple-card h3,
.value-card h3,
.product-feature h3 {
  margin: 46px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.simple-card p,
.value-card p,
.product-feature p {
  margin: 0;
  color: var(--muted);
}

.image-story {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-story-media {
  min-height: 560px;
}

.image-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 82px);
}

.image-story-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.image-story-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.image-story-copy .text-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #326653;
  font-weight: 700;
}

.page-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.page-hero {
  min-height: 590px;
}

.page-hero.has-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 44, 37, 0.94), rgba(18, 44, 37, 0.55) 56%, rgba(18, 44, 37, 0.18));
  content: "";
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 92px 0 74px;
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.page-hero p:last-child {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.statement {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.statement h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.statement-copy {
  padding-top: 6px;
}

.statement-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.office-card {
  padding: 34px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.office-card span {
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-card h3 {
  margin: 36px 0 8px;
  font-size: 2rem;
  font-weight: 500;
}

.office-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  gap: 28px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(21, 47, 41, 0.09);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.service-card-body {
  padding: 29px;
}

.service-card-body span {
  color: #39705f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-card h2 {
  margin: 28px 0 12px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.process-row {
  display: grid;
  grid-template-columns: 90px 0.7fr 1.3fr;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-row > span {
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 700;
}

.process-row h3 {
  margin: 0;
  font-size: 1.2rem;
}

.process-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-group + .portfolio-group {
  margin-top: 80px;
}

.portfolio-group-head {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 42px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.portfolio-group-head span {
  color: #39705f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-group-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-list-four {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  transition: transform 200ms ease, background 200ms ease;
}

.portfolio-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.portfolio-card-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: #2f6251;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card .brand-lockup {
  margin: 20px 0 24px;
}

.portfolio-card h3 {
  margin: auto 0 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
}

.portfolio-card .text-link {
  margin-top: 22px;
  font-size: 0.9rem;
}

.product-hero {
  min-height: 670px;
}

.product-hero-grid {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.product-hero-copy {
  padding: 82px 0;
}

.product-hero-visual {
  height: 560px;
  margin: 54px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(5, 24, 19, 0.25);
}

.product-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-visual-contain {
  padding: clamp(28px, 4vw, 58px);
  background: #f8f8f4;
}

.product-hero-visual-contain img {
  object-fit: contain;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.product-brand-lockup {
  min-width: 188px;
  min-height: 76px;
  margin-bottom: 26px;
  padding: 15px 20px;
}

.product-brand-lockup img {
  max-width: 210px;
  max-height: 48px;
}

.product-brand-lockup-tall {
  min-height: 92px;
}

.product-brand-lockup-tall img {
  max-height: 62px;
}

.product-brand-lockup-tall .brand-logo-dermagy {
  max-height: 62px;
}

.product-site-actions {
  margin-top: 26px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.product-hero h1 {
  max-width: 920px;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.product-hero .hero-lead {
  max-width: 720px;
}

.product-wordmark {
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.product-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-intro-copy p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-feature-grid {
  margin-top: 58px;
}

.product-feature {
  min-height: 270px;
}

.product-feature h3 {
  margin-top: 54px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-media-grid-asymmetric {
  grid-template-columns: 0.72fr 1.28fr;
}

.product-media-card {
  display: flex;
  min-width: 0;
  min-height: 450px;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 52px rgba(5, 24, 19, 0.2);
}

.product-media-card img {
  width: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
}

.product-media-card figcaption {
  padding: 15px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-media-card-contain img,
.product-media-card-phone img,
.product-media-card-workspace img {
  object-fit: contain;
}

.product-media-card-phone,
.product-media-card-workspace {
  height: 670px;
}

.product-media-card-phone img {
  padding: 28px;
  background: #f5f7fb;
}

.product-media-card-workspace img {
  padding: 24px;
  background: #eaf4f4;
}

.availability-note {
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 3px solid var(--leaf);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(55px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background: var(--leaf);
  color: var(--forest-deep);
}

.cta-band h2 {
  max-width: 850px;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.cta-band p {
  max-width: 650px;
  margin: 18px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.contact-details h2,
.contact-form h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-details > p {
  margin: 22px 0 34px;
  color: var(--muted);
}

.contact-link {
  display: block;
  width: fit-content;
  margin: 10px 0;
  border-bottom: 1px solid currentColor;
  color: #326653;
  font-weight: 700;
}

.contact-office-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-office {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-office span {
  color: #39705f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-office p {
  margin: 7px 0 0;
  color: var(--muted);
}

.contact-form {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  min-height: 125px;
  padding: 12px 0;
  resize: vertical;
}

.contact-form .button {
  margin-top: 26px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-privacy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-privacy a {
  border-bottom: 1px solid currentColor;
  color: #326653;
  font-weight: 700;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status.is-error {
  color: #9f342d;
}

.site-footer {
  padding: 64px clamp(24px, 5vw, 72px) 28px;
  background: var(--forest-deep);
  color: var(--white);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 0.65fr;
  gap: 52px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 174px;
}

.footer-brand p {
  max-width: 410px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 7px;
  color: var(--leaf);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .primary-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .nav-portal {
    padding: 9px 13px;
  }

  .focus-card,
  .focus-card:nth-child(1),
  .focus-card:nth-child(5) {
    grid-column: span 6;
  }

  .service-grid,
  .three-grid,
  .product-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child,
  .product-feature:last-child {
    grid-column: 1 / -1;
  }

  .product-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 76px;
  }

  .brand {
    height: 68px;
  }

  .brand img {
    width: 148px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 30px 24px;
    background: var(--forest);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a:not(.nav-portal) {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
  }

  .primary-nav > a:not(.nav-portal)::after {
    display: none;
  }

  .nav-portal {
    margin-top: 24px;
  }

  .hero-home,
  .hero-home-inner {
    min-height: calc(100svh - 76px);
  }

  .section-heading,
  .statement,
  .product-intro,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-story {
    grid-template-columns: 1fr;
  }

  .image-story-media {
    min-height: 420px;
  }

  .portfolio-group-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-hero-copy {
    padding: 72px 0 0;
  }

  .product-hero-visual {
    height: 460px;
    margin: 0 0 58px;
  }

  .product-media-grid,
  .product-media-grid-asymmetric {
    grid-template-columns: 1fr;
  }

  .product-media-card-phone,
  .product-media-card-workspace {
    height: 580px;
  }

  .process-row {
    grid-template-columns: 60px 0.8fr 1.2fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0 18px;
  }

  .hero-home::after {
    background: linear-gradient(90deg, rgba(19, 41, 36, 0.91), rgba(19, 41, 36, 0.64));
  }

  .hero-home-inner,
  .page-hero-inner,
  .product-hero-grid {
    width: min(100% - 36px, var(--max));
  }

  .hero-home-inner {
    padding-top: 84px;
  }

  .hero-home h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 48px;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 8px;
    align-items: center;
  }

  .hero-proof p {
    max-width: none;
    margin: 0;
  }

  .signal-strip {
    min-height: 60px;
    gap: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .signal-strip i:nth-of-type(2),
  .signal-strip i:nth-of-type(3),
  .signal-strip span:nth-of-type(3),
  .signal-strip span:nth-of-type(4) {
    display: none;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .focus-grid,
  .service-grid,
  .three-grid,
  .value-grid,
  .product-feature-grid,
  .office-grid,
  .portfolio-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .focus-card:nth-child(1),
  .focus-card:nth-child(5) {
    min-height: 300px;
    grid-column: auto;
  }

  .service-card:last-child,
  .product-feature:last-child,
  .form-field-full {
    grid-column: auto;
  }

  .image-story-media {
    min-height: 330px;
  }

  .image-story-copy {
    padding: 36px 25px 42px;
  }

  .page-hero {
    min-height: 520px;
  }

  .product-hero {
    min-height: auto;
  }

  .product-hero-copy {
    padding-top: 58px;
  }

  .product-hero-visual {
    height: 330px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
  }

  .product-hero-visual-contain {
    padding: 25px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }

  .product-media-card,
  .product-media-card-phone,
  .product-media-card-workspace {
    min-height: 380px;
    height: 480px;
  }

  .process-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .process-row p {
    grid-column: 2;
  }

  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 36px 25px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: grid;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}
