

:root {
  --cream: #f4f5ed;
  --paper: #fffef8;
  --ink: #143b34;
  --muted: #64736e;
  --coral: #9bcf63;
  --coral-deep: #2b876f;
  --green: #124f43;
  --green-light: #a9d8bd;
  --amber: #e8a45f;
  --line: rgba(20, 59, 52, 0.12);
  --glass: rgba(255, 254, 248, 0.76);
  --shadow: 0 24px 70px rgba(31, 72, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 42, 34, 0.94) 0%, rgba(10, 45, 37, 0.84) 37%, rgba(12, 44, 36, 0.38) 68%, rgba(8, 29, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 31, 25, 0.62) 0%, transparent 38%),
    url("../images/nutriok-hero-food-supplements.webp") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(4, 29, 23, 0.08), transparent 30%, rgba(4, 29, 23, 0.22));
  content: "";
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  animation: ambient-drift 9s ease-in-out infinite alternate;
}

.ambient-one {
  top: 14%;
  right: 7%;
  width: 190px;
  height: 190px;
  background: rgba(155, 207, 99, 0.24);
}

.ambient-two {
  right: 28%;
  bottom: 7%;
  width: 160px;
  height: 160px;
  background: rgba(43, 135, 111, 0.16);
  animation-delay: -4s;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 79, 67, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #eaf2df);
  box-shadow: 0 10px 28px rgba(18, 79, 67, 0.16);
}

.brand-plate {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 6px solid var(--green);
  border-radius: 50%;
}

