:root {
  --green: #1f6b38;
  --green-dark: #114826;
  --green-soft: #e8f2e9;
  --orange: #f36f32;
  --orange-dark: #c94e1f;
  --ink: #172019;
  --muted: #5d695f;
  --line: #d7e2d8;
  --paper: #ffffff;
  --canvas: #f6f8f2;
  --cream: #fffaf0;
  --shadow: 0 22px 70px rgba(24, 55, 34, 0.14);
  --motion-fast: 160ms;
  --motion-base: 260ms;
  --motion-slow: 720ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.75;
  line-break: strict;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.intro-enabled body.intro-pending {
  overflow: hidden;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(246, 248, 242, 0.98) 52%, rgba(232, 242, 233, 0.98) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo-text {
  color: var(--green-dark);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  filter: blur(8px);
}

.intro-enabled body.intro-active .intro-loader {
  visibility: visible;
  pointer-events: auto;
  animation: introOverlay 6.4s linear both;
}

.intro-enabled body.intro-active .intro-logo-text {
  animation: introLogoText 5.1s linear both;
}

.intro-enabled body.intro-pending .site-header,
.intro-enabled body.intro-pending .hero {
  opacity: 0;
  transform: scale(1.016);
  filter: blur(18px);
}

.intro-enabled body.intro-revealing .site-header,
.intro-enabled body.intro-revealing .hero {
  animation: introFirstView 2.15s linear both;
}

@keyframes introLogoText {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(10px);
  }
  36% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  62% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(1.015);
    filter: blur(8px);
  }
}

@keyframes introOverlay {
  0%,
  53% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes introFirstView {
  0% {
    opacity: 0;
    transform: scale(1.016);
    filter: blur(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 8px 12px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 4px;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(31, 107, 56, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 4px;
  transform: rotate(-18deg);
}

.brand-mark i {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 4px 8px 4px 8px;
}

.brand-mark i:nth-child(2) {
  background: var(--orange);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #223329;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  padding: 8px 0;
  position: relative;
  transition: color var(--motion-fast) ease;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-out);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--green);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch button {
  min-width: 38px;
  min-height: 34px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.lang-switch button.is-active {
  color: #fff;
  background: var(--green);
}

.lang-switch button {
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.lang-switch button:active {
  transform: scale(0.96);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform var(--motion-base) var(--ease-out), opacity var(--motion-fast) ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--motion-base) var(--ease-out),
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-base) ease;
  will-change: transform;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(243, 111, 50, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(243, 111, 50, 0.28);
}

.btn-outline {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(31, 107, 56, 0.42);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--green);
  box-shadow: 0 12px 26px rgba(31, 107, 56, 0.13);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: #dfe9df;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 248, 242, 0.99) 0%, rgba(246, 248, 242, 0.94) 36%, rgba(246, 248, 242, 0.22) 66%, rgba(246, 248, 242, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08));
}

@keyframes heroTextRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  animation: heroImageIn 1100ms var(--ease-out) both;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  padding: 56px 0 72px;
}

.hero-content > * {
  animation: heroTextRise 680ms var(--ease-out) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 320ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.section-title {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(34px, 4.3vw, 50px);
  line-height: 1.12;
}

.i18n-line {
  display: block;
}

html[lang="ja"] .hero h1 .i18n-line,
html[lang="ja"] .section-title .i18n-line {
  text-wrap: nowrap;
  white-space: nowrap;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #26342a;
  font-size: 18px;
  font-weight: 700;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 9px 12px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 107, 56, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out),
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
  will-change: opacity, transform;
}

.motion-ready .reveal-target.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
}

.section-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.about-copy p + p {
  margin-top: 16px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.business-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-base) var(--ease-out),
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.business-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter var(--motion-base) ease;
}

.business-card:hover,
.business-card:focus-within {
  border-color: rgba(31, 107, 56, 0.36);
  box-shadow: 0 28px 78px rgba(24, 55, 34, 0.18);
  transform: translateY(-6px);
}

.business-card:hover img,
.business-card:focus-within img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.business-card-body {
  padding: 22px;
}

.status-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-label.planned {
  color: #7d3818;
  background: #fff0e8;
}

