:root {
  --blue: #005DFF;
  --sage: #A7C957;
  --green: #4F772D;
  --cream: #F8F4E8;
  --ink: #3A3A3A;
  --white: #fffdf7;
  --soft-green: #e8efd9;
  --mint: #dff0c6;
  --sun: #f2c94c;
  --line: rgba(58, 58, 58, 0.12);
  --shadow: 0 30px 80px rgba(32, 48, 22, 0.16);
  --radius: 34px;
  --heading: "Avenir Next", Avenir, Nunito, system-ui, sans-serif;
  --body: Nunito, "Avenir Next", Avenir, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(167, 201, 87, 0.34), transparent 22rem),
    radial-gradient(circle at 90% 18%, rgba(0, 93, 255, 0.1), transparent 18rem),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 42%, #f0f6e4 100%);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    radial-gradient(circle, rgba(79, 119, 45, 0.12) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(0, 93, 255, 0.08) 0 1px, transparent 1.5px);
  background-position: 0 0, 18px 24px;
  background-size: 58px 58px, 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 108px;
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px clamp(22px, 6vw, 88px);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(79, 119, 45, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, min-height 180ms ease, transform 180ms ease;
}

.site-header.scrolled {
  min-height: 84px;
  box-shadow: 0 18px 48px rgba(32, 48, 22, 0.12);
  transform: translateY(-6px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand {
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 93, 255, 0.18);
  transform: rotate(-4deg);
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  color: var(--white);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--sage);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(620px, 78vh, 820px);
  display: flex;
  align-items: center;
  margin: 18px clamp(14px, 3vw, 38px) 0;
  padding: 110px clamp(24px, 13vw, 260px);
  background-image: linear-gradient(95deg, rgba(13, 34, 12, 0.86) 0%, rgba(13, 34, 12, 0.58) 34%, rgba(13, 34, 12, 0.08) 68%), url("assets/hero.png");
  background-size: 112%, cover;
  background-position: center;
  border-radius: clamp(30px, 5vw, 70px);
  color: var(--white);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  right: clamp(18px, 7vw, 120px);
  bottom: clamp(18px, 6vw, 92px);
  width: clamp(120px, 16vw, 230px);
  aspect-ratio: 1;
  content: "45-60 min";
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--sage);
  border: 10px solid rgba(255, 253, 247, 0.6);
  border-radius: 45% 55% 52% 48%;
  box-shadow: 0 24px 60px rgba(32, 48, 22, 0.22);
  font-weight: 900;
  transform: rotate(10deg);
  animation: softFloat 5.5s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  inset: auto 8% 9% auto;
  z-index: -1;
  width: 38%;
  height: 34%;
  content: "";
  background: radial-gradient(circle, rgba(0, 93, 255, 0.26), transparent 62%);
  filter: blur(8px);
}

.hero-copy {
  max-width: 630px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 800;
}