.brand-plate::before,
.brand-plate::after {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.brand-plate::before {
  top: -3px;
  right: 4px;
  width: 8px;
  height: 8px;
}

.brand-plate::after {
  right: -2px;
  bottom: 4px;
  width: 6px;
  height: 6px;
}

.brand-check {
  position: absolute;
  right: 5px;
  bottom: 1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 900;
  background: var(--coral-deep);
}

.brand-check svg {
  width: 13px;
  height: 13px;
}

.hero .brand-mark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.hero .brand-copy strong {
  color: white;
}

.hero .brand-copy strong span {
  color: #b9e774;
}

.hero .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

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

.brand-copy strong {
  color: var(--green);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.brand-copy strong span {
  color: var(--coral-deep);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.main-nav {
  display: flex;
  gap: clamp(28px, 3.2vw, 58px);
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.question-button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.question-button:hover {
  color: var(--green);
  background: white;
  transform: translateY(-2px);
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: white;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  min-height: 560px;
  align-items: center;
}







.hero-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 52px 32px 64px 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  padding: 0;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: transparent;
  box-shadow: none;
}

.eyebrow-ok {
  display: grid;
  min-width: 30px;
  height: 24px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-size: 10px;
  letter-spacing: 0;
  background: var(--coral-deep);
  box-shadow: none;
}

.hero h1 {
  max-width: 680px;
  margin: 32px 0 22px;
  color: white;
  font-size: clamp(56px, 5.6vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.hero h1 em {
  position: relative;
  font-style: normal;
  color: #b9e774;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 8px;
  border-bottom: 2px solid rgba(185, 231, 116, 0.78);
  border-radius: 50%;
  content: "";
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 28px;
}

.primary-button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 26px;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
  border: 0;
  color: #123d34;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: #b9e774;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 22px;
  background: white;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.text-link {
  display: inline-flex;
  min-height: 60px;
  padding: 0 22px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: rgba(7, 37, 30, 0.18);
  backdrop-filter: blur(8px);
}

.hero-credentials {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.hero-credentials span {
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-credentials span:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  padding-bottom: 34px;
  gap: 32px;
}

.proof-card {
  display: flex;
  min-height: 104px;
  padding: 23px 0;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.proof-card:first-child {
  border-radius: 0;
}

.proof-card:last-child {
  border-radius: 0;
}

.proof-number {
  display: grid;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0;
  color: #b9e774;
  font-size: 12px;
  font-weight: 800;
  background: transparent;
}

.proof-card:nth-child(2) .proof-number {
  color: #b9e774;
  background: transparent;
}

.proof-card:nth-child(3) .proof-number {
  color: #b9e774;
  background: transparent;
}

.proof-card h2 {
  margin: 0;
  color: white;
  font-size: 16px;
}

.proof-card p {
  max-width: 260px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.section-pad {
  padding-block: 118px;
}

.section-kicker {
  margin: 0 0 19px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.section-heading > .section-lead {
  width: 40%;
  margin: 0;
}

.section-heading.centered {
  display: flex;
  max-width: 820px;
  margin: 0 auto 58px;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

.section-heading.centered .section-lead {
  width: auto;
  margin: 22px auto 0;
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  position: relative;
  background: var(--paper);
}

.about-section::before {
  position: absolute;
  top: 16%;
  left: -10%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(23, 107, 90, 0.12);
  border-radius: 50%;
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 10%;
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-photo {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 52px;
  left: 0;
  display: flex;
  padding: 36px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 45% 55% 30px 30px / 30% 38% 30px 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 101, 72, 0.2), transparent 35%),
    linear-gradient(145deg, #eed7bf, #f9ebdc 55%, #e8cab1);
  box-shadow: 0 30px 80px rgba(73, 46, 36, 0.14);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 52%;
}

.about-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(33, 21, 43, 0.16) 100%);
  pointer-events: none;
}

.about-photo::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  content: "";
  z-index: 2;
}

.about-monogram {
  position: absolute;
  top: 44%;
  left: 50%;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, serif;
  font-size: 280px;
  transform: translate(-50%, -50%);
}

.photo-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.photo-label strong {
  font-size: 15px;
}

.photo-label span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.education-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: min(340px, 74%);
  padding: 22px;
  align-items: center;
  gap: 16px;
  border: 1px solid white;
  border-radius: 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 22px 58px rgba(74, 48, 38, 0.16);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease;
}

.education-card:hover {
  transform: translateY(-5px);
}

.education-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
}

.education-preview {
  width: 52px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 8px;
  background: #243878;
  box-shadow: 0 8px 18px rgba(33, 44, 91, 0.2);
}

.education-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.education-card small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.education-card strong {
  margin-top: 5px;
  font-size: 14px;
}

.education-card em {
  margin-top: 4px;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}

.about-copy > p:not(.section-kicker, .section-lead) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy .section-lead {
  margin: 30px 0 18px;
  color: var(--ink);
}

.about-values {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.about-values div {
  display: flex;
  padding: 15px 18px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.about-values b {
  color: var(--coral-deep);
  font-size: 12px;
}

.about-values span {
  font-size: 14px;
  font-weight: 700;
}

.process-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(23, 107, 90, 0.08), transparent 27%),
    linear-gradient(#fff9f1, #fff4e8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  min-height: 285px;
  padding: 30px 30px 35px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 101, 72, 0.12);
}

.process-card:nth-child(2n) .process-number {
  color: var(--green);
  background: rgba(23, 107, 90, 0.12);
}

.process-line {
  width: 65%;
  height: 1px;
  margin: 31px 0 26px;
  background: linear-gradient(90deg, var(--coral), transparent);
}

.process-card:nth-child(2n) .process-line {
  background: linear-gradient(90deg, var(--green), transparent);
}

.process-card h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.services-section {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 650px;
  padding: 38px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fffaf4;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 65px rgba(73, 46, 36, 0.1);
}

.service-card.is-featured {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 87% 12%, rgba(255, 161, 95, 0.28), transparent 27%),
    linear-gradient(145deg, #206d5f, #105447);
  box-shadow: 0 28px 70px rgba(23, 107, 90, 0.22);
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
}

.service-tag {
  margin: 0 0 20px;
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-featured .service-tag {
  color: #ffd8b2;
}

.service-card h3 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-description {
  min-height: 100px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.is-featured .service-description {
  color: rgba(255, 255, 255, 0.7);
}

.service-price {
  display: flex;
  margin: 8px 0 26px;
  align-items: flex-end;
  gap: 10px;
}

.service-price strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.service-price span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.is-featured .service-price span {
  color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #493d42;
  font-size: 13px;
  line-height: 1.45;
}

.is-featured li {
  color: rgba(255, 255, 255, 0.84);
}

.service-card li span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  background: rgba(23, 107, 90, 0.11);
}

.is-featured li span {
  color: var(--green);
  background: #d8f0e6;
}

.service-card > button {
  display: flex;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(23, 107, 90, 0.25);
  border-radius: 16px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: rgba(23, 107, 90, 0.05);
}

.is-featured > button {
  border-color: white;
  color: var(--green);
  background: white;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  gap: 12px;
}

.service-notes p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.65);
}

.service-notes strong {
  color: var(--ink);
}

.intro-callout {
  display: flex;
  margin-top: 22px;
  padding: 25px 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffaf4;
}

.intro-callout > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-callout p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.intro-callout strong {
  color: var(--ink);
  font-size: 15px;
}

.intro-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 101, 72, 0.1);
}

.intro-callout button {
  padding: 13px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.materials-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 101, 72, 0.12), transparent 25%),
    #fff5e8;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.material-card {
  display: flex;
  min-height: 520px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 16px 50px rgba(74, 48, 38, 0.06);
  backdrop-filter: blur(12px);
}

