:root {
  --teal-950: #052f2e;
  --teal-900: #073b3a;
  --teal-800: #0a504c;
  --teal-700: #0f766e;
  --teal-100: #d9f1e9;
  --teal-50: #eef9f5;
  --coral: #ff8972;
  --coral-soft: #ffe1d9;
  --gold: #f5c96b;
  --cream: #fbf8f2;
  --cream-deep: #f3ede3;
  --ink: #173132;
  --text: #324a4b;
  --muted: #617374;
  --white: #ffffff;
  --border: #dce8e4;
  --control-border: #829592;
  --shadow-sm: 0 12px 35px rgba(5, 47, 46, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 47, 46, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 750;
  line-height: 1.05;
}

.wrap {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--teal-950);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.demo-ribbon {
  position: relative;
  z-index: 30;
  background: var(--teal-950);
  color: #d8ece8;
  font-size: 0.8rem;
}

.demo-ribbon-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-block: 7px;
  text-align: center;
}

.demo-ribbon strong {
  color: var(--coral);
}

.demo-ribbon a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(7, 59, 58, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(5, 47, 46, 0.1);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 15px 15px 15px 5px;
  background: var(--teal-900);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.brand-mark span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.brand-name small {
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(7, 59, 58, 0.18);
  transition: transform 200ms ease, background-color 200ms ease;
}

.site-nav .nav-cta:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  border-radius: 14px;
  background: var(--teal-100);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-950);
  transition: transform 180ms ease;
}

.nav-open .menu-toggle > span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .menu-toggle > span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 137, 114, 0.16), transparent 22%),
    radial-gradient(circle at 6% 75%, rgba(15, 118, 110, 0.12), transparent 23%),
    linear-gradient(145deg, var(--cream) 0%, #f7fbf7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 13%;
  right: 7%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  top: 17%;
  right: 41%;
  width: 24px;
  height: 24px;
  background: var(--coral);
  opacity: 0.7;
}

