@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --munific-green: #224C3E;
  --munific-gold: #C1975B;
  --warm-cream: #F5EEDC;
  --ivory-cream: #FFF7E8;
  --deep-emerald: #063B31;
  --ink: #17211d;
  --muted: #5f6f68;
  --line: rgba(193, 151, 91, 0.28);
  --white: #ffffff;
  --danger-soft: #fff4e8;
  --success-soft: #eef7ed;
  --shadow: 0 24px 72px rgba(6, 59, 49, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(193, 151, 91, 0.13), transparent 30%),
    linear-gradient(180deg, var(--ivory-cream) 0%, #ffffff 44%, var(--warm-cream) 100%);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.section-shell {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 4vw;
  background: rgba(255, 247, 232, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(6, 59, 49, 0.16);
}

.brand-lockup { display: grid; gap: 3px; }

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--munific-green);
  font-size: 42px;
  line-height: 0.82;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-tag {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--munific-green);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a { text-decoration: none; position: relative; }

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--munific-gold);
  transition: width 0.24s ease;
}

.site-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--munific-green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0 38px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--munific-green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--munific-gold);
}

h1, h2, h3, h4 { margin: 0; }

.hero h1,
.problem-card h2,
.solution-card h2,
.section-heading h2,
.before h2,
.after h2,
.founder-copy h2,
.profile-cta h2,
.contact-copy h2,
.thank-you h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--munific-green);
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(44px, 5.9vw, 82px);
  line-height: 0.95;
}

.hero-text,
.section-heading p,
.problem-card li,
.solution-card li,
.before li,
.after li,
.founder-copy p,
.profile-cta p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: white;
  background: var(--munific-green);
  box-shadow: 0 16px 34px rgba(34, 76, 62, 0.24);
}

.btn.primary:hover { background: var(--deep-emerald); }

.btn.ghost {
  color: var(--munific-green);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--munific-green);
  font-weight: 800;
  font-size: 13px;
}

.hero-visual img,
.brand-strip img,
.footer-strip img,
.focus-visual img,
.founder-card img {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-note {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.hero-note strong {
  display: block;
  color: var(--munific-green);
  margin-bottom: 4px;
}

.problem-solution,
.before-after-inner,
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.problem-card,
.solution-card,
.section-block,
.profile-cta,
.contact-section,
.founder-section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.problem-card,
.solution-card {
  padding: 34px;
}

.problem-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--danger-soft) 100%);
}

.solution-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--success-soft) 100%);
}

.problem-card h2,
.solution-card h2,
.before h2,
.after h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.problem-card ul,
.solution-card ul,
.before ul,
.after ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.brand-strip {
  margin-top: 28px;
  margin-bottom: 28px;
}

.brand-strip img,
.footer-strip img {
  width: 100%;
}

.section-block {
  padding: 48px;
  margin: 28px auto;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.section-heading h2,
.founder-copy h2,
.profile-cta h2,
.contact-copy h2 {
  font-size: clamp(36px, 4.1vw, 64px);
  line-height: 0.96;
}

.trust-grid,
.service-grid,
.output-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.output-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card,
.service-card,
.output-card,
.timeline-item {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory-cream) 100%);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trust-card:hover,
.service-card:hover,
.output-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(6, 59, 49, 0.11);
}

.trust-card span,
.number,
.timeline-item strong {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  margin-bottom: 15px;
  border-radius: 14px;
  background: var(--warm-cream);
  color: var(--munific-green);
  font-weight: 900;
}

.trust-card h3,
.service-card h3,
.output-card h3,
.timeline-item h3,
.founder-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--munific-green);
  font-size: 29px;
  line-height: 1.02;
  margin-bottom: 10px;
}

.trust-card p,
.service-card p,
.output-card p,
.timeline-item p,
.founder-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15.5px;
}

.doc-thumb {
  height: 150px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,238,220,.95));
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.doc-thumb span {
  font-weight: 900;
  color: var(--munific-green);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.doc-thumb i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(34, 76, 62, 0.15);
}

