:root {
  color-scheme: light dark;
  --bg: #eef1ec;
  --surface: #f8faf6;
  --surface-soft: #dce8d8;
  --ink: #1a2a22;
  --muted: #53645b;
  --line: #c5cec6;
  --accent: #2f684b;
  --accent-strong: #22543c;
  --accent-ink: #f6faf5;
  --panel: rgb(247 249 245 / .94);
  --container: 1360px;
  --header-height: 78px;
  --pad: clamp(20px, 3.2vw, 52px);
  --section-space: clamp(92px, 10vw, 164px);
  --radius: 18px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: "Avenir Next", "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-weight: 650;
  letter-spacing: -.047em;
  line-height: .98;
}

h2 {
  font-size: clamp(48px, 5.6vw, 88px);
}

h3 {
  font-size: clamp(27px, 2.25vw, 36px);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-inner {
  width: min(calc(100% - (var(--pad) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgb(238 241 236 / .96);
  color: var(--ink);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 136px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 136px;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  font-size: 14px;
  font-weight: 680;
}

.nav-panel a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-panel > a:not(.nav-cta) {
  position: relative;
}

.nav-panel > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-panel > a:not(.nav-cta):hover::after,
.nav-panel > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0 21px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--accent-ink);
}

.menu-toggle {
  display: none;
  min-width: 80px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 5px;
}

.menu-lines i {
  width: 17px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 84svh;
  padding-block: 0;
}

.hero-frame {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  background: #8fa283;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(54%, 720px);
  min-height: 84svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px);
  background: var(--panel);
  backdrop-filter: blur(3px);
}

.availability {
  margin-bottom: clamp(32px, 5vh, 58px);
  padding: 8px 12px;
  border: 1px solid var(--accent);
  border-radius: 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: clamp(68px, 7.1vw, 108px);
}

.hero-lede {
  max-width: 515px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.section {
  padding-block: var(--section-space);
}

.section-title {
  max-width: 900px;
  margin-bottom: clamp(62px, 8vw, 116px);
}

.section-title h2 {
  margin-bottom: 28px;
}

.section-title p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 370px 340px 320px;
  gap: 18px;
}

.service-cell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.service-cell p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  padding: clamp(26px, 3.2vw, 46px);
}

.service-cleaning {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: minmax(0, 1.45fr) minmax(230px, .55fr);
}

.service-household {
  grid-column: 8 / span 5;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
  background: var(--surface-soft);
}

.service-household h3 {
  max-width: 390px;
  font-size: clamp(36px, 3.5vw, 54px);
}

