:root {
  --bg: #fff7e8;
  --surface: #fffdfa;
  --ink: #26160f;
  --muted: #71564b;
  --line: #eccfa9;
  --brand: #c91f1a;
  --brand-dark: #8f1512;
  --green: #0f7a4d;
  --green-dark: #075437;
  --gold: #f0b429;
  --corn: #f7c948;
  --clay: #bf5424;
  --magenta: #c2185b;
  --soft: #ffedc7;
  --shadow: 0 20px 48px rgba(126, 59, 18, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 0.92rem;
  border-bottom: 4px solid var(--corn);
}

.topbar__inner,
.nav,
.section__inner,
.footer__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 239, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand span {
  display: block;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 650;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--green);
}

.nav__links a.button {
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  margin-left: auto;
  padding: 0;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

@media (min-width: 921px) {
  .menu-toggle {
    display: none;
  }
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  line-height: 1.1;
}

.button {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(201, 31, 26, 0.22);
}

.button:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--green-dark);
  background: #fffdf7;
  border-color: rgba(15, 122, 77, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff1c8;
}

.hero--legacy {
  min-height: min(720px, calc(100vh - 80px));
  display: grid;
  place-items: center;
  background-color: #26160f;
  color: #fff;
  text-align: center;
}

.hero--legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.hero > * {
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 16px 58px;
  overflow: hidden;
}

.hero__legacy-logo {
  width: clamp(170px, 22vw, 320px);
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.hero--legacy .eyebrow,
.hero--legacy h1 {
  color: #fff22e;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.52);
}

.hero--legacy h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.hero--legacy .lead {
  max-width: 780px;
  margin: 18px auto 0;
  color: #fff;
  font-weight: 750;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero--legacy .hero__actions {
  justify-content: center;
}

.hero--legacy .button-secondary {
  color: #fff;
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.86);
}

.hero__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 46px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero__inner > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.3vw, 3.7rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__facts,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.fact,
.proof-strip div,
.feature,
.package,
.step,
.faq,
.testimonial,
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(126, 59, 18, 0.07);
}

.fact,
.proof-strip div {
  padding: 14px;
  border-top: 5px solid var(--gold);
}

.fact:nth-child(2),
.proof-strip div:nth-child(2) {
  border-top-color: var(--green);
}

.fact:nth-child(3),
.proof-strip div:nth-child(3) {
  border-top-color: var(--brand);
}

.fact strong,
.proof-strip strong {
  display: block;
  font-size: 1.08rem;
}

.fact span,
.proof-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid #fffdf7;
  outline: 3px solid rgba(240, 180, 41, 0.55);
  box-shadow: var(--shadow);
}

.hero__note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(240, 180, 41, 0.45);
  font-weight: 800;
}

.section {
  padding: 74px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section--soft {
  background: var(--soft);
}

.section__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section__head p,
.faq p,
.package p,
.step p,
.service-card p,
.testimonial p,
.feature p {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.feature,
.package,
.step,
.faq,
.testimonial,
.service-card {
  padding: 22px;
  border-top: 5px solid rgba(240, 180, 41, 0.9);
}

.package {
  display: flex;
  flex-direction: column;
}

.grid-3 .package:nth-child(1),
.grid-3 .service-card:nth-child(1),
.grid-3 .faq:nth-child(1) {
  border-top-color: var(--green);
}

.grid-3 .package:nth-child(2),
.grid-3 .service-card:nth-child(2),
.grid-3 .faq:nth-child(2) {
  border-top-color: var(--brand);
}

.grid-3 .package:nth-child(3),
.grid-3 .service-card:nth-child(3),
.grid-3 .faq:nth-child(3) {
  border-top-color: var(--corn);
}

.price {
  margin: 12px 0;
  color: var(--clay);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.package ul,
.check-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.menu-list span {
  display: block;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(126, 59, 18, 0.06);
}

.package .button {
  margin-top: auto;
}

.answer-box {
  padding: 24px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--green-dark);
  box-shadow: 0 14px 34px rgba(15, 122, 77, 0.16);
}

.answer-box p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery a:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid #fffdf7;
  box-shadow: 0 12px 30px rgba(126, 59, 18, 0.13);
}

.cta-band {
  padding: 46px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: linear-gradient(180deg, var(--green) 0%, #031f16 100%);
  color: #fff;
  padding: 46px 0 28px;
  border-top: 6px solid var(--corn);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer__inner a,
.topbar a {
  color: inherit;
}

.footer__inner p,
.footer__inner li {
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-bottom {
  width: 100%;
  max-width: 1120px;
  margin: 28px auto 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 920px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 68px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    max-width: calc(100% - 60px);
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
    z-index: 30;
    opacity: 1;
    visibility: visible;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 16px;
    right: 16px;
    z-index: 25;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: #fffdf7;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 36px rgba(38, 22, 15, 0.18);
  }

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

  .nav__links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(236, 207, 169, 0.72);
  }

  .nav__links a:last-child {
    border-bottom: 0;
  }

  .hero__inner,
  .grid-2,
  .grid-3,
  .grid-4,
  .cta-band,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .hero__inner > div:first-child {
    max-width: 356px;
  }

  .hero__facts,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

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

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

  .nav__links .button {
    display: flex;
    margin-top: 8px;
  }

  .section {
    padding: 54px 0;
  }

  h1 {
    font-size: 1.7rem;
    max-width: calc(100vw - 32px);
  }

  .lead {
    font-size: 1rem;
    max-width: calc(100vw - 32px);
  }

  .hero__media img {
    aspect-ratio: 1 / 1;
  }

  .hero--legacy {
    min-height: calc(100vh - 68px);
  }

  .hero__overlay {
    max-width: 100vw;
    padding-top: 42px;
    padding-bottom: 92px;
  }

  .hero--legacy h1 {
    width: 100%;
    max-width: 310px;
    font-size: 1.42rem;
    overflow-wrap: anywhere;
  }

  .hero--legacy .lead {
    max-width: 310px;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .hero--legacy .hero__actions {
    width: 310px;
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero--legacy .hero__actions .button,
  .hero--legacy .hero__actions .button-secondary {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .gallery a:first-child {
    grid-row: span 1;
  }

  .cta-band {
    padding: 28px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    display: block;
    padding: 10px 14px;
    background: transparent;
    border-top: 0;
  }

  .mobile-cta .button {
    width: 100%;
  }

  body {
    padding-bottom: 72px;
  }
}
