@import url("https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f5f3ef;
  --bg-soft: #ffffff;
  --ink: #0d1512;
  --muted: #4a5b55;
  --accent: #0e6f62;
  --accent-2: #e6a15a;
  --accent-3: #123c36;
  --card: rgba(255, 255, 255, 0.85);
  --shadow: 0 26px 60px rgba(7, 18, 15, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 80% 0%, rgba(14, 111, 98, 0.15), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #f7f5f0 0%, #f1eee8 50%, #eae4db 100%);
}

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

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
}

p {
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 12px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  margin: 16px 5vw 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(6, 16, 12, 0.12);
}

.logo {
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(14, 111, 98, 0.12);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(120deg, var(--accent), #0f7f6a);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(14, 111, 98, 0.28);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  border: 1px solid rgba(14, 111, 98, 0.25);
  box-shadow: none;
}

.btn-admin {
  background: linear-gradient(120deg, var(--accent-2), #f2b56b);
  color: #2c1d0f;
  box-shadow: 0 14px 28px rgba(230, 161, 90, 0.3);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding: 110px 7vw 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(230, 161, 90, 0.25), rgba(0, 0, 0, 0) 45%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 12, 10, 0.78), rgba(6, 12, 10, 0.18));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 640px;
  color: #fff;
  text-align: left;
  z-index: 2;
  background: rgba(10, 18, 16, 0.55);
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  margin: 12px 0 16px;
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 7vw;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  animation: float 2.4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding: 110px 7vw;
  position: relative;
}

.section-alt {
  background: var(--bg-soft);
}

.section-inner {
  max-width: 900px;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2.6px;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.story-grid {
  margin-top: 46px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story-card {
  padding: 26px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 111, 98, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(7, 18, 15, 0.18);
}

.story-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  color: var(--accent);
}

.story-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.service-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(14, 111, 98, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(7, 18, 15, 0.16);
}

.treatments {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), #f9f6f1);
}

.featured-treatment {
  margin-top: 40px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 111, 98, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.featured-treatment > * {
  position: relative;
  z-index: 1;
}

.featured-treatment::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(230, 161, 90, 0.18);
  top: -90px;
  right: -90px;
  z-index: 0;
}

.featured-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(18, 46, 42, 0.9);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.featured-content {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(14, 111, 98, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.featured-quote {
  margin: 6px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--accent-2);
  font-weight: 600;
  color: var(--accent);
}

.featured-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.featured-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.treatment-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.treatment-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(14, 111, 98, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(7, 18, 15, 0.16);
}

.treatment-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.treatment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.treatment-body h3,
.featured-content h3 {
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--ink);
}

.treatment-body p {
  color: var(--muted);
}

.treatment-body p,
.featured-content p,
.story-text {
  font-size: 0.98rem;
  line-height: 1.75;
}

.treatment-quote {
  font-weight: 600;
  color: var(--accent);
}

.treatment-card.wide {
  grid-column: span 2;
}

.procedure-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.procedure-grid h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--accent);
}

.procedure-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.procedure-note {
  margin-top: 10px;
  font-weight: 600;
  color: var(--ink);
}

.timeline {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 24px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 111, 98, 0.08);
}

.timeline-step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14, 111, 98, 0.12);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--accent);
}

.cta {
  background: linear-gradient(135deg, #0e6f62, #16423b 55%, #0c1d19);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -30% 60% auto -20%;
  height: 260px;
  background: radial-gradient(circle, rgba(230, 161, 90, 0.35), rgba(0, 0, 0, 0));
  opacity: 0.8;
}

.cta p,
.cta h2 {
  color: #fff;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-info {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 40px 7vw 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(14, 111, 98, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.footer-credit {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-credit a {
  color: var(--accent);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--accent-3);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.page-admin {
  background: radial-gradient(circle at 15% 10%, #f8f6f0 0%, #ede6da 55%, #e6decf 100%);
}

.admin {
  padding: 90px 7vw 120px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 111, 98, 0.08);
}

.login-card {
  max-width: 560px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-inline {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(14, 111, 98, 0.18);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.admin-panels {
  display: grid;
  gap: 32px;
}

.hidden {
  display: none;
}

.grid.two {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats {
  display: grid;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(14, 111, 98, 0.08);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: var(--accent);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ledger {
  display: grid;
  gap: 20px;
}

.ledger-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.data-table th {
  color: var(--muted);
  font-weight: 600;
}

.list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.list-item {
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(14, 111, 98, 0.08);
}

.list-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.login-hint {
  margin-top: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .featured-treatment {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 840px;
    padding: 48px 52px;
  }

  .hero-content h1 {
    font-size: clamp(3.2rem, 3.9vw, 4.8rem);
    line-height: 1.08;
  }

  .hero-kicker {
    font-size: 0.9rem;
  }

  .hero-sub {
    font-size: 1.25rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 18px;
  }

  .treatment-body h3,
  .featured-content h3 {
    font-size: 1.34rem;
  }

  .treatment-body p,
  .featured-content p,
  .story-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
    margin: 0;
    top: 0;
    border-radius: 0;
  }

  .hero {
    padding: 100px 6vw 80px;
  }

  .nav {
    gap: 8px;
  }

  .scroll-hint {
    right: 6vw;
  }

  .treatment-card.wide {
    grid-column: auto;
  }

  .form-inline {
    flex-direction: column;
  }
}
