:root {
  --ink: #101820;
  --ink-soft: #2b3742;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: rgba(16, 24, 32, 0.12);
  --mint: #17b89a;
  --mint-dark: #0f7f71;
  --copper: #b56b45;
  --night: #142329;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.16);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading main,
body.is-loading .site-header {
  opacity: 0;
  transform: translateY(12px);
}

body.is-ready main,
body.is-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

::selection {
  background: rgba(23, 184, 154, 0.22);
}

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

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

.entry-veil {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 245, 0.96));
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 820ms var(--ease-out), visibility 820ms var(--ease-out);
  visibility: hidden;
  z-index: 100;
}

body.is-loading .entry-veil {
  opacity: 1;
  visibility: visible;
}

body.is-ready .entry-veil {
  opacity: 0;
  visibility: hidden;
}

body.is-entry-complete .entry-veil {
  display: none;
}

.entry-mark {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: 18px;
  justify-items: center;
  letter-spacing: 0;
}

.entry-mark img {
  height: 58px;
  width: 58px;
}

.entry-mark span {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  font-style: italic;
  font-weight: 700;
}

.page-transition {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.74);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms var(--ease-out), opacity 360ms var(--ease-out);
  z-index: 90;
}

body.is-transitioning .page-transition {
  opacity: 1;
  transform: scaleY(1);
}

.scroll-progress {
  height: 2px;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 60;
}

.scroll-progress span {
  background: linear-gradient(90deg, rgba(15, 127, 113, 0.18), var(--mint-dark) 42%, var(--copper));
  box-shadow: 0 0 18px rgba(23, 184, 154, 0.34);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(1.25);
  background: rgba(247, 248, 245, 0.72);
  border-bottom: 1px solid transparent;
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 245, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(16, 24, 32, 0.08);
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
}

.brand img {
  height: 42px;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--mint);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--mint-dark);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.hero {
  background:
    linear-gradient(180deg, #fbfbfa 0%, #f4f5f2 58%, #ffffff 100%);
  min-height: 94vh;
  overflow: hidden;
  position: relative;
  --hero-shift: 0px;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 32, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 76px 0 0;
  mask-image: linear-gradient(90deg, black 0%, transparent 48%);
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-media {
  bottom: 0;
  left: min(40vw, 650px);
  position: absolute;
  right: 0;
  top: 76px;
  transform: translate3d(0, var(--hero-shift), 0);
  will-change: transform;
  z-index: 0;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 1), rgba(247, 248, 245, 0.18) 28%, rgba(247, 248, 245, 0) 62%),
    linear-gradient(0deg, rgba(247, 248, 245, 0.86), rgba(247, 248, 245, 0) 34%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  opacity: 1;
  transform: scale(1.01);
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 1) 0%, rgba(247, 248, 245, 0.92) 31%, rgba(247, 248, 245, 0.18) 62%, rgba(16, 24, 32, 0.1) 100%),
    linear-gradient(0deg, rgba(247, 248, 245, 1) 0%, rgba(247, 248, 245, 0) 23%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  padding: 168px clamp(22px, 7vw, 96px) 86px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 66px;
  font-style: italic;
  letter-spacing: 0;
  max-width: none;
  white-space: nowrap;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 760px;
}

h3 {
  line-height: 1.2;
  margin: 0;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: 0;
  line-height: 1.28;
  margin: 26px 0 34px;
  max-width: 620px;
}

.hero-actions,
.hero-facts,
.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0 22px;
  position: relative;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.btn::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out);
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 36px rgba(16, 24, 32, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
}

.hero-specialties {
  margin-top: 24px;
  max-width: 620px;
}

.hero-specialties a {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 14px;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.hero-specialties a:hover {
  border-color: rgba(23, 184, 154, 0.42);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.13);
  transform: translateY(-2px);
}

.hero-specialties .journey-link {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.2);
}

.hero-specialties .journey-link:hover {
  border-color: var(--ink);
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.26);
}

.hero-facts {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  max-width: 650px;
  padding-top: 20px;
}

.hero-facts span {
  color: var(--ink-soft);
  min-width: 150px;
}

.hero-facts strong {
  color: var(--ink);
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero-glass {
  backdrop-filter: blur(24px) saturate(1.25);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  bottom: 84px;
  box-shadow: 0 28px 80px rgba(16, 24, 32, 0.18);
  color: var(--ink);
  display: grid;
  gap: 4px;
  overflow: hidden;
  padding: 20px 22px;
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  width: min(310px, calc(100vw - 48px));
  z-index: 3;
}

.hero-glass::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 1px;
}

.hero-glass::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 48%, transparent 72%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-120%);
  z-index: -1;
}

