/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #eeebe4;
  --cream-dark: #e5e1d8;
  --terracotta: #d35400;
  --copper: #cb7c46;
  --copper-light: rgba(203, 124, 70, 0.12);
  --text: #231f20;
  --text-light: #5a5652;
  --white: #ffffff;
  --radius: 12px;
  --max-width: 1100px;
}

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 0.75rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--copper); }

img { max-width: 100%; height: auto; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(238, 235, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-logo:hover { color: var(--text); }

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  background: none;
  border: 1.5px solid var(--text-light);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-switch:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 2rem 80px;
  background: var(--cream);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--copper);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--copper);
  color: var(--white);
  border-radius: var(--radius);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  border-radius: var(--radius);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 2rem;
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* ===== Grid ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--copper-light);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Check list ===== */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

/* ===== Practitioner section ===== */
.practitioner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.practitioner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
}

.practitioner-card h3 {
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.practitioner-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.benefits-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
}

.benefits-block h3 {
  margin-bottom: 1.5rem;
}

/* ===== Client block ===== */
.client-block {
  max-width: 720px;
}

.client-block p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}
.footer a:hover {
  color: var(--white);
}

.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Privacy page ===== */
.privacy-page {
  padding-top: 120px;
}

.privacy-page h1 {
  margin-bottom: 0.5rem;
}

.privacy-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-list {
  list-style: none;
  margin-bottom: 1rem;
}

.privacy-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.privacy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(238, 235, 228, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text { margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .hero-visual { order: -1; }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid,
  .practitioner-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}