:root {
  --red: #d71920;
  --red-dark: #a80f16;
  --blue: #0066a6;
  --yellow: #f6cf17;
  --ink: #1f2328;
  --muted: #626a73;
  --line: #e6e8eb;
  --soft: #f5f6f8;
  --white: #ffffff;
  --dark: #2d3035;
  --shadow: 0 14px 36px rgba(31, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  background: var(--white);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 74%, rgba(246, 207, 23, 0.16) 74% 77%, transparent 77% 100%),
    linear-gradient(112deg, transparent 0 84%, rgba(0, 102, 166, 0.1) 84% 86%, transparent 86% 100%);
}

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

img,
iframe {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 4px solid var(--yellow);
  backdrop-filter: blur(10px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--yellow) 34% 68%, var(--blue) 68% 100%);
}

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

.brand-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #f6cf17;
  box-shadow: 0 0 0 2px rgba(31, 35, 40, 0.1), 8px 8px 0 rgba(0, 102, 166, 0.14);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.3;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.menu-toggle {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--white);
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  background: var(--dark);
}

.global-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  padding: 10px 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.global-nav.is-open {
  display: grid;
  gap: 8px;
}

.global-nav a {
  min-height: 48px;
  padding: 10px 12px;
  font-weight: 700;
  border-radius: 8px;
  background: var(--soft);
}

.global-nav a:hover {
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(11, 13, 18, 0.92) 0 45%, rgba(11, 13, 18, 0.46) 45% 72%, rgba(11, 13, 18, 0.12) 72% 100%),
    url("../images/hero-station.jpg") center / cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-18deg);
}

.hero::before {
  left: -12vw;
  top: 0;
  width: 34vw;
  height: 100%;
  background: linear-gradient(180deg, rgba(215, 25, 32, 0.62), rgba(215, 25, 32, 0.06));
}

.hero::after {
  right: -10vw;
  bottom: 0;
  width: 26vw;
  height: 46%;
  background: rgba(246, 207, 23, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 88px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 19px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--blue));
  transform: skewX(-24deg);
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #fff1a6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.hero-tags span {
  padding: 8px 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.3;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 7px 7px 0 rgba(31, 35, 40, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(31, 35, 40, 0.18);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.button.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), #111318);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 72px 0;
}

.section-light {
  background:
    linear-gradient(112deg, transparent 0 78%, rgba(246, 207, 23, 0.2) 78% 82%, transparent 82% 100%),
    var(--soft);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(215, 25, 32, 0.78) 0 22%, transparent 22% 100%),
    linear-gradient(135deg, #1d2026, #101216);
}

.section-heading {
  margin-bottom: 28px;
}

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

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

p {
  margin: 0 0 16px;
}

.card-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.card,
.service-card,
.detail-card,
.contact-card,
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 35, 40, 0.06);
}

.card::before,
.service-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -36px;
  width: 92px;
  height: 100%;
  background: linear-gradient(180deg, rgba(246, 207, 23, 0.3), rgba(0, 102, 166, 0.08));
  transform: skewX(-18deg);
}

.card-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 900;
  font-size: 26px;
}

.service-card {
  border-top: 5px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(31, 35, 40, 0.06), inset 5px 0 0 var(--red);
}

.center {
  justify-content: center;
  text-align: center;
  margin-top: 28px;
}

.split {
  display: grid;
  gap: 22px;
}

.split p {
  font-size: 18px;
}

.info-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-table th,
.info-table td {
  display: block;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.info-table th {
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--blue));
}

.info-table a,
.text-link {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-box {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.map-box.large,
.map-box.large iframe {
  min-height: 420px;
}

.contact-band {
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(112deg, rgba(246, 207, 23, 0.9) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, var(--red-dark), #541015);
}

.contact-band .button.primary {
  background: var(--white);
  color: var(--red-dark);
}

.page-hero {
  padding: 96px 0 72px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(31, 35, 40, 0.94) 0 48%, rgba(31, 35, 40, 0.58) 48% 100%),
    url("../images/placeholder.jpg") center / cover;
}

.page-hero p {
  max-width: 760px;
  font-size: 19px;
}

.delivery-hero {
  background:
    linear-gradient(90deg, rgba(31, 35, 40, 0.92), rgba(31, 35, 40, 0.58)),
    url("../images/placeholder.jpg") center / cover;
}

.detail-list {
  display: grid;
  gap: 18px;
}

.preparing {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.big-phone {
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 12px;
  font: inherit;
  border: 1px solid #cfd4da;
  border-radius: 8px;
  background: var(--white);
}

.form-note {
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  padding: 36px 0 96px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(0, 102, 166, 0.62) 0 18%, transparent 18% 100%),
    #17191d;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

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

.footer-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-height: 62px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta.phone {
  left: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.fixed-cta.map {
  right: 0;
  background: linear-gradient(135deg, var(--blue), var(--dark));
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 78px;
  z-index: 31;
  display: none;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  box-shadow: var(--shadow);
}

.back-to-top.is-visible {
  display: block;
}

@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .info-table th,
  .info-table td {
    display: table-cell;
  }

  .info-table th {
    width: 190px;
  }

  .contact-layout,
  .info-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding: 12px 32px;
  }

  .menu-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .global-nav a {
    min-height: auto;
    padding: 8px 10px;
    background: transparent;
  }

  .global-nav a {
    position: relative;
  }

  .global-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 3px;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0) skewX(-24deg);
    transform-origin: left;
    transition: transform 0.18s ease;
  }

  .global-nav a:hover::after {
    transform: scaleX(1) skewX(-24deg);
  }

  .split {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

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

  .fixed-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .button {
    width: 100%;
  }
}