.hero-glass span {
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-glass a {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-glass p {
  color: var(--ink-soft);
  margin: 0;
}

.scroll-cue {
  align-items: center;
  bottom: 28px;
  color: rgba(16, 24, 32, 0.72);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  left: clamp(22px, 7vw, 96px);
  position: absolute;
  z-index: 3;
}

.scroll-cue i {
  border: 1px solid rgba(16, 24, 32, 0.24);
  border-radius: 999px;
  display: block;
  height: 34px;
  position: relative;
  width: 20px;
}

.scroll-cue i::after {
  background: var(--mint-dark);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  width: 3px;
}

.section,
.section-band {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

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

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-grid,
.contact-grid {
  display: grid;
  gap: clamp(30px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro p:last-child {
  color: var(--ink-soft);
  font-size: 20px;
  margin: 34px 0 0;
}

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

.section-heading-center {
  align-items: center;
  display: grid;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.section-heading-center p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 16px 0 0;
  max-width: 620px;
}

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

.specialty-item {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.specialty-item.featured,
.specialty-item.is-open:not(.featured) {
  grid-column: span 2;
}

.specialty-item.is-open {
  z-index: 2;
}

.specialty-grid button,
.value-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 96px;
  padding: 22px;
}

.specialty-grid button {
  align-content: end;
  appearance: none;
  aspect-ratio: 1.08;
  color: var(--white);
  cursor: pointer;
  display: grid;
  font-size: 19px;
  font-weight: 800;
  font-family: inherit;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  width: 100%;
}

.specialty-grid button::after {
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.08), rgba(16, 24, 32, 0.88));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.specialty-grid button::before {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-45%);
  transition: opacity 240ms var(--ease-out), transform 700ms var(--ease-out);
  z-index: -1;
}

.specialty-grid img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 800ms ease;
  width: 100%;
  z-index: -2;
}

.specialty-grid span {
  display: block;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.specialty-grid small {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 9px;
  text-transform: uppercase;
}

.specialty-item.featured .specialty-card {
  aspect-ratio: 1.5;
  min-height: 260px;
}

.specialty-item.featured .specialty-card span {
  font-size: clamp(34px, 4.4vw, 58px);
}

.specialty-grid button:hover,
.specialty-grid button.is-active {
  border-color: var(--mint);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
}

.specialty-grid button:focus-visible {
  outline: 3px solid rgba(15, 127, 113, 0.48);
  outline-offset: 4px;
}

.specialty-grid button:hover::before,
.specialty-grid button.is-active::before {
  opacity: 1;
  transform: translateX(45%);
}

.specialty-grid button:hover img,
.specialty-grid button.is-active img {
  transform: scale(1.045);
}

.specialty-grid button.is-active {
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.18);
}

.specialty-inline-detail {
  animation: specialtyDetailIn 320ms var(--ease-out) both;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-left: 4px solid var(--mint-dark);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(16, 24, 32, 0.1);
  display: grid;
  margin-top: 0;
  padding: clamp(20px, 3vw, 30px);
}

.specialty-inline-detail[hidden] {
  display: none;
}

.specialty-inline-detail h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  margin-bottom: 14px;
}

.specialty-inline-detail p {
  color: var(--ink-soft);
  font-size: 17px;
}

.specialty-inline-detail p:last-child {
  margin-bottom: 0;
}

.dark-band {
  background:
    linear-gradient(90deg, rgba(20, 35, 41, 0.96), rgba(20, 35, 41, 0.88)),
    url("assets/images/medical-detail.jpg") center / cover;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.dark-band::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  position: absolute;
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.dark-band .eyebrow {
  color: #7ee0ce;
}

.dark-band h2 {
  color: var(--white);
}

.why-heading {
  align-items: end;
  display: grid;
  gap: clamp(26px, 5vw, 74px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  justify-items: stretch;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}

.why-heading .eyebrow {
  color: #7ee0ce;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 6.6vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 0;
  max-width: 520px;
  text-transform: none;
}

.why-keywords {
  align-items: center;
  color: var(--white);
  display: flex;
  flex-wrap: nowrap;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.45vw, 36px);
  font-weight: 800;
  gap: clamp(12px, 1.6vw, 24px);
  justify-content: flex-end;
  letter-spacing: 0;
  line-height: 1.05;
  margin-left: auto;
  max-width: 760px;
  text-align: right;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.why-keywords span {
  display: inline-flex;
}

.why-keywords span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: clamp(12px, 1.6vw, 24px);
}

.value-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.value-grid article:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(126, 224, 206, 0.42);
  transform: translateY(-5px);
}

.value-grid span {
  color: #7ee0ce;
  display: block;
  font-weight: 800;
  margin-bottom: 44px;
}

.value-grid p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.timeline {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-left: 8px;
}

.timeline article {
  display: grid;
  gap: 28px;
  grid-template-columns: 130px minmax(0, 1fr);
  padding: 0 0 34px 34px;
  position: relative;
}

.timeline article::before {
  background: var(--mint);
  border: 5px solid var(--paper);
  border-radius: 999px;
  content: "";
  height: 18px;
  left: -10px;
  position: absolute;
  top: 2px;
  width: 18px;
}

.timeline time {
  color: var(--copper);
  font-weight: 900;
}

.timeline p {
  color: var(--ink-soft);
}

.operation-list {
  display: grid;
  gap: 22px;
}

.operation-feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.operation-feature:hover {
  box-shadow: 0 28px 80px rgba(16, 24, 32, 0.12);
  transform: translateY(-4px);
}

.operation-feature figure {
  background: #dbe4e1;
  min-height: 100%;
  margin: 0;
}

.operation-feature figure img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.operation-feature:hover figure img {
  transform: scale(1.035);
}

.operation-feature > div {
  padding: clamp(26px, 4vw, 48px);
}

.operation-feature h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 18px;
}