.doc-thumb i:nth-child(2) { width: 80%; }
.doc-thumb i:nth-child(3) { width: 65%; }
.doc-thumb i:nth-child(4) { width: 92%; }
.doc-thumb i:nth-child(5) { width: 54%; }

.doc-thumb.table i {
  border-radius: 4px;
  height: 14px;
}

.doc-thumb.redflag i:nth-child(3) {
  background: rgba(193, 151, 91, 0.45);
}

.before-after {
  margin: 28px 0;
  padding: 62px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(193, 151, 91, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep-emerald), var(--munific-green));
}

.before,
.after {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.18);
}

.before {
  background: rgba(255,255,255,.08);
}

.after {
  background: rgba(255,255,255,.14);
}

.before .section-kicker,
.after .section-kicker,
.before h2,
.after h2,
.before li,
.after li {
  color: white;
}

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

.timeline-item strong {
  width: auto;
}

.founder-section {
  padding: 42px;
  margin: 28px auto;
  align-items: center;
}

.founder-card {
  display: grid;
  gap: 18px;
}

.founder-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.strong-services .service-card p {
  margin: 9px 0 0;
}

.strong-services .service-card strong {
  color: var(--munific-green);
}

.profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 44px;
  margin: 28px auto;
  background:
    radial-gradient(circle at right, rgba(193, 151, 91, 0.24), transparent 28%),
    linear-gradient(135deg, #ffffff, var(--ivory-cream));
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 42px;
  margin: 28px auto;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a {
  text-decoration: none;
}

.contact-list strong {
  color: var(--munific-green);
}

.contact-form {
  padding: 28px;
  border-radius: 24px;
  background: var(--ivory-cream);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--munific-green);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(34, 76, 62, 0.18);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.footer-strip {
  margin: 28px auto 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.8fr;
  gap: 34px;
  padding: 44px 4vw;
  background: var(--deep-emerald);
  color: white;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--munific-gold);
  font-size: 32px;
  margin-bottom: 12px;
}

.site-footer h3 {
  font-size: 42px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  padding: 16px 4vw;
  background: #041f19;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  padding: 32px;
  background: var(--ivory-cream);
}

.thank-you img {
  width: 120px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.thank-you h1 {
  font-size: clamp(48px, 7vw, 88px);
}

.thank-you p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .problem-solution,
  .before-after-inner,
  .founder-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .output-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 5vw;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 34px;
  }

  .brand-tag {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding: 32px 0 20px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .section-block,
  .problem-card,
  .solution-card,
  .founder-section,
  .contact-section,
  .profile-cta {
    padding: 24px;
  }

  .trust-grid,
  .service-grid,
  .output-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .profile-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 5vw;
  }

  .copyright {
    padding: 16px 5vw;
  }
}


/* Real sample deliverable previews */
.hidden {
  display: none !important;
}

.real-output-grid .output-card {
  min-height: 420px;
}

.file-preview {
  min-height: 170px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,238,220,.92));
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.file-title {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,76,62,.08);
  color: var(--munific-green);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.file-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.file-preview li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.file-preview li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--munific-green);
  font-weight: 900;
}

.redflag-preview li::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  top: 1px;
  border-radius: 50%;
  background: var(--munific-gold);
  color: var(--deep-emerald);
  font-size: 10px;
}

.mini-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  font-size: 13px;
}

.mini-table span,
.mini-table strong {
  padding: 8px 9px;
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(34,76,62,.08);
}

.mini-table span {
  color: var(--ink);
}

.mini-table strong {
  color: var(--munific-green);
  text-align: center;
  min-width: 54px;
}

.redflag-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,244,232,.95));
}

.reco-preview,
.rp-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,247,237,.95));
}

.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  line-height: 1.55;
  font-weight: 700;
  background: #edf7ee;
  color: var(--munific-green);
  border: 1px solid rgba(34,76,62,.18);
}

.form-email-btn {
  margin-top: 12px;
}

.contact-form .btn {
  width: fit-content;
}

@media (max-width: 760px) {
  .contact-form .btn {
    width: 100%;
  }
}