h1 {
  font-size: clamp(2.8rem, 5.3vw, 5.25rem);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

p {
  margin: 0 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 26px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0046bf);
  box-shadow: 0 16px 38px rgba(0, 93, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.primary:hover {
  background: #0048c7;
}

.button.outline {
  color: var(--blue);
  border: 2px solid var(--blue);
}

.button.outline:hover {
  color: white;
  background: var(--blue);
}

.section {
  padding: clamp(76px, 10vw, 150px) clamp(24px, 8vw, 140px);
}

.tinted {
  background:
    linear-gradient(135deg, rgba(167, 201, 87, 0.36), rgba(248, 244, 232, 0.72)),
    var(--soft-green);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(300px, 1fr);
  gap: clamp(46px, 10vw, 150px);
  align-items: center;
  background: var(--cream);
}

.calendar-card {
  max-width: 520px;
  margin-inline: auto;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.calendar-card:hover {
  box-shadow: 0 34px 90px rgba(32, 48, 22, 0.2);
  transform: rotate(0deg) translateY(-4px);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  background: linear-gradient(90deg, rgba(167, 201, 87, 0.25), rgba(0, 93, 255, 0.07));
}

.calendar-head span {
  color: rgba(58, 58, 58, 0.56);
  font-weight: 800;
}

.calendar-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 42px 14px;
}

.calendar-month h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.calendar-month button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 2.3rem;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 42px 44px;
}

.calendar-grid span,
.calendar-grid small {
  min-height: 54px;
  padding: 8px 4px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-weight: 900;
  font-size: 1.25rem;
}

.calendar-grid span {
  min-height: auto;
  color: rgba(58, 58, 58, 0.38);
}

.calendar-grid small {
  color: rgba(58, 58, 58, 0.45);
}

.calendar-grid small.open {
  color: #121212;
  border-bottom: 5px solid #7ad171;
  animation: dayPulse 2.8s ease-in-out infinite;
}

.calendar-grid small.selected {
  background: rgba(167, 201, 87, 0.35);
}

.section-copy {
  max-width: 700px;
}

.section-copy p {
  max-width: 620px;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 253, 247, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(32, 48, 22, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: 0 30px 70px rgba(32, 48, 22, 0.16);
  transform: translateY(-10px) rotate(-0.5deg);
}

.service-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card div {
  padding: 34px 38px 42px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 5px 13px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(320px, 610px) minmax(300px, 1fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
  background: var(--cream);
}

.feature-image img,
.page-hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.page-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 140px);
  background: radial-gradient(circle at 5% 20%, rgba(167, 201, 87, 0.16), transparent 28%), var(--cream);
}

.page-hero-copy p:not(.eyebrow),
.contact-copy p {
  max-width: 650px;
}

.values-section {
  padding-top: clamp(76px, 9vw, 125px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.value-card,
.story-card,
.contact-form {
  background: rgba(255, 253, 247, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(32, 48, 22, 0.08);
}

.value-card,
.story-card,
.package-card,
.contact-form {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover,
.story-card:hover,
.package-card:hover,
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(32, 48, 22, 0.14);
}

.value-card {
  padding: 40px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.4rem;
}

.value-card h3 {
  margin-bottom: 14px;
}

.split-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}

.story-card {
  padding: clamp(36px, 5vw, 62px);
}

.story-list {
  font-size: 1.05rem;
}

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

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--sage);
  border-radius: 50% 50% 45% 55%;
  box-shadow: inset 0 0 0 6px white, 0 0 0 2px rgba(0, 93, 255, 0.18);
}

.service-hero {
  padding: clamp(80px, 10vw, 145px) clamp(24px, 8vw, 140px) 24px;
}

.packages {
  display: grid;
  gap: 58px;
  padding-top: 42px;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(300px, 1fr);
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-card.premium {
  background: linear-gradient(135deg, #f2f7e9, #fffdf7 72%);
}

.package-media {
  position: relative;
  min-height: 100%;
}

.package-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.package-media span {
  position: absolute;
  left: 28px;
  top: 28px;
  padding: 10px 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-content {
  padding: clamp(36px, 5vw, 70px);
}

.package-content h2 {
  margin-bottom: 22px;
}

.package-lead {
  max-width: 740px;
  font-size: 1.08rem;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.price-row div {
  padding: 22px;
  background: linear-gradient(135deg, rgba(0, 93, 255, 0.1), rgba(167, 201, 87, 0.18));
  border: 1px solid rgba(0, 93, 255, 0.14);
  border-radius: 20px;
}

.price-row small {
  display: block;
  color: rgba(58, 58, 58, 0.67);
  font-weight: 900;
}

.price-row strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.2;
}

.zone-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.zone-grid span {
  padding: 14px 22px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(79, 119, 45, 0.2);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.zone-grid span:hover {
  background: var(--sage);
  transform: translateY(-3px);
}

.contact-hero {
  position: relative;
  align-items: start;
  min-height: auto;
  overflow: visible;
  padding-top: clamp(120px, 13vw, 180px);
  padding-bottom: clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 9% 24%, rgba(167, 201, 87, 0.24), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(0, 93, 255, 0.08), transparent 22rem),
    linear-gradient(115deg, rgba(255, 253, 247, 0.72), rgba(248, 244, 232, 0.88));
}

.contact-hero::before {
  position: absolute;
  left: clamp(24px, 8vw, 140px);
  bottom: clamp(40px, 7vw, 90px);
  width: min(420px, 34vw);
  height: 180px;
  content: "";
  background-image: linear-gradient(180deg, rgba(248, 244, 232, 0.08), rgba(248, 244, 232, 0.74)), url("assets/hero.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(79, 119, 45, 0.18);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(32, 48, 22, 0.12);
  opacity: 0.38;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 6.1vw, 6rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  padding: 18px 22px;
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid rgba(79, 119, 45, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.contact-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: flex-start;
  max-width: 660px;
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.58);
  border: 1px solid rgba(79, 119, 45, 0.12);
  border-radius: 18px;
}

.contact-list span {
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 20px;
  max-width: 640px;
  padding: clamp(36px, 5vw, 64px);
}

.contact-form h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(58, 58, 58, 0.18);
  border-radius: 16px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 93, 255, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 93, 255, 0.12), transparent 22rem),
    #e4ecd9;
  border-top: 1px solid rgba(79, 119, 45, 0.18);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(170px, 0.7fr));
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 8vw, 140px);
}