.operation-feature p {
  color: var(--ink-soft);
  font-size: 17px;
}

.operation-feature p:last-child {
  margin-bottom: 0;
}

.patient-journey {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f5 100%);
  overflow: hidden;
  position: relative;
}

.patient-journey::before {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.patient-journey .section-inner {
  position: relative;
  z-index: 1;
}

.journey-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(36px, 6vw, 68px);
  max-width: 900px;
}

.journey-heading h2 {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94;
  max-width: 920px;
}

.journey-steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.journey-steps::before {
  background: linear-gradient(90deg, var(--mint-dark), rgba(181, 107, 69, 0.62));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 30px;
}

.journey-steps article {
  padding: 0 clamp(16px, 2.6vw, 34px) 0 0;
  position: relative;
}

.journey-steps article::before {
  background: var(--paper);
  border: 2px solid var(--mint-dark);
  border-radius: 999px;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 22px;
  width: 18px;
  z-index: 1;
}

.journey-steps span {
  color: var(--mint-dark);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 58px;
}

.journey-steps h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 12px;
}

.journey-steps p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}

.figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.figure-pair img {
  min-width: 0;
}

.contact {
  background:
    linear-gradient(100deg, rgba(247, 248, 245, 0.96), rgba(247, 248, 245, 0.8)),
    url("assets/images/manisa.jpg") center / cover;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a,
address {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-style: normal;
  padding: 22px;
}

.contact-list span {
  color: var(--mint-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

address {
  align-self: start;
  display: grid;
  gap: 22px;
  font-size: 18px;
}

address span {
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 900;
}

.whatsapp {
  align-items: center;
  background: #19c37d;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 36px rgba(20, 35, 41, 0.22);
  color: white;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 22px;
  width: 58px;
  z-index: 25;
}

.back-to-top {
  align-items: center;
  background: rgba(247, 248, 245, 0.86);
  border: 1px solid rgba(12, 24, 34, 0.12);
  border-radius: 999px;
  bottom: 92px;
  box-shadow: 0 18px 38px rgba(20, 35, 41, 0.16);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 27px;
  transform: translateY(14px) scale(0.96);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), background 180ms ease, box-shadow 180ms ease;
  width: 48px;
  z-index: 24;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--white);
  box-shadow: 0 22px 42px rgba(20, 35, 41, 0.22);
  transform: translateY(-2px) scale(1);
}

.back-to-top svg {
  fill: currentColor;
  height: 23px;
  width: 23px;
}

.footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  text-align: center;
}