.hero-orb-two {
  right: 3%;
  bottom: 26%;
  width: 88px;
  height: 88px;
  border: 18px solid var(--teal-100);
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.hero-copy {
  max-width: 570px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px var(--coral-soft);
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(3.25rem, 5.9vw, 5.45rem);
  font-weight: 780;
  line-height: 0.96;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  color: var(--teal-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 4px;
  left: -3px;
  height: 13px;
  border-radius: 12px;
  background: var(--coral-soft);
  transform: rotate(-1.2deg);
}

.hero-lead {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.btn span {
  transition: transform 200ms ease;
}

.btn:hover span {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--coral);
  color: var(--teal-950);
  box-shadow: 0 12px 25px rgba(255, 137, 114, 0.28);
}

.btn-primary:hover {
  background: #ff9a84;
  box-shadow: 0 16px 32px rgba(255, 137, 114, 0.36);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(7, 59, 58, 0.2);
  background: rgba(255, 255, 255, 0.64);
  color: var(--teal-900);
}

.btn-secondary:hover {
  border-color: var(--teal-900);
  background: var(--white);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.hero-note-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo-main,
.hero-photo-small {
  position: absolute;
  overflow: hidden;
  background: var(--teal-100);
  box-shadow: var(--shadow-lg);
}

.hero-photo-main img,
.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  top: 20px;
  right: 0;
  width: 88%;
  height: 525px;
  border: 9px solid rgba(255, 255, 255, 0.86);
  border-radius: 50px 50px 145px 50px;
  transform: rotate(1.2deg);
}

.hero-photo-main img {
  object-position: 62% center;
}

.hero-photo-small {
  z-index: 3;
  border: 7px solid var(--white);
}

.hero-photo-consult {
  bottom: 6px;
  left: 0;
  width: 205px;
  height: 170px;
  border-radius: 30px 30px 12px 30px;
  transform: rotate(-4deg);
}

.hero-photo-lab {
  right: 20px;
  bottom: -2px;
  width: 166px;
  height: 137px;
  border-radius: 26px 12px 26px 26px;
  transform: rotate(4deg);
}

.availability-card {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 14px 17px;
  border: 1px solid rgba(7, 59, 58, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.availability-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #32a96d;
  box-shadow: 0 0 0 3px #cdeedb;
}

.availability-card > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.availability-card small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-card strong {
  color: var(--teal-950);
  font-size: 0.8rem;
}

.proof-wrap {
  position: relative;
  z-index: 5;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 58, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.proof-item {
  position: relative;
  display: flex;
  min-height: 100px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 27px;
}

.proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}

.proof-item strong {
  color: var(--teal-900);
  font-size: 1.17rem;
  line-height: 1.25;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
}

.section {
  padding: 112px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.section-intro h2 {
  max-width: 720px;
}

.section-intro > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

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

.service-card {
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(5, 47, 46, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card-large {
  grid-column: span 6;
}

.service-card-wide {
  display: grid;
  grid-column: span 12;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-photo {
  height: 230px;
  overflow: hidden;
  background: var(--teal-100);
}

.service-card-large .service-photo {
  height: 330px;
}

.service-card-wide .service-photo {
  height: 320px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-photo-child img {
  object-position: 80% center;
}

.service-body {
  padding: 27px;
}

.service-card-wide .service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.service-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: #8b3d2f;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-chip-mint {
  background: var(--teal-100);
  color: var(--teal-800);
}

.service-chip-coral {
  background: #f9e1e0;
  color: #8f4544;
}

.service-chip-gold {
  background: #fff0c9;
  color: #765b14;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

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

.text-link:hover span {
  transform: translate(3px, -3px);
}

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 137, 114, 0.15), transparent 25%),
    var(--teal-950);
  color: #d9eae7;
}

.experience-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(58px, 8vw, 110px);
}

.experience-visual {
  position: relative;
  padding: 0 0 44px 34px;
}

.experience-visual::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 70%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 130px 28px 28px 28px;
}

.experience-photo {
  position: relative;
  z-index: 1;
  height: 590px;
  overflow: hidden;
  border-radius: 120px 30px 30px 30px;
}

.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-caption {
  position: absolute;
  z-index: 3;
  right: -25px;
  bottom: 0;
  display: flex;
  max-width: 315px;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: var(--coral);
  color: var(--teal-950);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.experience-caption > span {
  font-size: 1.2rem;
}

.experience-caption p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.experience-caption strong {
  display: block;
  font-size: 0.86rem;
}

.section-label-light {
  color: #91d8ca;
}

.experience-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.experience-lead {
  max-width: 510px;
  margin-bottom: 38px;
  color: #b9cfcb;
  font-size: 1rem;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit-list li > span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.benefit-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
}

.benefit-list p {
  margin: 0;
  color: #a9c3be;
  font-size: 0.86rem;
}

.gallery-section {
  background: var(--cream);
}

.gallery-intro {
  margin-bottom: 44px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 255px 255px;
  gap: 18px;
}

.photo-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--teal-100);
}

.gallery-main {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
}

.gallery-tall {
  grid-column: 7 / span 3;
  grid-row: 1 / span 2;
}

.gallery-small {
  grid-column: 10 / span 3;
  grid-row: 1;
}

.gallery-wide {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.gallery-main img {
  object-position: center;
}

.gallery-tall img {
  object-position: 52% center;
}

.gallery-wide img {
  object-position: 77% center;
}

.photo-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 47, 46, 0.72));
  pointer-events: none;
}

.photo-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
}

.schedule-section {
  background: var(--white);
}

.schedule-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--teal-950);
  box-shadow: var(--shadow-lg);
}

.schedule-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.schedule-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 47, 46, 0.02) 28%, rgba(5, 47, 46, 0.92) 100%);
}

.schedule-photo-copy {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 45px;
  left: 48px;
  color: #dbeae7;
}

.schedule-photo-copy h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.schedule-photo-copy p {
  max-width: 530px;
  margin: 0;
  font-size: 0.9rem;
}

.schedule-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 62px);
  color: #c5d9d5;
}

.schedule-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.schedule-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--coral);
  font-size: 1.2rem;
}

.schedule-heading > div {
  display: flex;
  flex-direction: column;
}

.schedule-heading small {
  color: #8db4ad;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.schedule-heading strong {
  color: var(--white);
  font-size: 1.18rem;
}

.schedule-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

.schedule-list strong {
  color: var(--white);
  text-align: right;
}

.location-card {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.location-pin {
  color: var(--coral);
}

.location-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.88rem;
}

.location-card p {
  margin: 0;
  color: #9fbbb6;
  font-size: 0.75rem;
  line-height: 1.5;
}

.inquiry-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 137, 114, 0.13), transparent 20%),
    var(--teal-50);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: start;
  gap: clamp(48px, 7vw, 95px);
}

.inquiry-intro h2 {
  margin-bottom: 24px;
}

.inquiry-intro > p {
  margin-bottom: 31px;
  color: var(--muted);
}

