:root {
  --ink: #17212b;
  --muted: #637083;
  --line: #dfe5ec;
  --paper: #ffffff;
  --mist: #f5f8f7;
  --sky: #d9edf7;
  --teal: #247c7d;
  --teal-dark: #175b61;
  --coral: #c96f57;
  --gold: #d0a24b;
  --shadow: 0 18px 50px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Noto Sans SC",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 229, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 30px);
  color: #263544;
  font-size: 0.95rem;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  min-height: 32px;
  padding: 5px 10px;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  color: white;
  background: var(--teal);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 76px) 92px;
}

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

.hero picture img {
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(1.14) contrast(1.05) brightness(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 22, 28, 0.66), rgba(10, 22, 28, 0.28) 46%, rgba(10, 22, 28, 0.02)),
    linear-gradient(0deg, rgba(245, 248, 247, 0.18), rgba(245, 248, 247, 0));
}

.hero-content {
  position: relative;
  max-width: 680px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd07d;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.92;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.05rem, 4.3vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-copy {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn.primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(216, 92, 69, 0.28);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.contact-form .btn.secondary {
  color: var(--teal-dark);
  border-color: rgba(11, 125, 137, 0.24);
  background: rgba(232, 244, 242, 0.92);
}

.btn.ghost {
  color: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.feature-item {
  min-height: 220px;
  padding: 36px clamp(20px, 3vw, 38px);
  background: var(--paper);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  font-weight: 800;
  background: var(--teal);
  border-radius: 8px;
}

.feature-item h2,
.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.feature-item p,
.service-card p,
.section-heading p,
.review-card p,
.contact-copy p,
.language-card p,
.policy-card p {
  color: var(--muted);
}

.section {
  padding: 92px clamp(20px, 6vw, 76px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.06);
}

.service-card.featured {
  border-color: rgba(11, 125, 137, 0.32);
}

.card-media {
  min-height: 170px;
  filter: saturate(1.18) contrast(1.05) brightness(1.04);
  background:
    linear-gradient(135deg, rgba(11, 125, 137, 0.85), rgba(216, 92, 69, 0.72)),
    url("assets/photos/kyoto-real.jpg") center / cover;
}

.card-media.service-fuji {
  background:
    linear-gradient(135deg, rgba(22, 73, 80, 0.08), rgba(201, 111, 87, 0.16)),
    url("assets/photos/fuji-lake-real.jpg") center / cover;
}

.card-media.service-group {
  background:
    linear-gradient(135deg, rgba(22, 73, 80, 0.1), rgba(208, 162, 75, 0.16)),
    url("assets/photos/fuji-travel-real.jpg") center / cover;
}

.card-media.service-plan {
  background:
    linear-gradient(135deg, rgba(22, 73, 80, 0.04), rgba(201, 111, 87, 0.08)),
    url("assets/photos/kyoto-kimono-street.jpg") center / cover;
}

.card-media.service-arrange {
  background:
    linear-gradient(135deg, rgba(22, 73, 80, 0.12), rgba(208, 162, 75, 0.16)),
    url("assets/photos/hakone-real.jpg") center / cover;
}

.card-media.service-photo {
  background:
    linear-gradient(135deg, rgba(23, 33, 43, 0.08), rgba(11, 125, 137, 0.16)),
    url("assets/photos/kamakura-real.jpg") center / cover;
}

.card-media.service-support {
  background:
    linear-gradient(135deg, rgba(23, 33, 43, 0.08), rgba(201, 111, 87, 0.16)),
    url("assets/photos/nara-real.jpg") center / cover;
}

.card-body {
  padding: 22px;
}

.tag {
  width: max-content;
  margin: 0;
  padding: 4px 9px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  background: #e8f6f6;
  border-radius: 999px;
}

.card-body a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--coral);
  font-weight: 800;
}

.early-fuji {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 247, 0.96)),
    url("assets/photos/fuji-lake-real.jpg") center / cover;
}

.early-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.early-card {
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 236, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 33, 43, 0.08);
}

.early-card span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.early-card.advantage span {
  color: var(--teal-dark);
}

.early-card h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.early-card p {
  color: var(--muted);
}

.early-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.early-note-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 229, 236, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.07);
}

.early-note-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.early-note-card.compliance span {
  color: var(--coral);
}

.early-note-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.early-note-card p {
  margin: 0;
  color: var(--muted);
}

.early-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 28px;
  color: white;
  background: rgba(23, 33, 43, 0.88);
  border-radius: 8px;
}

.early-quote p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
}

.language-section {
  background: white;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.language-card {
  min-height: 260px;
  padding: 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-card span {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--teal-dark);
  font-weight: 900;
  background: white;
  border-radius: 999px;
}

.language-card h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
}

