:root {
  --bg: #fff7ed;
  --bg-soft: #fff1df;
  --surface: #ffffff;
  --surface-warm: #fffaf3;
  --ink: #111111;
  --body: #3f4648;
  --muted: #697173;
  --line: #ecd9c6;
  --orange: #ff7a00;
  --orange-dark: #e85f00;
  --charcoal: #1f2527;
  --success: #1f7a55;
  --danger: #b42318;
  --shadow: 0 18px 44px rgba(42, 31, 20, 0.1);
  --shadow-soft: 0 12px 28px rgba(42, 31, 20, 0.08);
  --radius: 8px;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid rgba(236, 217, 198, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.footer-links a,
.footer-contact a,
.footer-form-link {
  color: var(--body);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.footer-form-link:hover {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(255, 122, 0, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.94rem;
}

.section-shell,
.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  width: 100%;
  max-width: none;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
}

.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 62px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 4.35rem;
  font-weight: 900;
}

h1 span,
.section-heading h2 span {
  color: var(--orange);
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-line {
  margin: 22px 0 0;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 12px;
  font-size: 3.35rem;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.contact-copy > p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 1.18rem;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.package-card,
.testimonial-card,
.comparison-panel,
.form-card,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(236, 217, 198, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  text-align: center;
}

.service-card h3 {
  max-width: 220px;
  margin: 22px auto 14px;
  font-size: 1.55rem;
}

.service-card h3::after,
.package-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--orange);
  border-radius: 999px;
}

.service-card p {
  margin-bottom: 0;
}

.icon-badge,
.package-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  background: #fff0dd;
  border-radius: 50%;
}

.icon-badge svg,
.package-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.before-after {
  padding-bottom: 96px;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.comparison-panel {
  min-height: 420px;
  padding: 36px;
}

.comparison-panel h3 {
  margin-bottom: 22px;
  text-align: center;
  font-size: 2.2rem;
}

.panel-before {
  background: #fbfbf9;
  border-color: #d8d6d1;
}

.panel-before h3 {
  color: #555b5d;
}

.panel-after {
  background: var(--surface-warm);
  border-color: rgba(255, 122, 0, 0.45);
}

.panel-after h3 {
  color: var(--orange-dark);
}

.comparison-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(255, 122, 0, 0.2);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: var(--charcoal);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.muted-list li {
  color: #5f6668;
}

.muted-list li::before {
  background: #757b7d;
}

.packages-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px;
  text-align: center;
}

.featured-package {
  border-color: rgba(255, 122, 0, 0.5);
}

.package-label {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 5px 9px;
  background: var(--charcoal);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.package-icon {
  margin: 0 auto 18px;
}

.package-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.package-description {
  min-height: 78px;
  margin-bottom: 18px;
}

.price {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #fff3e6;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.price strong {
  color: var(--orange-dark);
  font-size: 1.38rem;
}

.package-card .check-list {
  margin: 0 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.package-card .btn {
  margin-top: auto;
  width: 100%;
}

.text-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 14px;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.pricing-note {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--body);
  text-align: center;
}

.pricing-note strong {
  color: var(--charcoal);
  font-size: 1.14rem;
}

.pricing-note span {
  font-size: 0.95rem;
}

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

.testimonial-card {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-top: 5px solid var(--orange);
}

.testimonial-card .quote {
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.testimonial-card h3 {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.testimonial-card div p {
  margin-bottom: 0;
  color: var(--orange-dark);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
}

.faq-question span:last-child {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #fff0dd;
  color: var(--orange-dark);
  border-radius: 50%;
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-actions {
  margin: 26px 0 24px;
}

.contact-details {
  display: grid;
  gap: 8px;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: none;
}

.form-card,
.modal-panel {
  padding: 30px;
}

.form-heading h2,
.form-heading h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.form-heading p {
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 800;
}

.full-field {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  background: #fffdf9;
  border: 1px solid #dfc9b4;
  border-radius: var(--radius);
  color: var(--ink);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 800;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-success {
  text-align: center;
}

.form-success h3 {
  margin-bottom: 20px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.form-success .success-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2)) 84px;
  background: var(--charcoal);
  color: #d8dee0;
}

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

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

.footer-brand h2 {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 1.28rem;
}

.footer-brand p,
.copyright {
  margin-bottom: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-form-link {
  color: #eef4f5;
}

.footer-form-link {
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c2c5;
  font-size: 0.93rem;
}

.mobile-cta {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.56);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #fff0dd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid #f1e0cf;
  }

  .section-shell,
  .section {
    width: min(100% - 34px, var(--max));
  }

  .section,
  .section-soft {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    gap: 30px;
    padding-top: 44px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.45rem;
  }

  .comparison-wrap {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    margin: -4px auto;
    transform: rotate(90deg);
  }

  .comparison-panel {
    min-height: auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(31, 37, 39, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 42px;
    place-items: center;
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:last-child {
    background: var(--orange);
    color: #ffffff;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .contact-actions,
  .success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .success-actions .btn {
    width: 100%;
  }

  .card-grid.four,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .package-description {
    min-height: auto;
  }

  .comparison-panel,
  .form-card,
  .modal-panel {
    padding: 24px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .footer-brand {
    align-items: flex-start;
  }
}