.inquiry-photo {
  position: relative;
  height: 290px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 30px 30px 80px 30px;
  box-shadow: var(--shadow-sm);
}

.inquiry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
}

.inquiry-photo-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.inquiry-photo-badge span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  font-size: 0.66rem;
}

.demo-notice {
  display: flex;
  gap: 13px;
  padding: 17px;
  border: 1px solid #e3bd62;
  border-radius: 18px;
  background: #fff8e7;
  color: #654d13;
}

.notice-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f1cf74;
  color: #4f3900;
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-notice p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.inquiry-form {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(7, 59, 58, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.inquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--teal-700), var(--coral));
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-700);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 17px;
}

.inquiry-form label,
.form-full {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.inquiry-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-full {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
}

.inquiry-form input:not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--control-border);
  border-radius: 13px;
  background: #fbfdfc;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.inquiry-form input:not([type="checkbox"]),
.inquiry-form select {
  padding: 11px 13px;
}

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

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #81908e;
}

.inquiry-form input:not([type="checkbox"]):focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--teal-700);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.field-help {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
}

.hp-field {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.turnstile-wrap {
  min-height: 140px;
  margin-bottom: 12px;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  margin-bottom: 20px;
  color: var(--text) !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal-700);
}

.btn-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  font-size: 0.79rem;
  font-weight: 650;
}

.form-status-ok {
  color: #11723e;
}

.form-status-error {
  color: #b6372a;
}

.closing-section {
  padding: 0 0 110px;
  background: var(--teal-50);
}

.closing-card {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 25%, rgba(255, 137, 114, 0.25), transparent 27%),
    var(--teal-900);
  color: #c9ded9;
  box-shadow: var(--shadow-lg);
}

.closing-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 18%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.closing-card > * {
  position: relative;
  z-index: 2;
}

.closing-card > div {
  max-width: 710px;
}

.closing-card h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.closing-card p {
  max-width: 650px;
  margin: 0;
}

.btn-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--teal-900);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: var(--coral-soft);
  transform: translateY(-2px);
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--teal-950);
  color: #aac4bf;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.5fr) minmax(260px, 0.8fr);
  gap: 70px;
  padding-bottom: 52px;
}

.brand-footer .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name small {
  color: #92c9bf;
}

.footer-brand p {
  max-width: 380px;
  margin: 22px 0 0;
  font-size: 0.82rem;
}

.footer-links,
.footer-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.8rem;
}

.footer-links strong,
.footer-note strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-note a {
  color: #b9d0cc;
  text-decoration: none;
}

.footer-links a:hover,
.footer-note a:hover {
  color: var(--coral);
}

.footer-note p {
  margin: 0 0 6px;
}

.footer-note a {
  color: var(--coral);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7fa39d;
  font-size: 0.7rem;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 50px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 137, 114, 0.18), transparent 25%),
    var(--cream);
  text-align: center;
}

.not-found .wrap {
  max-width: 650px;
}

.not-found h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
}