.business-card h3 {
  margin: 14px 0 8px;
  font-size: 23px;
  line-height: 1.35;
  text-wrap: balance;
  word-break: keep-all;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.business-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.flow-section {
  background: linear-gradient(135deg, #173f27 0%, #24693b 100%);
  color: #fff;
}

.flow-section .section-kicker,
.flow-section .section-title,
.flow-section .section-lead {
  color: #fff;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.flow-steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  transition:
    transform var(--motion-base) var(--ease-out),
    background var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.flow-steps li::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 19px;
  width: 3px;
  background: rgba(255, 199, 169, 0.58);
  border-radius: 999px;
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 620ms var(--ease-out);
}

.flow-steps li.is-inview::before,
.flow-steps li:hover::before {
  transform: scaleY(1);
}

.flow-steps li:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateX(4px);
}

.flow-steps span {
  position: relative;
  grid-row: 1 / span 2;
  color: #ffc7a9;
  font-size: 14px;
  font-weight: 900;
  z-index: 1;
}

.flow-steps strong {
  font-size: 20px;
}

.flow-steps p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.work-section {
  background: var(--paper);
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 46px;
  align-items: start;
}

.work-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.consult-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.consult-options a,
.contact-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(31, 107, 56, 0.18);
  border-radius: 6px;
  font-weight: 900;
  transition:
    transform var(--motion-base) var(--ease-out),
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-base) ease;
}

.consult-options a::after,
.contact-links a::after,
.business-card a::after {
  content: ">";
  margin-left: 10px;
  transition: transform var(--motion-base) var(--ease-out);
}

.consult-options a:hover,
.consult-options a:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
  background: #fff;
  border-color: rgba(31, 107, 56, 0.42);
  box-shadow: 0 12px 28px rgba(31, 107, 56, 0.1);
  transform: translateX(4px);
}

.consult-options a:hover::after,
.consult-options a:focus-visible::after,
.contact-links a:hover::after,
.contact-links a:focus-visible::after,
.business-card a:hover::after,
.business-card a:focus-visible::after {
  transform: translateX(4px);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  padding: 20px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform var(--motion-base) var(--ease-out),
    background var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.support-list article:hover {
  background: #fff;
  border-color: rgba(31, 107, 56, 0.32);
  transform: translateY(-3px);
}

.support-list strong {
  display: block;
  font-size: 19px;
}

.support-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    background var(--motion-base) ease,
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--motion-base) var(--ease-out),
    background var(--motion-base) ease,
    color var(--motion-base) ease;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 600;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out);
}

.faq-list details[open] {
  background: #fff;
  border-color: rgba(31, 107, 56, 0.32);
  box-shadow: 0 18px 46px rgba(24, 55, 34, 0.09);
}

.faq-list details[open] summary::after {
  color: #fff;
  background: var(--green);
  content: "-";
  transform: rotate(180deg);
}

.faq-list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    box-shadow var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.contact-form:focus-within {
  border-color: rgba(31, 107, 56, 0.34);
  box-shadow: 0 28px 78px rgba(24, 55, 34, 0.17);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9d8cb;
  border-radius: 6px;
  outline: none;
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fbfffb;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 107, 56, 0.12);
}

.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.privacy-check input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--green);
  transition: box-shadow var(--motion-fast) ease;
}

.privacy-check input:checked {
  box-shadow: 0 0 0 4px rgba(31, 107, 56, 0.12);
}

.privacy-check a {
  color: var(--green-dark);
  text-decoration: underline;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
  opacity: 1;
  transition: color var(--motion-fast) ease, opacity var(--motion-base) ease;
}

.form-status.is-error {
  color: #a3341b;
}

.contact-submit.is-sending {
  cursor: wait;
  opacity: 0.72;
}

.floating-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(17, 72, 38, 0.3);
  font-weight: 900;
  opacity: 0;
  transform: translateY(90px) scale(0.96);
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out),
    background var(--motion-fast) ease,
    box-shadow var(--motion-base) ease;
}

body.chat-visible .floating-chat {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-chat:hover,
.floating-chat:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 20px 48px rgba(17, 72, 38, 0.36);
  transform: translateY(-2px) scale(1);
}

.site-footer {
  padding: 36px 0;
  color: #dbe8dd;
  background: var(--green-dark);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer .brand,
.site-footer p {
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-nav,
  .header-actions .btn-small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions {
    margin-left: 0;
  }

  .site-header.nav-open .header-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    animation: menuDrop var(--motion-base) var(--ease-out) both;
  }

  .site-header.nav-open .header-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .business-grid,
  .about-grid,
  .flow-layout,
  .work-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .business-grid {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    width: min(100% - 20px, 1220px);
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    font-size: 19px;
  }

  .hero {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    background: var(--canvas);
  }

  .hero-media {
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(260px, 72vw, 330px);
  }

  .hero-image {
    object-fit: cover;
    object-position: center 60%;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    order: 2;
    position: relative;
    z-index: 1;
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 28px 0 36px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-ctas {
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.25;
  }

  #work-title {
    font-size: 25px;
  }

  .business-card h3 {
    font-size: 21px;
  }

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

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-chat {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