.material-art {
  position: relative;
  display: grid;
  height: 180px;
  margin-bottom: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 23px;
  background: rgba(23, 107, 90, 0.08);
}

.material-coral .material-art {
  background: rgba(255, 101, 72, 0.09);
}

.material-amber .material-art {
  background: rgba(243, 174, 61, 0.12);
}

.material-orbit {
  position: absolute;
  width: 210px;
  height: 100px;
  border: 1px solid var(--green);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.material-coral .material-orbit {
  border-color: var(--coral);
}

.material-amber .material-orbit {
  border-color: var(--amber);
}

.material-orbit::after {
  position: absolute;
  top: 5px;
  right: 38px;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.material-core {
  display: grid;
  width: 70px;
  height: 70px;
  z-index: 2;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 30px;
  background: var(--green);
  box-shadow: 0 15px 35px rgba(23, 107, 90, 0.25);
}

.material-coral .material-core {
  background: var(--coral);
  box-shadow: 0 15px 35px rgba(255, 101, 72, 0.25);
}

.material-amber .material-core {
  background: var(--amber);
  box-shadow: 0 15px 35px rgba(243, 174, 61, 0.25);
}

.material-type {
  margin: 0 0 12px !important;
  color: var(--green) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-coral .material-type {
  color: var(--coral-deep) !important;
}

.material-amber .material-type {
  color: #9a6400 !important;
}

.material-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.material-card > p:not(.material-type) {
  margin: 16px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.material-footer {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.material-footer strong {
  font-size: 18px;
}

.coming-status,
.article-status,
.ai-coming {
  display: inline-flex;
  min-height: 36px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid rgba(23, 107, 90, 0.18);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  background: rgba(23, 107, 90, 0.06);
}

.material-card.is-placeholder {
  position: relative;
}

.material-footer button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.ai-section {
  padding-block: 70px;
  background: var(--paper);
}

.ai-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 70px;
  overflow: hidden;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 119, 84, 0.24), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(143, 206, 177, 0.18), transparent 26%),
    linear-gradient(140deg, #21152b 0%, #123e3a 100%);
}

.ai-panel::after {
  position: absolute;
  top: -42%;
  right: -4%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.ai-copy {
  position: relative;
  z-index: 2;
  padding-right: 55px;
}

.light-kicker {
  color: #ffc5a6;
}

.ai-copy h2,
.final-panel h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 61px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.ai-copy > p:not(.section-kicker) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.ai-rules {
  display: flex;
  margin: 24px 0 30px;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-rules span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.ai-coming {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.ai-copy button,
.final-panel > button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 16px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: var(--coral);
  box-shadow: 0 16px 35px rgba(255, 101, 72, 0.2);
}

.ai-console {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.console-head {
  display: flex;
  padding-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-head > span {
  display: flex;
  gap: 7px;
}

.console-head i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.console-head i:nth-child(2) {
  background: var(--amber);
}

.console-head i:nth-child(3) {
  background: var(--green-light);
}

.console-head small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.console-question {
  width: 78%;
  margin: 35px 0 20px auto;
  padding: 17px;
  border-radius: 18px 18px 5px 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  background: #fff4e9;
}

.console-answer {
  display: flex;
  padding: 18px;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 255, 255, 0.07);
}

.answer-mark {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
}

.console-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.console-sources {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 7px;
}

.console-sources span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-light);
  font-size: 9px;
  background: rgba(139, 198, 165, 0.1);
}

.articles-section {
  background: var(--paper);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  display: flex;
  padding: 16px 16px 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fffaf4;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card-link:hover {
  border-color: rgba(43, 135, 111, 0.28);
  box-shadow: 0 24px 52px rgba(31, 72, 62, 0.12);
  transform: translateY(-5px);
}

.article-card-link:focus-visible {
  outline: 3px solid rgba(43, 135, 111, 0.32);
  outline-offset: 4px;
}

.article-art {
  position: relative;
  display: flex;
  height: 245px;
  padding: 23px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 62% 40%, rgba(255, 255, 255, 0.9), transparent 8%),
    linear-gradient(145deg, #ffc2a3, #ef6a4f);
}

.article-art::before,
.article-art::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  content: "";
}

.article-art::before {
  top: 25px;
  right: -55px;
  width: 210px;
  height: 130px;
  transform: rotate(28deg);
}

.article-art::after {
  top: 90px;
  right: 45px;
  width: 100px;
  height: 100px;
}

.article-art-2 {
  background: linear-gradient(145deg, #a5d2bb, #256d5e);
}

.article-art-3 {
  background: linear-gradient(145deg, #ffd78a, #f1a43a);
}

.article-art span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, serif;
  font-size: 58px;
}

.article-art.has-image {
  padding: 0;
  background: #dfe8d9;
}

.article-art.has-image::before {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(8, 42, 34, 0.26));
  transform: none;
}

.article-art.has-image::after {
  display: none;
}

.article-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.article-card-link:hover .article-art img {
  transform: scale(1.025);
}

.article-meta {
  display: flex;
  margin: 22px 6px 14px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.article-meta span:first-child {
  color: var(--green);
  font-weight: 800;
}

.article-card h3 {
  min-height: 82px;
  margin: 0 6px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.article-card-summary {
  margin: 12px 6px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-card-action {
  display: flex;
  margin: auto 6px 0;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
}

.articles-heading-side {
  display: flex;
  width: min(100%, 520px);
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.articles-heading-side .section-lead {
  width: auto;
}

.articles-all-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
}

.article-status {
  width: calc(100% - 12px);
  margin: 24px 6px 0;
  justify-content: center;
}

.article-card button {
  display: flex;
  width: calc(100% - 12px);
  margin: 24px 6px 0;
  padding: 14px 0 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 107, 90, 0.08), transparent 27%),
    #fff6eb;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10%;
}

.faq-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-intro .section-lead {
  font-size: 16px;
}

.faq-intro button {
  padding: 14px 19px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

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

.faq-list summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(23, 107, 90, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-icon svg,
.modal-close svg,
.form-submit svg,
.modal-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 45px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  padding: 90px 0;
  background: var(--paper);
}

.final-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 64px 70px;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 83% 30%, rgba(255, 179, 120, 0.24), transparent 26%),
    linear-gradient(135deg, #205f54, #113e38);
}

.final-panel > div {
  position: relative;
  z-index: 2;
}

.final-panel h2 {
  max-width: 720px;
}

.final-panel > div > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.final-panel > button {
  position: relative;
  z-index: 2;
}

.final-panel > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  color: #123d34;
  font-size: 14px;
  font-weight: 800;
  background: #b9e774;
}

.final-orbit {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 500px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: rotate(20deg);
}

.contacts-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  background: #f5f5ed;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 80px;
}

.contacts-grid h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-links {
  display: grid;
}

.contact-links > a {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 18px 0;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(20, 59, 52, 0.16);
}

.contact-links > a:last-child {
  border-bottom: 1px solid rgba(20, 59, 52, 0.16);
}

.contact-links > a:hover strong {
  color: var(--coral-deep);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--coral-deep);
}

.contact-links span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.contact-links small {
  color: var(--muted);
  font-size: 12px;
}

.contact-links strong {
  font-size: 15px;
  transition: color 180ms ease;
}

footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #fff8ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 55px;
}

.footer-grid > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  margin-top: 50px;
  padding-top: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.floating-question {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  min-height: 48px;
  padding: 5px 15px 5px 5px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  background: var(--green);
  box-shadow: 0 15px 40px rgba(23, 107, 90, 0.3);
}

.floating-question span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: white;
}

