:root {
  --ink: #203126;
  --muted: #667564;
  --deep: #173f2d;
  --green: #2f6848;
  --moss: #8aa36e;
  --kinari: #f5f0e4;
  --pale: #e7efdc;
  --soil: #7a6042;
  --line: rgba(32, 49, 38, 0.14);
  --shadow: 0 24px 70px rgba(23, 63, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  color: var(--ink);
  background: #fbf8ef;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.motion-ready .hero-photo {
  opacity: 0;
  transform: scale(1.04);
}

.motion-ready .hero-shade {
  opacity: 0;
}

.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero .lead,
.motion-ready .hero-tags,
.motion-ready .hero-actions,
.motion-ready .hero-note {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.motion-ready .hero-photo,
.motion-ready .hero-shade,
.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero .lead,
.motion-ready .hero-tags,
.motion-ready .hero-actions,
.motion-ready .hero-note {
  transition:
    opacity 900ms cubic-bezier(.21,.72,.24,1),
    transform 1000ms cubic-bezier(.21,.72,.24,1);
}

.hero-ready .hero-photo,
.hero-ready .hero-shade,
.hero-ready .hero .eyebrow,
.hero-ready .hero h1,
.hero-ready .hero .lead,
.hero-ready .hero-tags,
.hero-ready .hero-actions,
.hero-ready .hero-note {
  opacity: 1;
  transform: none;
}

.hero-ready .hero .eyebrow {
  transition-delay: 320ms;
}

.hero-ready .hero h1 {
  transition-delay: 520ms;
}

.hero-ready .hero .lead {
  transition-delay: 760ms;
}

.hero-ready .hero-tags {
  transition-delay: 980ms;
}

.hero-ready .hero-actions {
  transition-delay: 1180ms;
}

.hero-ready .hero-note {
  transition-delay: 1360ms;
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 820ms cubic-bezier(.21,.72,.24,1),
    transform 920ms cubic-bezier(.21,.72,.24,1),
    filter 820ms cubic-bezier(.21,.72,.24,1),
    clip-path 1050ms cubic-bezier(.21,.72,.24,1);
  transition-delay: var(--delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.motion-ready .reveal-photo-left {
  clip-path: inset(0 18% 0 0);
  transform: translate3d(-34px, 0, 0) scale(.98);
}

.motion-ready .reveal-photo-right {
  clip-path: inset(0 0 0 18%);
  transform: translate3d(34px, 0, 0) scale(.98);
}

.motion-ready .reveal-photo-left.is-visible,
.motion-ready .reveal-photo-right.is-visible {
  clip-path: inset(0 0 0 0);
}

.motion-ready .reveal-list {
  transform: translate3d(-22px, 18px, 0);
}

.motion-ready .reveal-step {
  transform: translate3d(0, 26px, 0) scale(.96);
}

.motion-ready .reveal-chip {
  filter: blur(0);
  transform: translate3d(0, 14px, 0) scale(.94);
}

.motion-ready .reveal-compare {
  clip-path: inset(12% 8% 12% 8%);
  transform: translate3d(0, 42px, 0) scale(.96);
}

.motion-ready .reveal-compare.is-visible {
  clip-path: inset(0 0 0 0);
  transform: none;
}

.motion-ready .work-motion-1 {
  clip-path: inset(0 18% 0 0);
  transform: translate3d(-34px, 0, 0);
}

.motion-ready .work-motion-2 {
  transform: translate3d(38px, 0, 0);
}

.motion-ready .work-motion-3 {
  transform: translate3d(0, 30px, 0) rotate(.8deg);
}

.motion-ready .work-motion-4 {
  transform: translate3d(-18px, 26px, 0) scale(.98);
}

.motion-ready .work-item.is-visible {
  clip-path: inset(0 0 0 0);
  transform: none;
}

.motion-ready .reveal-line {
  transform: translate3d(0, 22px, 0);
}

.motion-ready .reveal-faq {
  transform: translate3d(0, 20px, 0) scale(.985);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 32, 23, 0.66), rgba(13, 32, 23, 0));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--deep);
  background: #fff;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero-photo,
.hero-photo img,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 30, 20, 0.9) 0%, rgba(9, 30, 20, 0.68) 36%, rgba(9, 30, 20, 0.14) 72%),
    linear-gradient(0deg, rgba(9, 30, 20, 0.42), rgba(9, 30, 20, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, calc(100% - 36px));
  padding: clamp(118px, 18vh, 170px) 0 150px clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #d9edc5;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.12;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 2;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.btn:hover,
.header-cta:hover,
.mobile-cta a:hover,
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 63, 45, 0.2);
}

.btn.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.btn.ghost.dark {
  color: var(--deep);
  border-color: rgba(23, 63, 45, 0.26);
  background: rgba(255, 255, 255, 0.55);
}

.btn.line {
  color: #fff;
  background: #1f7f43;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 6vw, 76px);
  bottom: 76px;
  z-index: 3;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border-left: 4px solid #dbeec4;
  background: rgba(245, 240, 228, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-note span,
.hero-note small {
  display: block;
  color: var(--muted);
}

.hero-note strong {
  display: block;
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.45;
}

.section {
  scroll-margin-top: 76px;
  padding: clamp(74px, 10vw, 138px) clamp(18px, 6vw, 92px);
}

.section h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.18;
  font-weight: 900;
}

.worry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
}

.worry-copy p,
.consult-copy p,
.comparison-head p,
.final-copy p,
.work-item p,
.flow-list p,
.faq p {
  color: var(--muted);
  line-height: 1.9;
}

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

.check-list li {
  position: relative;
  padding: 15px 16px 15px 40px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 12px;
  content: "✓";
  color: var(--green);
}

.worry-photo {
  margin: 0;
}

