:root {
  --bg: #f4f7f3;
  --bg-soft: #e8efe8;
  --panel: #ffffff;
  --panel-strong: #18382c;
  --line: rgba(36, 81, 59, 0.12);
  --text: #14231b;
  --muted: #41574a;
  --accent: #2f6d50;
  --accent-strong: #214d39;
  --shadow: 0 18px 44px rgba(17, 39, 30, 0.1);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(123, 169, 139, 0.2), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(215, 232, 218, 0.8), transparent 26%),
    linear-gradient(180deg, #f7faf7 0%, #eff5ef 46%, #f7faf7 100%);
  line-height: 1.65;
  font-size: 18px;
}

h1,
h2,
h3,
.brand-title,
.price-value,
.eyebrow {
  font-family: "Optima", "Segoe UI Light", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 62, 45, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 62, 45, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.28;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  transition: transform 260ms ease, background 200ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 68px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.brand-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.brand-subtitle {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-toggle {
  display: none !important;
  width: 52px;
  height: 52px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(47, 109, 80, 0.16);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(17, 39, 30, 0.08);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #214d39;
  display: block;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(47, 109, 80, 0.08);
  border-color: rgba(47, 109, 80, 0.16);
  transform: translateY(-1px);
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.hero-card,
.panel,
.price-card,
.service-card,
.contact-card,
.feature-card,
.image-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel,
.price-card,
.service-card,
.contact-card,
.feature-card,
.detail-card {
  color: var(--text);
}

.panel h1,
.panel h2,
.panel h3,
.panel p,
.panel li,
.panel a,
.price-card h1,
.price-card h2,
.price-card h3,
.price-card p,
.price-card li,
.price-card a,
.service-card h1,
.service-card h2,
.service-card h3,
.service-card p,
.service-card li,
.service-card a,
.contact-card h1,
.contact-card h2,
.contact-card h3,
.contact-card p,
.contact-card li,
.contact-card a,
.feature-card h1,
.feature-card h2,
.feature-card h3,
.feature-card p,
.feature-card li,
.feature-card a,
.detail-card h1,
.detail-card h2,
.detail-card h3,
.detail-card p,
.detail-card li,
.detail-card a,
.highlight,
.highlight strong,
.contact-item,
.contact-item a {
  color: #14231b !important;
}

.hero-card {
  padding: 42px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #163a2b 0%, #234d39 100%);
  color: #eff7f1;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 208, 168, 0.18) 0%, rgba(159, 208, 168, 0) 72%);
  animation: drift 9s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 242, 216, 0.1);
  color: #d9f2de;
  font-size: 0.9rem;
}

.detail-card .eyebrow,
.panel .eyebrow,
.price-card .eyebrow,
.contact-card .eyebrow {
  background: rgba(47, 109, 80, 0.08);
  color: #214d39;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 5.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(239, 247, 241, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  background: linear-gradient(135deg, #d2f0d6 0%, #8ec79b 100%);
  color: #0d2218;
  box-shadow: 0 16px 32px rgba(143, 199, 155, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(47, 109, 80, 0.18);
  color: #18382c;
  background: #f4faf5;
}

.hero-card .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eff7f1;
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-side {
  display: grid;
  gap: 18px;
  align-items: start;
}

.price-card,
.feature-card {
  padding: 28px;
}

.image-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.image-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.index-image {
  object-position: center 24%;
}

.senior-image {
  object-position: center 30%;
}

.move-image {
  object-position: center 0%;
}

.smallwork-image {
  object-position: center 32%;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 23, 18, 0.04), rgba(10, 23, 18, 0.24)),
    linear-gradient(135deg, rgba(25, 61, 45, 0.12), rgba(159, 208, 168, 0.02));
  pointer-events: none;
}

.price-label {
  margin: 0 0 6px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.price-value {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  font-weight: 800;
}

.price-note,
.feature-card p {
  margin: 10px 0 0;
  color: #31463b;
}

.section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.section-head p {
  margin: 0;
  max-width: 38rem;
  color: #31463b;
  font-size: 1.08rem;
}

.service-grid,
.feature-grid,
.contact-grid,
.detail-grid,
.highlights {
  display: grid;
  gap: 20px;
  align-items: start;
}

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

.service-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 109, 80, 0.05), rgba(214, 242, 216, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.panel h2,
.contact-card h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.service-card p,
.panel p,
.contact-card p,
.detail-lead {
  color: #31463b;
}

.service-card li,
.detail-list li,
.check-list li,
.contact-item,
.highlight {
  color: #24372e;
}

.service-card h3,
.panel h2,
.contact-card h3,
.detail-card h1,
.detail-card h2,
.detail-card h3,
.feature-card h3,
.price-value {
  color: #14231b;
}

.service-card ul,
.detail-list,
.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
  font-size: 1.02rem;
}

.service-card li,
.detail-list li,
.check-list li {
  margin-bottom: 8px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.panel {
  padding: 30px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbf8;
  border: 1px solid rgba(47, 109, 80, 0.12);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent-strong);
}

.detail-hero {
  padding: 64px 0 24px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.detail-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-weight: 400;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.calc-table th,
.calc-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 1rem;
}

.calc-table th {
  background: rgba(159, 208, 168, 0.08);
  color: var(--accent-strong);
  font-weight: 700;
}

.calc-table td {
  color: #31463b;
}

.calc-note {
  margin-top: 16px;
  color: #31463b;
}

.price-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(159, 208, 168, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
}

.highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  align-items: start;
}

.highlight {
  padding: 18px;
  border-radius: 18px;
  background: #f8fbf8;
  border: 1px solid rgba(47, 109, 80, 0.12);
}

.highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.site-footer {
  padding: 28px 0 46px;
  color: var(--muted);
}

.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, 24px, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .contact-grid,
  .detail-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

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

  .nav {
    display: none !important;
    width: 100%;
    padding-top: 8px;
    flex-direction: column;
    gap: 8px;
  }

  .site-header.is-menu-open .nav {
    display: flex !important;
  }

  .nav a {
    width: 100%;
    text-align: left;
  }

  .hero-card,
  .detail-card,
  .price-card,
  .feature-card,
  .service-card,
  .contact-card,
  .panel {
    padding: 24px;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}
