:root {
  --bg: #ffffff;
  --surface: #fffdf7;
  --surface-2: #f8f6ef;
  --text: #23211d;
  --muted: #5e5a52;
  --line: #e6dfcf;
  --brand-gold: #d6a623;
  --brand-gold-dark: #ad7d09;
  --brand-olive: #546241;
  --brand-olive-soft: #6d7e57;
  --shadow: 0 18px 60px rgba(61, 52, 28, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 55%, #ffffff 100%);
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .18;
  z-index: -1;
}
.bg-shape-one {
  width: 260px; height: 260px; left: -80px; top: 120px;
  background: radial-gradient(circle, rgba(214,166,35,.7), rgba(214,166,35,0));
}
.bg-shape-two {
  width: 320px; height: 320px; right: -100px; top: 520px;
  background: radial-gradient(circle, rgba(84,98,65,.55), rgba(84,98,65,0));
}

.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(230,223,207,.7);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 58px; height: 58px; object-fit: contain;
  border-radius: 16px; background: #fff; padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.brand-text { display: grid; line-height: 1.02; }
.brand-kicker { color: var(--brand-gold-dark); font-weight: 700; font-size: .9rem; }
.brand-text strong { font-size: 1.15rem; }
.brand-text small { color: var(--muted); font-size: .86rem; }
.site-nav { display: flex; justify-content: center; gap: 24px; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--brand-olive); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.8rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--brand-gold), var(--brand-olive));
  box-shadow: 0 12px 30px rgba(126, 121, 40, .25);
}
.btn-secondary {
  background: #fff; border: 1px solid var(--line); color: var(--brand-olive);
}
.btn-block { width: 100%; }

.hero { padding: 42px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 10px 14px; border-radius: 999px;
  color: var(--brand-olive); background: #f5f8ef; border: 1px solid #dce7cf;
  font-size: .88rem; font-weight: 800; letter-spacing: .04em;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: .98; margin: 18px 0 16px;
}
.hero-lead { font-size: 1.1rem; line-height: 1.7; color: var(--muted); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }
.hero-highlights {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 12px;
}
.hero-highlights li {
  display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600;
}
.hero-highlights li::before {
  content: ""; width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-olive));
  box-shadow: 0 0 0 6px rgba(214,166,35,.1);
}

.hero-visual { position: relative; min-height: 640px; }
.hero-card {
  overflow: hidden; border-radius: 30px; background: #fff; box-shadow: var(--shadow);
  border: 1px solid rgba(230,223,207,.8);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main { position: absolute; inset: 48px 58px 0 0; }
.hero-card-float {
  position: absolute; width: 220px; height: 270px;
}
.hero-card-float.top { top: 0; left: 0; }
.hero-card-float.bottom { right: 0; bottom: 22px; }

.info-strip { padding: 0 0 24px; }
.info-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.info-strip-grid article {
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.strip-label { display:block; color: var(--muted); font-size: .85rem; margin-bottom: 8px; }

.section { padding: 86px 0; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.section-tag {
  display: inline-block; font-size: .85rem; font-weight: 800; letter-spacing: .08em;
  color: var(--brand-gold-dark); text-transform: uppercase; margin-bottom: 14px;
}
.section h2, .section-heading h2 {
  margin: 0 0 14px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08;
  font-family: 'Playfair Display', serif;
}
.section p { color: var(--muted); line-height: 1.8; }
.section-heading.center { text-align: center; max-width: 760px; margin: 0 auto 34px; }

.quote-card {
  background: linear-gradient(160deg, #fff9ea, #f7f5ed);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.quote-logo { width: 88px; margin-bottom: 18px; }
.quote-card p { font-size: 1.3rem; color: var(--text); margin: 0 0 12px; }
.quote-card span { color: var(--brand-olive); font-weight: 700; }

.services { background: linear-gradient(180deg, #fffefb, #f9f7f1); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px;
  min-height: 120px; display: flex; align-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(84,98,65,.10); }
.service-card h3 { margin: 0; font-size: 1.04rem; }

.promo-band { padding-top: 72px; padding-bottom: 72px; }
.promo-grid {
  background: linear-gradient(135deg, rgba(214,166,35,.14), rgba(84,98,65,.12));
  border: 1px solid var(--line); border-radius: 30px; padding: 34px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center;
}
.check-list { display: grid; gap: 14px; }
.check-list div {
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.7); font-weight: 700;
}

.pricing-grid {
  display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 20px;
}
.price-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,.05);
}
.price-card.featured {
  background: linear-gradient(180deg, #fffefb, #fff8e9);
}
.price-badge {
  display: inline-block; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px;
  background: #f4efe2; color: var(--brand-gold-dark); font-weight: 800; font-size: .85rem;
}
.price-card h3 { margin: 0 0 12px; font-size: 1.4rem; }
.price-card p { margin: 0 0 14px; }
.price-card ul { padding-left: 18px; margin: 0; color: var(--text); line-height: 1.8; }
.inline-link { display: inline-block; margin-top: 18px; color: var(--brand-olive); font-weight: 800; }
.course-card { display: flex; flex-direction: column; justify-content: center; }

.gallery { background: linear-gradient(180deg, #fff, #faf7ef); }
.masonry-grid {
  columns: 3 260px; column-gap: 18px;
}
.gallery-item {
  break-inside: avoid; margin: 0 0 18px; overflow: hidden; border-radius: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff;
}
.gallery-item img { width: 100%; height: auto; display: block; }

.socials-grid {
  display: grid; grid-template-columns: .7fr 1.3fr; gap: 26px; align-items: start;
}
.social-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.social-card {
  padding: 24px; border-radius: 22px; border: 1px solid var(--line); background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.04);
}
.social-card span { color: var(--muted); font-size: .9rem; }
.social-card h3 { margin: 10px 0 0; font-size: 1.2rem; }
.primary-social {
  background: linear-gradient(135deg, #fff7de, #f8f4e7);
}

.contact-wrap {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch;
}
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px;
  box-shadow: var(--shadow);
}
.contact-list { padding-left: 18px; line-height: 2; color: var(--text); }
.contact-mini {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.contact-mini span { color: var(--muted); display:block; margin-bottom: 4px; }

.site-footer {
  padding: 24px 0 100px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width: 54px; border-radius: 16px; }
.footer-brand div { display: grid; }
.footer-brand span, .footer-text span { color: var(--muted); }
.footer-text { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }

.floating-call {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px;
  border-radius: 999px; display: grid; place-items: center;
  color: #fff; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-olive));
  box-shadow: 0 18px 36px rgba(84,98,65,.28);
  z-index: 40;
}

@media (max-width: 1100px) {
  .hero-grid, .two-col, .pricing-grid, .socials-grid, .contact-wrap, .promo-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; order: -1; }
  .info-strip-grid, .services-grid, .social-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-wrap { grid-template-columns: auto auto auto; }
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px);
    flex-direction: column; padding: 16px; background: rgba(255,255,255,.98);
    border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-cta { display: none; }
  .hero-visual { min-height: 520px; }
  .hero-card-main { inset: 44px 28px 0 28px; }
  .hero-card-float { width: 180px; height: 230px; }
  .info-strip-grid, .services-grid, .social-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-text { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .hero { padding-top: 22px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-visual { min-height: 420px; }
  .hero-card-main { inset: 36px 0 0 0; }
  .hero-card-float { display: none; }
  .section { padding: 68px 0; }
  .promo-grid, .quote-card, .price-card, .contact-card { padding: 22px; }
}