.floating-question svg {
  width: 20px;
  height: 20px;
}

.floating-question em {
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(27, 18, 30, 0.66);
  backdrop-filter: blur(9px);
  animation: modal-in 180ms ease;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 44px);
  padding: 46px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.modal-card-diploma {
  width: min(1120px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
  background: white;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-card h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(30px, 5vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.modal-lead,
.diploma-modal > p:not(.section-kicker),
.success-state > p:not(.section-kicker) {
  max-width: 560px;
  margin: 17px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.modal-card form {
  display: grid;
  gap: 16px;
}

.modal-card label {
  display: grid;
  gap: 7px;
  color: #4c4146;
  font-size: 11px;
  font-weight: 800;
}

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

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(66, 45, 52, 0.15);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 90, 0.08);
}

.modal-card textarea {
  resize: vertical;
}

.modal-card .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}

.consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.form-warning {
  margin: -4px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  background: rgba(243, 174, 61, 0.09);
}

.form-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: var(--coral-deep);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: var(--green);
}

.form-submit,
.success-state button {
  display: flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 15px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  background: var(--coral);
}

.form-submit svg {
  width: 22px;
  height: 22px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.modal-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  background: var(--green);
  box-shadow: 0 14px 35px rgba(23, 107, 90, 0.22);
}