.footer-brand {
  margin-bottom: 24px;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
}

.footer-main h3 {
  margin-bottom: 22px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-main a:not(.footer-brand) {
  display: block;
  margin-bottom: 10px;
}

.footer-main p {
  max-width: 360px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-3px) rotate(-6deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 8vw, 140px);
  border-top: 1px solid rgba(79, 119, 45, 0.18);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-grid .reveal:nth-child(2),
.value-grid .reveal:nth-child(2),
.price-row div:nth-child(2) {
  transition-delay: 90ms;
}

.value-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes heroDrift {
  from { background-position: center, center; }
  to { background-position: 56% 48%, 52% center; }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

@keyframes dayPulse {
  0%, 100% { background-color: transparent; }
  50% { background-color: rgba(167, 201, 87, 0.24); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 30px;
  }

  .nav-toggle {
    display: block;
    background: rgba(255, 253, 247, 0.92);
    border: 1px solid rgba(58, 58, 58, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(32, 48, 22, 0.08);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 10px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
  }

  .nav-open .main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-open .main-nav a.active,
  .nav-open .main-nav a:hover {
    background: rgba(0, 93, 255, 0.08);
  }

  .nav-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .intro-section,
  .feature-section,
  .page-hero,
  .contact-hero,
  .split-story,
  .package-card {
    grid-template-columns: 1fr;
  }

  .contact-hero::before {
    left: auto;
    right: 24px;
    bottom: auto;
    top: 118px;
    width: 220px;
    height: 120px;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .package-media img {
    min-height: 380px;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 8px;
    min-height: 84px;
    padding: 14px 18px;
    width: calc(100% - 16px);
  }

  .brand span {
    font-size: 1.1rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero {
    min-height: 600px;
    padding: 86px 22px;
    background-position: 62% center;
    border-radius: 28px;
  }

  .hero h1,
  h1,
  .contact-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.55rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .hero::before {
    right: 18px;
    bottom: 18px;
    width: 112px;
    border-width: 6px;
    font-size: 0.9rem;
  }

  .hero-copy {
    text-align: left;
  }

  .calendar-head,
  .calendar-month,
  .calendar-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .calendar-grid small {
    min-height: 44px;
    font-size: 1rem;
  }

  .service-card img {
    height: 250px;
  }

  .check-list.columns,
  .price-row {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero::before,
  .contact-hero::before {
    display: none;
  }

  .section,
  .page-hero,
  .contact-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .calendar-card {
    transform: none;
  }
}