.not-found p {
  margin: 0 auto 30px;
  color: var(--muted);
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-enabled .services-grid .service-card:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-enabled .services-grid .service-card:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-enabled .services-grid .service-card:nth-child(4) {
  transition-delay: 210ms;
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: 0 24px 55px rgba(5, 47, 46, 0.13);
    transform: translateY(-7px);
  }

  .service-card:hover .service-photo img,
  .photo-gallery figure:hover img {
    transform: scale(1.055);
  }

  .photo-gallery figure:hover img {
    filter: saturate(1.05);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: heroCopyIn 780ms 80ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .hero-photo-main {
    animation: heroPhotoIn 900ms 120ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .hero-photo-consult {
    animation: heroTileLeftIn 720ms 500ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .hero-photo-lab {
    animation: heroTileRightIn 720ms 580ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .availability-card {
    animation: availabilityIn 620ms 680ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .proof-band {
    animation: proofIn 720ms 720ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhotoIn {
  from { opacity: 0; transform: translateX(38px) rotate(3deg) scale(0.98); }
  to { opacity: 1; transform: translateX(0) rotate(1.2deg) scale(1); }
}

@keyframes heroTileLeftIn {
  from { opacity: 0; transform: translate(-20px, 20px) rotate(-8deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(-4deg); }
}

@keyframes heroTileRightIn {
  from { opacity: 0; transform: translate(20px, 20px) rotate(8deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(4deg); }
}

@keyframes availabilityIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes proofIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero-grid {
    gap: 38px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo-main {
    height: 465px;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card-large,
  .service-card-wide {
    grid-column: span 12;
  }

  .service-card-large {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .service-card-large .service-photo {
    height: 100%;
    min-height: 330px;
  }

  .experience-caption {
    right: -10px;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 88px;
  }

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

  .nav-enhanced .menu-toggle {
    display: flex;
  }

  .nav-enhanced .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-enhanced.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-enhanced .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav-enhanced .site-nav a:hover {
    background: var(--teal-50);
  }

  .nav-enhanced .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 5px;
    padding-inline: 16px;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero-copy {
    max-width: 710px;
  }

  .hero-visual {
    width: min(100%, 690px);
    min-height: 570px;
    margin: 0 auto;
  }

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

  .proof-item:nth-child(2)::after {
    display: none;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 90px 0;
  }

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

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

  .experience-visual {
    width: min(100%, 650px);
  }

  .photo-gallery {
    grid-template-rows: 300px 230px 230px;
  }

  .gallery-main {
    grid-column: 1 / span 8;
    grid-row: 1;
  }

  .gallery-tall {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
  }

  .gallery-small {
    grid-column: 1 / span 8;
    grid-row: 2;
  }

  .gallery-wide {
    grid-column: 1 / span 12;
    grid-row: 3;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-photo {
    min-height: 520px;
  }

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

  .inquiry-intro {
    max-width: 690px;
  }

  .closing-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 34px, 1180px);
  }

  .demo-ribbon-inner {
    align-items: center;
    flex-direction: column;
    gap: 1px;
    padding-block: 8px;
    line-height: 1.4;
  }

  .header-inner {
    min-height: 68px;
  }

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

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-name small {
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo-main {
    top: 25px;
    width: 92%;
    height: 355px;
    border-width: 6px;
    border-radius: 32px 32px 90px 32px;
  }

  .hero-photo-consult {
    bottom: 0;
    width: 137px;
    height: 112px;
    border-width: 5px;
    border-radius: 21px 21px 9px 21px;
  }

  .hero-photo-lab {
    right: 4px;
    bottom: 3px;
    width: 110px;
    height: 92px;
    border-width: 5px;
  }

  .availability-card {
    left: 0;
    min-width: 184px;
    padding: 11px 13px;
  }

  .availability-card strong {
    font-size: 0.73rem;
  }

  .proof-band {
    margin-top: 28px;
  }

  .proof-item {
    min-height: 86px;
    padding: 15px 16px;
  }

  .proof-item strong {
    font-size: 1rem;
  }

  .section {
    padding: 74px 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .services-grid {
    gap: 17px;
  }

  .service-card,
  .service-card-large,
  .service-card-wide {
    display: block;
    grid-column: span 12;
  }

  .service-card .service-photo,
  .service-card-large .service-photo,
  .service-card-wide .service-photo {
    height: 240px;
    min-height: 0;
  }

  .service-body {
    padding: 23px;
  }

  .experience-visual {
    padding: 0 0 38px 14px;
  }

  .experience-photo {
    height: 440px;
    border-radius: 70px 23px 23px 23px;
  }

  .experience-caption {
    right: -4px;
    max-width: 285px;
  }

  .benefit-list li {
    grid-template-columns: 38px 1fr;
    gap: 13px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 190px 210px;
    gap: 12px;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-tall {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-small {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .photo-gallery figure {
    border-radius: 18px;
  }

  .photo-gallery figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 0.72rem;
  }

  .schedule-card {
    border-radius: 26px;
  }

  .schedule-photo {
    min-height: 430px;
  }

  .schedule-photo-copy {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .schedule-content {
    padding: 30px 23px;
  }

  .schedule-list li {
    font-size: 0.76rem;
  }

  .inquiry-photo {
    height: 240px;
  }

  .inquiry-form {
    padding: 30px 20px;
    border-radius: 26px;
  }

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

  .turnstile-wrap {
    min-height: 140px;
    overflow: hidden;
  }

  .closing-section {
    padding-bottom: 74px;
  }

  .closing-card {
    min-height: 0;
    gap: 28px;
    padding: 38px 26px;
    border-radius: 26px;
  }

  .closing-card .btn {
    width: 100%;
  }

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

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

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

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

@media (max-width: 360px) {
  .brand-name {
    max-width: 150px;
  }

  .hero-photo-lab {
    display: none;
  }

  .proof-item {
    padding-inline: 12px;
  }

  .proof-item strong {
    font-size: 0.9rem;
  }

  .proof-item span {
    font-size: 0.68rem;
  }
}

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

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

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