.modal-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.modal-direct-links {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-direct-links a {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  background: white;
}

.modal-direct-links svg {
  width: 18px;
  height: 18px;
}

.list-check {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--coral-deep);
}

.diploma-gallery {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1.62fr);
  margin-top: 28px;
  align-items: end;
  gap: 22px;
}

.diploma-gallery figure {
  margin: 0;
}

.diploma-image-link {
  display: block;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(23, 107, 90, 0.14);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(45, 36, 54, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.diploma-image-link:hover,
.diploma-image-link:focus-visible {
  outline: 0;
  box-shadow: 0 22px 55px rgba(45, 36, 54, 0.2);
  transform: translateY(-3px);
}

.diploma-image-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.diploma-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.success-state button {
  min-width: 170px;
  justify-content: center;
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(24px, 18px, 0) scale(1.08);
  }
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .main-nav {
    gap: 22px;
    font-size: 13px;
  }



  .hero h1 {
    font-size: clamp(48px, 5.5vw, 68px);
  }


  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .site-header {
    display: flex;
    height: 86px;
    justify-content: space-between;
  }

  .question-button {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: flex;
  }

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


  .hero-copy {
    padding: 45px 0 15px;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    align-items: center;
  }


  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .proof-card,
  .proof-card:first-child,
  .proof-card:last-child {
    border-radius: 22px;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    max-width: 160px;
    font-size: 8.5px;
  }

  .question-button {
    width: 46px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }












  .proof-card {
    min-height: 100px;
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .question-button {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    max-width: 145px;
    font-size: 8px;
  }
}

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

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

@media (max-width: 1160px) {
  .about-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
    gap: 6%;
  }

  .about-visual {
    min-height: 580px;
  }

  .process-card {
    padding-inline: 20px;
  }

  .service-card {
    min-height: 670px;
    padding: 30px;
  }

  .popular-badge {
    position: static;
    width: fit-content;
    margin: -6px 0 18px;
  }

  .service-description {
    min-height: 120px;
  }

  .ai-panel {
    padding: 55px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding-block: 90px;
  }

  .section-heading,
  .services-heading,
  .articles-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading > .section-lead {
    width: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-visual {
    width: min(100%, 590px);
    min-height: 630px;
    margin-inline: auto;
  }

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

  .process-card {
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .services-grid,
  .materials-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-description {
    min-height: auto;
  }

  .material-card {
    min-height: 470px;
  }

  .ai-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-copy {
    padding-right: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }

  .final-panel {
    grid-template-columns: 1fr;
    padding: 55px;
  }

  .final-panel > button {
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .section-pad {
    padding-block: 72px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-lead {
    font-size: 16px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-photo {
    right: 0;
    bottom: 55px;
    padding: 24px;
  }

  .about-monogram {
    font-size: 210px;
  }

  .education-card {
    right: 8px;
    width: calc(100% - 30px);
    padding: 15px;
  }

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

  .process-card {
    min-height: 230px;
    border-right: 0;
  }

  .service-card,
  .material-card {
    padding: 25px;
    border-radius: 24px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-price strong {
    font-size: 30px;
  }

  .intro-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .material-art {
    height: 155px;
  }

  .ai-panel {
    width: min(100% - 20px, 520px);
    padding: 38px 24px;
    border-radius: 28px;
  }

  .console-question {
    width: 93%;
  }

  .article-art {
    height: 210px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    padding-block: 65px;
  }

  .final-panel {
    padding: 42px 25px;
    border-radius: 27px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-question {
    right: 14px;
    bottom: 14px;
    padding-right: 5px;
  }

  .floating-question em {
    display: none;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .modal-card {
    max-height: calc(100vh - 20px);
    padding: 38px 22px 25px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .diploma-gallery {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .diploma-cover-figure {
    width: min(58%, 240px);
    margin-inline: auto !important;
  }
}

/* Primary direction: photographic first screen and restrained contact presentation. */
@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: minmax(0, 690px) 1fr;
  }

  .hero h1 {
    font-size: clamp(52px, 6.2vw, 76px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 780px;
    background-position: 61% center;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(6, 34, 27, 0.27);
    content: "";
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .hero-copy {
    max-width: 650px;
    padding: 52px 0 54px;
    text-align: left;
  }

  .eyebrow,
  .hero h1,
  .hero-lead {
    margin-inline: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .main-nav {
    color: var(--ink);
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .proof-card,
  .proof-card:first-child,
  .proof-card:last-child {
    min-height: 118px;
    padding: 20px 0;
    align-items: flex-start;
    border-radius: 0;
    flex-direction: column;
    gap: 10px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-panel > a {
    width: fit-content;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: 760px;
    background-position: 65% center;
  }

  .site-header {
    height: 82px;
  }

  .hero-copy {
    padding: 58px 0 40px;
  }

  .hero h1 {
    max-width: 440px;
    margin-top: 24px;
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-lead {
    max-width: 470px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .primary-button,
  .text-link {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .hero-credentials {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-credentials span,
  .hero-credentials span:first-child {
    padding: 0;
    border: 0;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-card,
  .proof-card:first-child,
  .proof-card:last-child {
    min-height: auto;
    padding: 15px 0;
    align-items: center;
    flex-direction: row;
  }

  .contacts-section {
    padding: 58px 0;
  }

  .contact-links span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-links strong {
    overflow-wrap: anywhere;
  }

  .modal-direct-links {
    flex-direction: column;
  }
}

.inline-icon{width:18px;height:18px;flex:0 0 auto}
.static-notice{position:fixed;left:50%;bottom:24px;z-index:120;max-width:min(620px,calc(100% - 28px));padding:14px 18px;border-radius:15px;color:#fff;font-size:13px;line-height:1.45;background:#143b34;box-shadow:0 18px 50px rgba(0,0,0,.25);transform:translate(-50%,130%);opacity:0;transition:.25s ease}
.static-notice.show{transform:translate(-50%,0);opacity:1}
.static-service-button{display:flex;width:100%;min-height:54px;margin-top:auto;padding:0 20px;align-items:center;justify-content:center;border:1px solid rgba(18,79,67,.25);border-radius:10px;color:var(--green);font-weight:800;cursor:pointer;background:rgba(18,79,67,.05)}
.is-featured .static-service-button{border-color:white;color:var(--green);background:white}
.modal-direct-links{display:flex;margin-top:18px;flex-wrap:wrap;gap:10px}.modal-direct-links a{padding:10px 14px;border-radius:10px;color:var(--green);background:rgba(155,207,99,.18)}
@media(max-width:580px){.static-notice{bottom:74px}}
