/* Basic reset & tokens */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f5f3ee;
  --bg-alt: #ffffff;
  --text-main: #1c1c1c;
  --text-muted: #5f6065;
  --accent: #c6a56a;
  --border-subtle: #ded7cc;
  --radius-lg: 24px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.12);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-main);
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 243, 238, 0.92);
  border-bottom: 1px solid rgba(222, 215, 204, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.75rem;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Logo icon in header – uses PNG */
.logo-mark {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-image: url("images/logo-mgr.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 340%;
  position: relative;
}



.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.logo-main strong {
  font-weight: 700;
}


.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
}

.main-nav a:hover {
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-main);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-outline {
  border-color: var(--border-subtle);
  background: #fffdf8;
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent);
}

.btn.full-width {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-cta-row {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-cta-row .btn-primary {
  width: fit-content;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.06);
  font-size: 0.85rem;
}

.meta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.hero-card li + li {
  margin-top: 0.35rem;
}

.small-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Steps */
.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.step {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(222, 215, 204, 0.7);
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.75rem;
  border: 1px solid rgba(222, 215, 204, 0.9);
}

.card h3 {
  margin-top: 0;
}

.card .price {
  font-size: 1.8rem;
  margin: 0.15rem 0 0.4rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.card li + li {
  margin-top: 0.35rem;
}

.add-ons-list {
  margin-bottom: 1rem;
}

/* Testimonials */
#testimonials {
  background: var(--bg-alt);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(222, 215, 204, 0.8);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.8rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.1rem;
}

.testimonial-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(222, 215, 204, 0.7);
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1rem;
}

/* Examples */
.examples-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

.example-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(222, 215, 204, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.example-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.example-body {
  padding: 1.6rem 1.6rem 1.7rem;
}

.example-body h2 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.example-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.example-body ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.example-body li + li {
  margin-top: 0.3rem;
}

.examples-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.examples-cta p {
  font-size: 0.98rem;
}

.examples-cta .btn-primary {
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(222, 215, 204, 0.9);
  background: #f0ebe2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 1rem;
}

.footer-inner a {
  color: var(--text-main);
  text-decoration: none;
}

/* Questionnaire layout */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: 2.2rem;
}

.form-main h1 {
  font-size: 1.7rem;
  margin-top: 0;
}

.lead {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 40rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field {
  margin-top: 1.2rem;
}

label,
legend {
  font-size: 0.9rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(153, 139, 120, 0.65);
  background: #fdfbf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.inline-fields {
  display: flex;
  gap: 0.6rem;
}

.hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.checkbox input {
  width: auto;
}

/* Summary side */
.form-summary {
  align-self: flex-start;
}

.summary-card {
  position: sticky;
  top: 5.5rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(222, 215, 204, 0.9);
  box-shadow: var(--shadow-soft);
}

.summary-price-label {
  margin: 0.6rem 0 0.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-price {
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
}

.summary-list {
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.summary-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Thank you */
.thankyou-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #fdf7eb, #f2e8d9);
}

.thankyou-card {
  max-width: 560px;
  background: #ffffff;
  border-radius: 22px;
  padding: 2.5rem 2.3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.thankyou-card h1 {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.thankyou-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.7rem;
}

/* Utilities */
.small-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .pricing-grid,
  .steps,
  .faq-grid,
  .form-layout,
  .field-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
  }

  .summary-card {
    position: static;
    margin-top: 2rem;
  }

  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 640px);
  }

  .hero {
    padding-top: 2.4rem;
  }
}

/* Mobile dropdown nav – matches button + header styling */
.mobile-nav-select {
  display: none;                 /* hidden on desktop */
  width: 100%;
  max-width: 220px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ded7cc;
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
  color: #2b261f;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a08b6a 50%),
                    linear-gradient(135deg, #a08b6a 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Mobile header layout */
@media (max-width: 768px) {
  .main-nav {
    display: none;               /* hide normal links on mobile */
  }

  .mobile-nav-select {
    display: block;              /* show dropdown on mobile */
    margin-left: auto;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .site-header .btn.btn-outline {
    padding-inline: 1rem;
    font-size: 0.9rem;
  }
}

/* Keep all images inside their boxes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