.footer-logo {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-meta {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

@media (prefers-reduced-motion: no-preference) {
  body.is-loading .entry-mark img {
    animation: entryLogo 900ms var(--ease-out) both;
  }

  body.is-loading .entry-mark span {
    animation: entryWord 1000ms var(--ease-out) 120ms both;
  }

  .site-header {
    animation: headerDrop 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-media img {
    animation: imageSettle 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-content > * {
    animation: riseIn 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-content > *:nth-child(2) {
    animation-delay: 90ms;
  }

  .hero-content > *:nth-child(3) {
    animation-delay: 170ms;
  }

  .hero-content > *:nth-child(4) {
    animation-delay: 250ms;
  }

  .hero-content > *:nth-child(5) {
    animation-delay: 330ms;
  }

  .hero-content > *:nth-child(6) {
    animation-delay: 410ms;
  }

  .hero-glass {
    animation:
      riseIn 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 520ms both,
      glassGlow 4200ms ease-in-out 1500ms infinite;
  }

  .hero-glass::after {
    animation: glassSweep 6400ms ease-in-out 1500ms infinite;
  }

  .scroll-cue i::after {
    animation: cuePulse 1500ms ease-in-out infinite;
  }

  .reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 980ms cubic-bezier(0.16, 1, 0.3, 1), transform 980ms cubic-bezier(0.16, 1, 0.3, 1), filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .section-heading.reveal,
  .journey-heading.reveal {
    filter: blur(6px);
    transform: translate3d(0, 38px, 0);
  }

  .why-heading.reveal {
    filter: none;
    transform: translate3d(0, 22px, 0);
  }

  .specialty-item.reveal,
  .value-grid article.reveal,
  .journey-steps article.reveal {
    transform: translate3d(0, 24px, 0) scale(0.985);
  }

  .reveal.is-visible {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .value-grid article.reveal.is-visible:hover {
    transform: translateY(-5px);
  }

  .is-arriving .section-inner {
    animation: sectionArrive 780ms var(--ease-out) both;
  }
}

@keyframes entryLogo {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes entryWord {
  from {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes imageSettle {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes cuePulse {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 9px);
  }
}

@keyframes glassSweep {
  0%, 45%, 100% {
    opacity: 0;
    transform: translateX(-120%);
  }
  55% {
    opacity: 0.7;
  }
  72% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes glassGlow {
  0%, 100% {
    box-shadow: 0 28px 80px rgba(16, 24, 32, 0.18);
  }
  50% {
    box-shadow: 0 30px 90px rgba(16, 24, 32, 0.2), 0 0 42px rgba(23, 184, 154, 0.16);
  }
}

@keyframes sectionArrive {
  from {
    filter: blur(4px);
    opacity: 0.72;
    transform: translateY(18px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes specialtyDetailIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-loading {
    overflow: auto;
  }

  .entry-veil,
  .page-transition {
    display: none;
  }

  body.is-loading main,
  body.is-loading .site-header {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(247, 248, 245, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 18px 20px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero-media {
    bottom: auto;
    height: 52vh;
    left: 0;
    top: 68px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(247, 248, 245, 0.02) 0%, rgba(247, 248, 245, 0.18) 44%, rgba(247, 248, 245, 0.96) 100%);
  }

  .hero-media img {
    object-position: 50% 24%;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(247, 248, 245, 0) 0%, rgba(247, 248, 245, 0.96) 52%, rgba(247, 248, 245, 1) 100%);
  }

  .hero-content {
    padding: calc(52vh + 96px) 20px 78px;
  }

  h1 {
    font-size: 48px;
    white-space: nowrap;
  }

  .hero-specialties {
    gap: 8px;
  }

  .hero-specialties a {
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero-glass {
    bottom: auto;
    left: 20px;
    margin-top: 20px;
    position: relative;
    right: auto;
    width: calc(100% - 40px);
    z-index: 4;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .contact-grid,
  .section-heading {
    display: block;
  }

  .why-keywords {
    flex-wrap: wrap;
    font-size: clamp(22px, 5.4vw, 32px);
    justify-content: flex-start;
    margin-top: 16px;
    text-align: left;
    white-space: normal;
  }

  .why-keywords span + span {
    border-left: 0;
    padding-left: 0;
  }

  .why-heading .eyebrow {
    font-size: clamp(38px, 12vw, 62px);
    max-width: 100%;
  }

  @media (min-width: 900px) {
    .why-heading {
      align-items: end;
      display: grid;
      gap: 24px;
      grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    }

    .why-keywords {
      flex-wrap: nowrap;
      margin-top: 0;
      text-align: right;
    }

    .why-keywords span + span {
      border-left: 1px solid rgba(255, 255, 255, 0.28);
      padding-left: clamp(12px, 1.6vw, 24px);
    }
  }

  .specialty-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .specialty-item,
  .specialty-item.featured,
  .specialty-item.is-open:not(.featured) {
    grid-column: auto;
  }

  .specialty-grid button,
  .specialty-item.featured .specialty-card {
    aspect-ratio: 1.5;
    min-height: 190px;
  }

  .specialty-item.featured .specialty-card span {
    font-size: clamp(30px, 10vw, 46px);
  }

  .specialty-inline-detail {
    padding: 20px;
  }

  .journey-steps {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .journey-steps::before {
    bottom: 0;
    height: auto;
    left: 8px;
    right: auto;
    top: 24px;
    width: 2px;
  }

  .journey-steps article {
    padding: 0 0 0 38px;
  }

  .journey-steps article::before {
    left: 0;
    top: 4px;
  }

  .journey-steps span {
    margin-bottom: 8px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 29px;
  }
}
