/* ===================================================
   SHERO NUTRICLINIC — Shared Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --forest:     #243d2e;
  --forest-mid: #2e5040;
  --sage:       #5c8a6a;
  --sage-light: #a8c5b2;
  --cream:      #f7f3eb;
  --cream-dark: #ece7da;
  --gold:       #b8966e;
  --gold-light: #d4b99a;
  --text:       #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;
  --border:     #ddd5c4;
  --white:      #fdfaf5;
  --radius:     6px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px; overflow: hidden;
  margin-left: 8px;
}
.lang-btn {
  background: transparent; border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1px; padding: 6px 11px;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.lang-btn.active { background: var(--gold); color: #fff; }
.lang-btn:hover:not(.active) { color: #fff; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--text); }
a  { color: inherit; text-decoration: none; transition: color 0.2s; }

.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.gold  { color: var(--gold); }
.sage  { color: var(--sage); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }
section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.section-title { margin-bottom: 20px; }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 580px; margin: 0 auto; text-align: center; }
.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: var(--forest);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-svg {
  width: 44px; height: 40px;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: #fff; letter-spacing: 1px;
}
.nav-logo-sub {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-light); margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links .nav-cta a {
  background: var(--gold); color: var(--forest);
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600; color: var(--white);
}
.nav-links .nav-cta a:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all 0.3s;
}

/* ── HERO — shared ── */
.page-hero {
  background: var(--forest);
  padding: 160px 0 96px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(184,150,110,0.12), transparent),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(92,138,106,0.1), transparent);
}
.page-hero .container { position: relative; }
.page-hero-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.55); max-width: 560px; font-size: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; cursor: pointer; border: none;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.btn--primary {
  background: var(--gold); color: var(--white);
}
.btn--primary:hover { background: #c9a87e; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn--dark {
  background: var(--forest); color: #fff;
}
.btn--dark:hover { background: var(--forest-mid); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-mid);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(36,61,46,0.1);
  transform: translateY(-2px);
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); font-weight: 500; margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--sage);
}
.form-control--textarea { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; }
.footer-col h5 {
  color: #fff; font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: rgba(92,138,106,0.08);
  border-left: 3px solid var(--sage);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.highlight p { color: var(--text-mid); }

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container, .container--narrow { padding: 0 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--forest); padding: 100px 40px 40px;
    gap: 24px;
  }
  .nav-links.open a { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
