﻿:root {
  --ink: #15201f;
  --muted: #5d6a68;
  --line: #dce5e0;
  --paper: #fbfaf6;
  --soft: #eef4ef;
  --mint: #2f7d69;
  --mint-dark: #165c4e;
  --gold: #c58b36;
  --coral: #d96b57;
  --blue: #386b8f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(22, 55, 48, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans JP", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(220, 229, 224, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint-dark), var(--gold));
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-logo {
  width: 94px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong { display: block; font-size: 15px; line-height: 1.2; }
.brand small { display: block; color: var(--muted); font-size: 12px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--mint-dark); }

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

.language-switch {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--mint-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
}

.button-primary {
  color: var(--white);
  background: var(--mint-dark);
  box-shadow: 0 10px 24px rgba(22, 92, 78, 0.22);
}

.button-primary:hover { background: #0f4a3f; }

.button-secondary {
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.section-band,
.section-block,
.feature-band,
.split-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 88px) 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.split-copy p,
.contact-copy p,
.feature-band p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.trust-row span,
.social-strip a,
.ota-row a,
.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.hero-visual { min-width: 0; }

.photo-stack {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
  aspect-ratio: 4 / 5;
}

.photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-ticket {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(21, 32, 31, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.service-ticket span,
.service-ticket small { display: block; color: rgba(255, 255, 255, 0.76); }
.service-ticket strong { display: block; margin: 6px 0; font-size: 20px; line-height: 1.2; }

.quick-contact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(980px, calc(100% - 36px));
  margin: -10px auto 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 12px 36px rgba(22, 55, 48, 0.08);
}

.quick-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  background: var(--white);
  font-weight: 800;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.section-block { padding: 72px 0; }
.section-block.compact { padding: 52px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(22, 55, 48, 0.05);
}

.service-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.service-card p { color: var(--muted); margin-bottom: 0; }

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 70px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 92, 78, 0.94), rgba(56, 107, 143, 0.9)),
    url("https://images.unsplash.com/photo-1590559899731-a382839e5549?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.feature-band .eyebrow,
.feature-band p { color: rgba(255, 255, 255, 0.82); }

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

.check-list li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: #f4cf7a;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 58px 0 72px;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ota-row,
.social-strip,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.process-grid div {
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
}

.process-grid strong { font-size: 18px; }
.process-grid p { color: var(--muted); margin-bottom: 0; }

.social-strip {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-top: 34px;
  margin-bottom: 70px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background: var(--soft);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(22, 55, 48, 0.07);
}

.lead-form label { display: grid; gap: 7px; font-weight: 800; }

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form textarea { resize: vertical; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer strong { color: var(--ink); }
.site-footer p { max-width: 620px; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer-links a { color: var(--mint-dark); font-weight: 800; }

@media (max-width: 980px) {
  .fleet-hero-card { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero,
  .feature-band,
  .split-section,
  .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .photo-stack { aspect-ratio: 16 / 11; }
  .service-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .vehicle-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .qr-grid { grid-template-columns: 1fr; }
  .site-header { padding: 12px 16px; }
  .brand { min-width: auto; }
  .header-actions { width: 100%; justify-content: space-between; }
  .language-switch button { padding: 7px 8px; }
  h1 { font-size: 40px; }
  .quick-contact { grid-template-columns: repeat(2, 1fr); }
  .service-grid,
  .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-section { padding: 24px; }
  .site-footer { flex-direction: column; }
}

.service-card.is-secondary {
  min-height: 188px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  opacity: 0.74;
}

.service-card.is-secondary .service-number {
  color: var(--muted);
  margin-bottom: 18px;
}

.company-details {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.company-details a {
  color: var(--mint-dark);
  font-weight: 800;
}



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

.qr-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.qr-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.qr-card strong {
  color: var(--ink);
  font-size: 14px;
}


.stay-listings {
  padding-top: 18px;
}

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

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 55, 48, 0.07);
}

.listing-photo {
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.listing-photo-one {
  background-image:
    linear-gradient(135deg, rgba(22, 92, 78, 0.14), rgba(197, 139, 54, 0.12)),
    url("https://images.unsplash.com/photo-1528360983277-13d401cdc186?auto=format&fit=crop&w=1200&q=80");
}

.listing-photo-two {
  background-image:
    linear-gradient(135deg, rgba(56, 107, 143, 0.14), rgba(217, 107, 87, 0.12)),
    url("https://images.unsplash.com/photo-1555992336-fb0d29498b13?auto=format&fit=crop&w=1200&q=80");
}

.listing-body {
  padding: 22px;
}

.listing-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-address {
  color: var(--muted);
  font-size: 14px;
}

.listing-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.listing-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.listing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.booking-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.booking-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--mint-dark);
  font-weight: 800;
}


.fleet-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 74px;
}

.fleet-hero-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fleet-hero-card > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.fleet-hero-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(145deg, var(--mint-dark), #182422 70%);
}

.fleet-hero-copy span,
.vehicle-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-hero-copy strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.fleet-hero-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 55, 48, 0.07);
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.vehicle-card div {
  padding: 18px;
}

.vehicle-card h3 {
  margin: 5px 0 8px;
  font-size: 20px;
}

.vehicle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.vehicle-featured {
  border-color: rgba(197, 139, 54, 0.55);
}


.vehicle-card[data-href] {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-card[data-href] img {
  transition: transform 220ms ease;
}

.vehicle-card[data-href]:hover,
.vehicle-card[data-href]:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(197, 139, 54, 0.82);
  box-shadow: 0 18px 46px rgba(22, 55, 48, 0.16);
  outline: none;
}

.vehicle-card[data-href]:hover img,
.vehicle-card[data-href]:focus-visible img {
  transform: scale(1.035);
}

.vehicle-card[data-href]:focus-visible {
  box-shadow: 0 0 0 3px rgba(197, 139, 54, 0.24), 0 18px 46px rgba(22, 55, 48, 0.16);
}


.service-card[data-target] {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.service-card[data-target]:hover,
.service-card[data-target]:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(197, 139, 54, 0.82);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(22, 55, 48, 0.14);
  opacity: 1;
  outline: none;
}

.service-card[data-target]:focus-visible {
  box-shadow: 0 0 0 3px rgba(197, 139, 54, 0.24), 0 18px 46px rgba(22, 55, 48, 0.14);
}

.fleet-consult-link {
  width: fit-content;
  margin-top: 8px;
  color: var(--mint-dark);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.fleet-consult-link:hover {
  color: var(--ink);
  background: #f4cf7a;
}

#services,
#fleet,
#stays,
#management,
#contact {
  scroll-margin-top: 92px;
}