.details {
  background: #fbfaf7;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  scroll-margin-top: 96px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.06);
}

.detail-number {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
}

.detail-card h3 {
  margin: 10px 0 10px;
  font-size: 1.25rem;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.detail-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.works {
  background: var(--mist);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.work-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.work-item.large {
  grid-row: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.06) brightness(1.03);
}

.work-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: white;
  font-weight: 800;
  background: rgba(23, 33, 43, 0.62);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.routes {
  background: white;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.route-copy {
  padding: 34px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.route-copy p {
  color: var(--muted);
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-steps span {
  display: grid;
  min-height: 130px;
  place-items: center;
  color: white;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(36, 124, 125, 0.92), rgba(201, 111, 87, 0.78)),
    url("assets/contact-map.svg") center / cover;
  border-radius: 8px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background: #f8f4ee;
}

.about-photo {
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.05) brightness(1.04);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  padding: 8px 12px;
  color: var(--teal-dark);
  font-weight: 900;
  background: white;
  border: 1px solid rgba(36, 124, 125, 0.18);
  border-radius: 999px;
}

.compliance {
  background: var(--mist);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.policy-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.05);
}

.policy-card.caution {
  border-color: rgba(201, 111, 87, 0.4);
  background: #fff8f4;
}

.policy-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.policy-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.policy-card dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.policy-card dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-card dd {
  margin: 4px 0 0;
  color: var(--ink);
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  min-height: 230px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 33, 43, 0.06);
}

.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.reviews {
  background: white;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  min-height: 250px;
  padding: 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  padding: 92px clamp(20px, 6vw, 76px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 89, 101, 0.94), rgba(23, 33, 43, 0.94)),
    url("assets/contact-map.svg") center / cover;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.instant-contact {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.instant-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.16);
}

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

.instant-card.highlight {
  background: #fff;
  border-color: rgba(216, 92, 69, 0.42);
}

.instant-card strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.instant-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.qr-contact-panel {
  margin-top: 28px;
}

.qr-contact-panel h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.05rem;
}

.qr-contact-lead {
  max-width: 720px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.qr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.qr-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.16);
}

.qr-card.recommended {
  border-color: rgba(216, 92, 69, 0.52);
  box-shadow: 0 18px 42px rgba(216, 92, 69, 0.18);
}

.qr-card img {
  width: min(100%, 190px);
  justify-self: center;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: white;
  border-radius: 6px;
}

.qr-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  background: var(--teal-dark);
  border-radius: 999px;
}

.qr-card strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.qr-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.qr-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--teal);
  border-radius: 6px;
}

.qr-card.recommended .qr-action {
  justify-self: center;
  min-width: 150px;
}

.qr-action:hover {
  transform: translateY(-1px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list span {
  display: block;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #263544;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status.sending,
.form-status.success,
.form-status.error {
  display: block;
}

.form-status.sending {
  color: var(--teal-dark);
  background: rgba(232, 244, 242, 0.92);
}

.form-status.success {
  color: #145a34;
  background: rgba(221, 245, 231, 0.96);
}

.form-status.error {
  color: #8a321d;
  background: rgba(255, 235, 226, 0.96);
}

button:disabled {
  cursor: wait;
  opacity: 0.66;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  opacity: 1;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(90, 109, 123, 0.74);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 125, 137, 0.12);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: #111922;
}

.site-footer a {
  color: white;
  font-weight: 900;
}

@media (max-width: 980px) {
  .feature-band,
  .service-grid,
  .early-grid,
  .early-notes,
  .detail-grid,
  .language-grid,
  .compliance-grid,
  .faq-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .work-item.large,
  .work-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-section,
  .route-panel,
  .about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: 86vh;
    padding-top: 108px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 21, 30, 0.82), rgba(8, 21, 30, 0.34));
  }

  .feature-band,
  .service-grid,
  .early-grid,
  .early-notes,
  .detail-grid,
  .language-grid,
  .compliance-grid,
  .faq-grid,
  .review-grid,
  .works-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .qr-card.recommended {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-card.recommended .qr-label,
  .qr-card.recommended strong,
  .qr-card.recommended small,
  .qr-card.recommended .qr-action,
  .qr-card.recommended img {
    grid-column: 1;
    grid-row: auto;
  }

  .qr-card.recommended .qr-action {
    justify-self: center;
  }

  .qr-card img {
    width: min(100%, 260px);
    justify-self: center;
  }

  .qr-card.recommended img {
    width: min(100%, 320px);
  }

  .works-grid {
    grid-auto-rows: 245px;
  }

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

  .early-quote {
    align-items: stretch;
    flex-direction: column;
  }

  .about-photo,
  .about-photo img {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-stats span,
  .hero-actions .btn {
    width: 100%;
  }

  .section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}
