*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f9f5f1;
  --beige: #f0e8df;
  --blush: #e8c4b4;
  --rose: #c98b72;
  --terracotta: #b56d52;
  --dark-rose: #8c4e3a;
  --text-dark: #2d1f1a;
  --text-mid: #6b4c42;
  --text-light: #9c7b72;
  --white: #ffffff;
  --shadow: rgba(140, 78, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(249, 245, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 139, 114, 0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-decoration: none;
}
.nav-logo span {
  color: var(--terracotta);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--terracotta);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--dark-rose);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6% 5% 6% 7%;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2.8rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--terracotta);
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(181, 109, 82, 0.35);
}
.btn-primary:hover {
  background: var(--dark-rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(181, 109, 82, 0.45);
}
.btn-ghost {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--blush);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  animation: fadeIn 1.2s ease both 0.2s;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, transparent 60%);
  z-index: 1;
  opacity: 0.4;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1px;
  z-index: 2;
  background: var(--white);
  padding: 1.1rem 1.6rem;
  border-left: 3px solid var(--terracotta);
  box-shadow: 0 8px 32px var(--shadow);
  animation: slideRight 1s ease both 0.6s;
}
.hero-badge-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.hero-badge-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

/* ── WHY ── */
.section {
  padding: 7rem 7%;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(201, 139, 114, 0.12);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--blush));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.why-card:hover::after {
  transform: scaleX(1);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}

.why-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.why-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── PROCEDURES ── */
.procedures {
  background: var(--beige);
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.proc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
}
.proc-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.proc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.proc-card:hover .proc-img-wrap img {
  transform: scale(1.06);
}
.proc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 31, 26, 0.5) 0%,
    transparent 50%
  );
}
.proc-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--terracotta);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.proc-body {
  padding: 1.6rem;
}
.proc-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.proc-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}
.proc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s;
}
.proc-link:hover {
  gap: 0.7rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 7%;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.test-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(201, 139, 114, 0.12);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.test-quote-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--blush);
  margin-bottom: 1rem;
  display: block;
}
.test-stars {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.test-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--beige);
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 500;
  flex-shrink: 0;
}
.test-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.test-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.about-visual {
  position: relative;
  background: var(--beige);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, transparent 70%);
  opacity: 0.3;
}
.about-content {
  padding: 7% 6% 7% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 1rem 0 1.5rem;
}
.about-content p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.about-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.about-features li::before {
  content: "✦";
  color: var(--terracotta);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--rose) 0%,
    var(--terracotta) 50%,
    var(--dark-rose) 100%
  );
  padding: 6rem 7%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
}
.cta-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  position: relative;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  color: var(--terracotta);
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.1rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 5rem 7% 3rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--rose);
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--rose);
}
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 50vh;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 50vh;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .why-grid,
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 1rem 4%;
  }
}
