/* ═══════════════════════════════════════════
   THE MING WELL — STYLESHEET
   Color palette:
     Deep green (bg/primary):  #0D3333
     Matte gold (accent):      #C9A84C
     Teal (links/tags):        #4aaa88
     Off-white green (cards):  #E8F0EE
     Near-black (body text):   #1a1a1a
═══════════════════════════════════════════ */

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

:root {
  --green:      #0D3333;
  --green-mid:  #0f3d3d;
  --gold:       #C9A84C;
  --gold-hover: #b8963e;
  --teal:       #4aaa88;
  --card-bg:    #E8F0EE;
  --text:       #1a1a1a;
  --white:      #ffffff;
  --serif:      'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:       'Inter', Arial, Helvetica, sans-serif;
  --radius:     6px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--green); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-full { width: 100%; text-align: center; }

/* ── Section title ────────────────────────── */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-title--light { color: var(--white); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-mid);
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  padding: 4px 0;
  letter-spacing: 0.03em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

.br-desktop { display: block; }

/* ══════════════════════════════════════════
   THE PROBLEM
══════════════════════════════════════════ */
.problem {
  padding: 96px 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.problem-icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
  flex-shrink: 0;
}
.problem-icon svg { width: 100%; height: 100%; }

.problem-item p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

/* ══════════════════════════════════════════
   WHO I HELP
══════════════════════════════════════════ */
.who {
  background: var(--green);
  padding: 96px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition);
}
.who-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.45);
}

.who-card--featured {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.45);
}

.who-card-label {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.who-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  background: var(--card-bg);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(13,51,51,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(13,51,51,0.1);
  border-color: rgba(201,168,76,0.4);
}

.service-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,168,76,0.15);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.service-header { display: flex; flex-direction: column; gap: 10px; }

.service-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
}

.service-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.service-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}

.service-duration {
  font-size: 0.82rem;
  color: rgba(26,26,26,0.5);
  font-weight: 400;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(26,26,26,0.7);
  flex-grow: 1;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 96px 0;
}

.about-inner { display: flex; flex-direction: column; align-items: center; }

.about-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.about .section-title { text-align: center; margin-bottom: 40px; }

.about-body {
  max-width: 620px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.about-body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--green);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  background: var(--card-bg);
  padding: 96px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(13,51,51,0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(13,51,51,0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-icon svg { width: 100%; height: 100%; }

details[open] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 0 22px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(26,26,26,0.75);
  max-width: 640px;
}

/* ══════════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════════ */
.footer-cta {
  background: var(--green);
  padding: 96px 0;
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #071f1f;
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 64px 0 56px; }
  .hero-headline { font-size: 1.85rem; }
  .br-desktop { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Sections */
  .problem { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 28px; }

  .who { padding: 64px 0; }
  .who-grid { grid-template-columns: 1fr; }

  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 64px 0; }

  .faq { padding: 64px 0; }

  .footer-cta { padding: 64px 0; }
  .footer-cta-buttons { flex-direction: column; width: 100%; }
  .footer-cta-buttons .btn { width: 100%; text-align: center; }

  /* Site footer */
  .site-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .section-title { margin-bottom: 32px; }
}