.service-social {
  grid-column: 8 / span 5;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-social .service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-social h3 {
  font-size: 32px;
}

.service-outdoors {
  grid-column: 1 / span 5;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.service-music {
  grid-column: 6 / span 7;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.service-music .service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values {
  padding-top: 0;
}

.values-layout {
  padding: clamp(48px, 7vw, 100px);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.values-intro {
  max-width: 1020px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.values-intro h2 {
  max-width: 980px;
  margin-bottom: 30px;
}

.values-intro p {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.value-notes {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.1fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.value-note:nth-child(2) {
  margin-top: 56px;
}

.value-note h3 {
  margin-bottom: 15px;
  font-size: clamp(27px, 2.3vw, 36px);
}

.value-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  padding-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
  padding-top: var(--section-space);
  border-top: 1px solid var(--line);
}

.contact-heading h2 {
  max-width: 790px;
  margin-bottom: 35px;
}

.status-note {
  max-width: 580px;
  margin-bottom: 0;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 650;
}

.contact-details {
  margin: 0;
  font-style: normal;
}

.contact-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.contact-item a,
.contact-item p {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 680;
  line-height: 1.45;
}

.contact-item a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.contact-button {
  margin-top: 30px;
}

.facebook-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  margin-left: 18px;
  font-size: 14px;
  font-weight: 680;
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.footer-brand img {
  width: 200px;
  height: 111px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 15px;
}

.footer-links a,
.back-top {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
}

.back-top {
  margin-top: 15px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-meta p {
  margin-bottom: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121914;
    --surface: #19231c;
    --surface-soft: #233428;
    --ink: #edf3ee;
    --muted: #afbeb3;
    --line: #3a493e;
    --accent: #91c778;
    --accent-strong: #a9d992;
    --accent-ink: #132016;
    --panel: rgb(24 34 27 / .94);
  }

  .site-header {
    background: rgb(18 25 20 / .96);
  }

  .brand img,
  .footer-brand img {
    filter: invert(1);
  }

  .availability {
    color: var(--accent);
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 74px;
  }

  .brand {
    width: 124px;
    height: 70px;
  }

  .brand img {
    width: 124px;
  }

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

  .header-inner {
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 10;
    display: grid;
    gap: 0;
    padding: 12px var(--pad) 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .nav-panel a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .js .nav-panel:not(.is-open) {
    display: none;
  }

  .hero-panel {
    width: 58%;
    padding-inline: clamp(46px, 6vw, 72px);
  }

  h1 {
    font-size: clamp(62px, 8.2vw, 82px);
  }

  .service-grid {
    grid-template-rows: 340px 330px 320px;
  }

  .service-social {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .service-social img {
    min-height: 140px;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --pad: 18px;
    --section-space: 84px;
    --radius: 16px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    width: 118px;
    height: 68px;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    min-width: 76px;
  }

  .hero,
  .hero-frame,
  .hero-panel {
    min-height: 0;
  }

  .hero-frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }

  .hero-panel {
    width: 100%;
    order: 1;
    padding: 62px var(--pad) 56px;
    background: var(--bg);
    backdrop-filter: none;
  }

  .hero-media {
    position: relative;
    order: 2;
    aspect-ratio: 4 / 3.35;
  }

  .availability {
    margin-bottom: 34px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(49px, 14.6vw, 61px);
  }

  .hero-lede {
    max-width: 370px;
    margin-bottom: 31px;
    font-size: 18px;
  }

  .section-title {
    margin-bottom: 58px;
  }

  .section-title h2,
  .values-intro h2 {
    font-size: clamp(45px, 13.2vw, 58px);
  }

  .contact-heading h2 {
    font-size: clamp(38px, 10.3vw, 48px);
  }

  .section-title p,
  .values-intro p {
    font-size: 17px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .service-cleaning,
  .service-household,
  .service-social,
  .service-outdoors,
  .service-music {
    grid-column: auto;
    grid-row: auto;
  }

  .service-cleaning {
    grid-template-rows: 270px auto;
  }

  .service-household,
  .service-outdoors {
    min-height: 270px;
    padding: 34px 28px;
  }

  .service-household h3 {
    font-size: 37px;
  }

  .service-social {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px;
  }

  .service-social img {
    min-height: 0;
  }

  .service-music {
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
  }

  .service-copy {
    padding: 28px;
  }

  .values-layout {
    width: 100%;
    padding: 74px var(--pad);
    border-radius: 0;
  }

  .values-intro {
    margin-bottom: 62px;
  }

  .value-notes {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .value-note:nth-child(2) {
    margin-top: 0;
    margin-left: 14vw;
  }

  .value-note:nth-child(3) {
    margin-left: 5vw;
  }

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

  .contact-layout {
    gap: 62px;
  }

  .contact-heading,
  .contact-details {
    min-width: 0;
    width: 100%;
  }

  .contact-heading h2 {
    margin-bottom: 28px;
  }

  .status-note {
    padding: 18px;
  }

  .facebook-link {
    display: flex;
    margin-left: 0;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-brand img {
    width: 170px;
    height: auto;
  }

  .footer-links {
    padding-top: 0;
  }

  .back-top {
    margin-top: 0;
  }

  .footer-meta {
    display: block;
    margin-top: 38px;
  }

  .footer-meta p + p {
    margin-top: 10px;
  }
}

@media (max-width: 410px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
