@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

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

:root {
  --green:    #1C3829;
  --navy:     #1B2A4A;
  --cream:    #F2F0EB;
  --white:    #FFFFFF;
  --tan:      #C8B99A;
  --green-light: #2a5240;
  --text:     #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border:   #e0ddd8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; }
.editorial { font-family: 'Playfair Display', serif; }

/* ── Layout Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--white); }
.section--navy  { background: var(--navy);  color: var(--white); }

/* Signature element: left-border callout echoing the logo divider */
.callout-bar {
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.section--green .callout-bar,
.section--navy .callout-bar {
  border-left-color: var(--tan);
}

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: baseline; gap: 0.5rem;
}
.nav__logo-68 {
  font-size: 1.5rem; font-weight: 600; color: var(--green); letter-spacing: -0.02em;
}
.nav__logo-divider {
  width: 1px; height: 1.2rem; background: var(--green);
  display: inline-block; margin: 0 0.4rem; vertical-align: middle;
}
.nav__logo-club {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
}
.nav__logo-sub {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  margin-left: 0.1rem;
}
.nav__links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav__links a {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-mid); transition: color 0.2s;
}
.nav__links a:hover { color: var(--green); }
.nav__cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: 4px;
  font-size: 0.875rem !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--green-light) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile a {
  font-size: 1rem; font-weight: 500; color: var(--text-mid);
  display: block; padding: 0.25rem 0;
}

/* ── Hero ── */
.hero {
  padding: 7rem 0 3rem;
  background: var(--cream);
}
.hero__eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600; line-height: 1.15;
  color: var(--green); max-width: 700px;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
}
.hero__sub {
  font-size: 1.125rem; color: var(--text-mid);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-block; padding: 0.75rem 1.75rem;
  font-size: 0.9rem; font-weight: 500; border-radius: 4px;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-light); }
.btn--outline { border-color: var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--white { background: var(--white); color: var(--green); }
.btn--white:hover { background: var(--cream); }

.hero__trust {
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
}

/* ── Pain Points ── */
.pain { }
.pain__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.pain__item {
  padding: 1.75rem; border: 1px solid var(--border); border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pain__item:hover {
  border-color: var(--tan); box-shadow: 0 4px 20px rgba(28,56,41,0.06);
}
.pain__icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pain__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--green); }
.pain__desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ── Section Headers ── */
.section-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600;
  color: var(--green); margin-bottom: 1rem; max-width: 600px;
}
.section--green .section-title,
.section--navy .section-title { color: var(--white); }
.section-intro {
  font-size: 1.05rem; color: var(--text-mid); max-width: 580px; line-height: 1.7;
}
.section--green .section-intro,
.section--navy .section-intro { color: rgba(255,255,255,0.8); }

/* ── Services ── */
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: 8px;
  padding: 2.25rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: 0 12px 40px rgba(28,56,41,0.1);
}
.service-card__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tan);
}
.service-card__tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem;
}
.service-card__title {
  font-size: 1.25rem; font-weight: 600; color: var(--green); margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.25rem;
}
.service-card__list { list-style: none; margin-bottom: 1.5rem; }
.service-card__list li {
  font-size: 0.875rem; color: var(--text-mid); padding: 0.3rem 0;
  padding-left: 1.1rem; position: relative;
}
.service-card__list li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--tan);
}
.service-card__price {
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}

/* ── About ── */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about__text h2 { color: var(--green); margin-bottom: 1.25rem; }
.about__text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.about__credentials { margin-top: 2rem; }
.about__credential {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
}
.about__credential:last-child { border-bottom: none; }
.about__cred-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.about__cred-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.about__cred-text strong { color: var(--text); font-weight: 600; display: block; }
.about__visual {
  background: var(--cream); border-radius: 8px; padding: 3rem;
  border: 1px solid var(--border);
}
.about__quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.35rem; color: var(--green); line-height: 1.5; margin-bottom: 1.5rem;
}
.about__quote-attr {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
}

/* ── Process ── */
.process__steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-top: 3rem; position: relative;
}
.process__step { text-align: center; padding: 1.5rem 1rem; }
.process__step-num {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 1rem;
}
.process__step-title {
  font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem;
}
.process__step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── Contact / Form ── */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact__info h2 { color: var(--green); margin-bottom: 1rem; }
.contact__info p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.7; }
.contact__detail {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.75rem;
}
.contact__detail-icon { font-size: 1rem; }

.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h3 {
  font-size: 1.25rem; color: var(--green); margin-bottom: 0.5rem;
}
.form-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--text); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(28,56,41,0.08);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.875rem;
  background: var(--green); color: var(--white);
  border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-light); }
.form-note {
  font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.75rem;
}

/* ── Footer ── */
.footer {
  background: var(--green); color: var(--white);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.footer__logo-68 { font-size: 1.25rem; font-weight: 600; }
.footer__logo-club {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7; margin-top: 0.15rem;
}
.footer__logo-sub {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.5; margin-top: 0.1rem;
}
.footer__tagline {
  font-size: 0.85rem; opacity: 0.7; margin-top: 0.75rem; max-width: 220px; line-height: 1.5;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.875rem; opacity: 0.8; transition: opacity 0.2s; }
.footer__links a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.8rem; opacity: 0.5; }
.footer__dba { font-size: 0.75rem; opacity: 0.4; }

/* ── Success State ── */
.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success h3 { color: var(--green); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 8rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