.worry-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform 620ms cubic-bezier(.21,.72,.24,1);
}

.worry-photo:hover img,
.consult-photo:hover img,
.work-item.featured:hover img,
.owner-photo:hover img {
  transform: scale(1.035);
}

.worry-photo figcaption {
  width: 88%;
  margin: -34px 0 0 auto;
  position: relative;
  padding: 18px 20px;
  background: var(--deep);
  color: #fff;
  line-height: 1.7;
}

.photo-consult {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  background: var(--kinari);
}

.consult-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 620ms cubic-bezier(.21,.72,.24,1);
}

.consult-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.consult-steps span {
  padding: 18px 12px;
  text-align: center;
  color: var(--deep);
  background: #fff;
  border-top: 3px solid var(--moss);
  font-weight: 900;
}

.comparison {
  background: #fff;
}

.comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.comparison-stage {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  height: min(68vw, 680px);
  background: var(--deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.comparison-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .38), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-120%);
}

.comparison-stage.is-visible::after {
  animation: gardenShine 1200ms cubic-bezier(.21,.72,.24,1) 420ms both;
}

@keyframes gardenShine {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  24% {
    opacity: .8;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

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

.compare-before-wrap {
  position: absolute;
  inset: 0;
  width: 52%;
  overflow: hidden;
}

.compare-before {
  width: calc(100vw - clamp(36px, 12vw, 184px));
  max-width: none;
}

.compare-label {
  position: absolute;
  top: 20px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(23, 63, 45, 0.86);
  font-weight: 900;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.04);
}

.compare-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  transform: translate(-50%, -50%);
  content: "↔";
  display: grid;
  place-items: center;
  font-weight: 900;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.comparison-notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pale);
  color: var(--deep);
  font-weight: 800;
}

.works {
  background: #f8f6ed;
}

.work-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.work-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 160px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.work-item.featured {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 320px;
  border-top: 0;
  padding-top: 0;
}

.work-item.featured img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 620ms cubic-bezier(.21,.72,.24,1);
}

.work-item span {
  color: var(--soil);
  font-weight: 900;
}

.work-item h3 {
  margin: 8px 0 8px;
  font-size: 26px;
}

.reason {
  color: #fff;
  background:
    linear-gradient(rgba(23, 63, 45, 0.94), rgba(23, 63, 45, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 26%);
}

.section-label.light {
  color: #d8ecc1;
}

.reason-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
}

.reason-lines {
  display: grid;
  gap: 18px;
}

.reason-lines p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.5;
  font-weight: 800;
}

.reason-lines strong {
  margin-right: 18px;
  color: #cfe5af;
}

.flow-list {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 960px;
  padding: 0;
  margin: 34px auto 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.flow-list::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 27px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--green), var(--moss));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1250ms cubic-bezier(.21,.72,.24,1);
}

.flow-list.is-visible::before {
  transform: scaleY(1);
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.flow-list h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.faq {
  background: var(--kinari);
}

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

details {
  background: #fff;
  border: 1px solid rgba(23, 63, 45, 0.12);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
}

details p {
  padding: 0 24px 24px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #eaf1de;
}

.owner-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  object-position: 42% center;
  transition: transform 620ms cubic-bezier(.21,.72,.24,1);
}

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

.micro {
  margin-top: 18px;
  font-size: 13px;
}

.photo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 63, 45, 0.14);
}

.photo-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.photo-form label:nth-child(4),
.photo-form label:nth-child(5),
.form-submit {
  grid-column: 1 / -1;
}

.photo-form input,
.photo-form select,
.photo-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 63, 45, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.photo-form textarea {
  resize: vertical;
}

.form-submit {
  min-height: 52px;
  border: 0;
  color: #fff;
  background: var(--deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 38px clamp(18px, 6vw, 92px) 94px;
  color: #fff;
  background: #102b1f;
}

.site-footer span,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-cta {
  display: none;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 104px 0 220px 18px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 30, 20, 0.88) 0%, rgba(9, 30, 20, 0.58) 46%, rgba(9, 30, 20, 0.12) 100%);
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-note {
    right: 18px;
    bottom: 90px;
    padding: 18px;
  }

  .worry-layout,
  .photo-consult,
  .comparison-head,
  .reason-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .photo-consult .consult-photo {
    order: 2;
  }

  .consult-steps {
    grid-template-columns: 1fr;
  }

  .comparison-stage {
    min-height: 560px;
    height: 78svh;
  }

  .compare-img {
    object-position: center;
  }

  .compare-before {
    width: calc(100vw - 36px);
  }

  .work-item,
  .work-item.featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-item {
    padding: 22px 0;
  }

  .owner-photo img {
    aspect-ratio: 4 / 3;
  }

  .photo-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 28px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    color: #fff;
    background: var(--green);
  }

  .mobile-cta a:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.22;
    margin-bottom: 18px;
  }

  .lead {
    max-width: 336px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.76;
  }

  .hero-content {
    padding-bottom: 124px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 340px);
    gap: 10px;
  }

  .hero .btn.primary {
    min-height: 52px;
  }

  .hero .btn.ghost {
    min-height: 46px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.46);
  }

  .hero-tags span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-tags span:nth-child(n+4) {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 68px 18px;
  }

  .section h2 {
    font-size: 30px;
  }

  .worry-photo figcaption {
    width: calc(100% - 18px);
    margin-top: -28px;
  }

  .comparison-stage {
    min-height: 500px;
  }

  .flow-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .flow-list span {
    width: 44px;
    height: 44px;
  }
}

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

  .hero-photo,
  .hero-shade,
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero-tags,
  .hero-actions,
  .hero-note,
  .reveal {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }

  .flow-list::before {
    transform: scaleY(1);
  }
}
