@charset "UTF-8";
/* ============================================================
   株式会社Axias  Corporate Site
   Editorial design system
   ============================================================ */

:root {
  --base: #F3F0E9;
  --base-deep: #EAE6DB;
  --ink: #23252C;
  --navy: #2E3650;
  --gold: #A6893B;
  --gold-pale: #C4AE6E;
  --line: rgba(35, 37, 44, .25);
  --line-light: rgba(243, 240, 233, .25);
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --en: "Jost", sans-serif;
  --wordmark: "Cormorant Garamond", "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: .06em;
  font-feature-settings: "palt";
  color: var(--ink);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ---------- English label ---------- */
.en-label {
  font-family: var(--en);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.en-label::before {
  content: "●";
  font-size: 7px;
  transform: translateY(-1px);
}

.sec-head { margin-bottom: 64px; }
.sec-head .en-label { margin-bottom: 22px; }
.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.7;
  letter-spacing: .1em;
}

/* ---------- Fade ---------- */
.js .fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.js .fade.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}
.site-header.is-solid {
  background: rgba(243, 240, 233, .96);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  font-family: var(--wordmark);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--gold);
}
.wordmark small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--ink);
  margin-top: 6px;
}
.hero ~ * .wordmark { color: var(--gold); }
.site-header:not(.is-solid).on-dark .wordmark small { color: rgba(243,240,233,.85); }

.gnav { display: flex; align-items: center; gap: 38px; }
.gnav a {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.gnav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header:not(.is-solid).on-dark .gnav a { color: rgba(243,240,233,.9); }

.header-tel { text-align: right; line-height: 1.5; }
.header-tel .tel-num {
  font-family: var(--en);
  font-size: 17px;
  letter-spacing: .1em;
}
.header-tel .tel-hours { font-size: 10.5px; letter-spacing: .12em; color: rgba(35,37,44,.65); }
.site-header:not(.is-solid).on-dark .header-tel { color: rgba(243,240,233,.9); }
.site-header:not(.is-solid).on-dark .header-tel .tel-hours { color: rgba(243,240,233,.65); }

/* hamburger */
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 220;
}
.menu-btn span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1px;
  background: var(--ink);
  transition: transform .4s ease, opacity .4s ease, background .4s ease;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 26px; }
.site-header:not(.is-solid).on-dark .menu-btn span { background: var(--base); }
.menu-btn.is-open span { background: var(--base); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(20deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-20deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--base);
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.mobile-menu a span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: none;
  color: rgba(243,240,233,.55);
  text-align: center;
  margin-top: 4px;
}
body.menu-open .site-header {
  z-index: 230;
  background: transparent;
  box-shadow: none;
}
body.menu-open .site-header .wordmark { color: var(--gold-pale); }
body.menu-open .site-header .wordmark small { color: rgba(243,240,233,.85); }
.mobile-menu .mm-tel { margin-top: 26px; text-align: center; color: var(--base); }
.mobile-menu .mm-tel .tel-num { font-family: var(--en); font-size: 22px; letter-spacing: .08em; }
.mobile-menu .mm-tel .tel-hours { font-size: 11px; color: rgba(243,240,233,.6); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 9s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(15deg, rgba(23,25,34,.62) 0%, rgba(23,25,34,.18) 55%, rgba(23,25,34,.05) 100%);
}

.hero-inner {
  position: absolute;
  left: clamp(28px, 6vw, 90px);
  bottom: clamp(60px, 12vh, 130px);
  color: var(--base);
  z-index: 2;
}
.hero-tagline {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 26px;
}
.hero-copy {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.75;
  letter-spacing: .12em;
  text-shadow: 0 2px 30px rgba(23,25,34,.45);
}
.hero-sub {
  margin-top: 24px;
  font-size: 13.5px;
  letter-spacing: .14em;
  color: rgba(243,240,233,.85);
}

.scroll-sign {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: 0;
  z-index: 2;
  color: rgba(243,240,233,.8);
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-sign::after {
  content: "";
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(243,240,233,.9), rgba(243,240,233,0));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Marquee
   ============================================================ */
.collage {
  padding: 90px 0;
  overflow: hidden;
}
.collage-inner { display: flex; width: max-content; }
.collage-track {
  display: flex;
  animation: marquee 46s linear infinite;
}
.collage:hover .collage-track { animation-play-state: paused; }
.collage-track figure {
  width: clamp(240px, 26vw, 380px);
  aspect-ratio: 3 / 2;
  margin-right: clamp(20px, 2.4vw, 36px);
  overflow: hidden;
  flex-shrink: 0;
}
.collage-track img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .collage-track { animation: none; }
  .hero-bg img { animation: none; transform: none; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 130px 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: .12em;
}
.etymology { border-top: 1px solid var(--line); }
.etymology dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 28px;
  padding: 26px 6px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.etymology dt {
  font-family: var(--wordmark);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
}
.etymology dd { font-size: 14px; line-height: 2.2; }
.about-text p + p { margin-top: 28px; }

/* ---------- Dark band / Message ---------- */
.message {
  position: relative;
  color: var(--base);
  overflow: hidden;
}
.message-bg { position: absolute; inset: 0; }
.message-bg img { width: 100%; height: 100%; object-fit: cover; }
.message-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(28, 32, 48, .82);
}
.message .container { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: clamp(40px, 7vw, 110px); }
.message-side {
  writing-mode: vertical-rl;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.message-side::before {
  content: "";
  width: 1px;
  height: 86px;
  background: var(--gold-pale);
  opacity: .6;
}
.message-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: .12em;
  line-height: 1.9;
  margin-bottom: 46px;
}
.message-excuses {
  border-left: 1px solid var(--line-light);
  padding-left: 34px;
  margin: 40px 0;
}
.message-excuses li {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .12em;
  line-height: 2.4;
  color: rgba(243,240,233,.78);
}
.message-body { max-width: 720px; }
.message-body p { color: rgba(243,240,233,.92); }
.message-body p + p { margin-top: 26px; }
.message-body strong { font-weight: 500; color: var(--gold-pale); }

/* ---------- Service ---------- */
.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.service-item:nth-child(even) .service-photo { order: 2; }
.service-photo { overflow: hidden; }
.service-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
}
.service-item:hover .service-photo img { transform: scale(1.04); }
.service-num {
  font-family: var(--en);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.service-num::after { content: ""; height: 1px; width: 44px; background: var(--gold); opacity: .55; }
.service-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .12em;
  line-height: 1.8;
  margin-bottom: 12px;
}
.service-name-en {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(35,37,44,.55);
  margin-bottom: 26px;
}
.service-text { font-size: 14.5px; }

/* ---------- Company ---------- */
.company { background: var(--base-deep); }
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 6vw, 90px);
  align-items: start;
}
.fact-list { border-top: 1px solid var(--line); }
.fact-list dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 30px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
}
.fact-list dt {
  font-size: 12.5px;
  letter-spacing: .18em;
  color: rgba(35,37,44,.6);
  padding-top: 3px;
}
.fact-list dd { font-size: 14px; line-height: 2.1; }
.fact-list dd a { border-bottom: 1px solid var(--line); transition: border-color .3s; }
.fact-list dd a:hover { border-color: var(--gold); }
.fact-list dd ul li { position: relative; padding-left: 16px; }
.fact-list dd ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.company-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(.85) sepia(.08);
  display: block;
}
.company-map figcaption {
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(35,37,44,.6);
  margin-top: 14px;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--navy);
  color: var(--base);
  text-align: center;
}
.cta .en-label { justify-content: center; color: var(--gold-pale); }
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .14em;
  margin: 24px 0 18px;
}
.cta-note { font-size: 13.5px; color: rgba(243,240,233,.75); margin-bottom: 52px; }
.cta-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line-light);
}
.cta-col { padding: 46px 30px; }
.cta-col + .cta-col { border-left: 1px solid var(--line-light); }
.cta-col-label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 18px;
}
.cta-tel {
  font-family: var(--en);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: .08em;
  line-height: 1.3;
  color: var(--base);
}
.cta-hours { font-size: 12px; letter-spacing: .14em; color: rgba(243,240,233,.65); margin-top: 8px; }

/* ---------- Outline button ---------- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding-bottom: 2px;
}
.btn-outline .arrow {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .4s ease, color .4s ease, transform .4s ease;
  flex-shrink: 0;
}
.btn-outline .arrow svg { width: 15px; height: 10px; }
.btn-outline:hover .arrow { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateX(4px); }
.cta .btn-outline { color: var(--base); margin-top: 10px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(243,240,233,.8);
  padding: 80px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243,240,233,.14);
}
.site-footer .wordmark { color: var(--gold-pale); }
.site-footer .wordmark small { color: rgba(243,240,233,.6); }
.footer-address { font-size: 12.5px; line-height: 2.2; margin-top: 22px; letter-spacing: .1em; }
.footer-nav { display: flex; gap: 34px; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold-pale); }
.copyright {
  margin-top: 36px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(243,240,233,.45);
  text-align: center;
}

/* ============================================================
   Sub pages (contact / privacy)
   ============================================================ */
.page-hero {
  padding: 190px 0 90px;
  background: var(--base-deep);
}
.page-hero .en-label { margin-bottom: 20px; }
.page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: .12em;
  line-height: 1.7;
}

/* ---------- Form ---------- */
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-lead { margin-bottom: 56px; }
.form-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.form-steps li {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(35,37,44,.4);
  display: flex;
  align-items: center;
}
.form-steps li.is-current { color: var(--gold); }
.form-steps li + li::before {
  content: "";
  width: 46px; height: 1px;
  background: var(--line);
  margin: 0 18px;
}
.field { border-top: 1px solid var(--line); padding: 30px 4px; }
.field:last-of-type { border-bottom: 1px solid var(--line); }
.field-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.field-label .req {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--base);
  background: var(--gold);
  padding: 2px 10px;
}
.field-label .opt {
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(35,37,44,.55);
  border: 1px solid var(--line);
  padding: 1px 9px;
}
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #FDFCF9;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A6893B' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field textarea { min-height: 190px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-note { font-size: 12px; color: rgba(35,37,44,.55); margin-top: 8px; line-height: 1.9; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-error {
  border: 1px solid rgba(160, 60, 40, .5);
  color: #8C3A26;
  padding: 18px 24px;
  font-size: 13.5px;
  margin-bottom: 40px;
  line-height: 2;
}
.confirm-value { font-size: 15px; line-height: 2.2; white-space: pre-wrap; }

.form-actions {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.btn-submit .jp { font-family: var(--sans); font-size: 14px; letter-spacing: .2em; }
.btn-submit .arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .4s, color .4s, border-color .4s, transform .4s;
}
.btn-submit .arrow svg { width: 15px; height: 10px; }
.btn-submit:hover .arrow { background: var(--gold); border-color: var(--gold); color: var(--base); transform: translateX(4px); }
.btn-back {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
  color: rgba(35,37,44,.6);
  border-bottom: 1px solid var(--line);
  padding: 0 2px 3px;
}
.btn-back:hover { color: var(--ink); }

.thanks-box { text-align: center; padding: 20px 0 30px; }
.thanks-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: .14em;
  margin-bottom: 30px;
}
.thanks-box p { margin-bottom: 40px; }

/* ---------- Privacy ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: .12em;
  line-height: 1.8;
  margin: 64px 0 22px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 20px; font-size: 14.5px; }
.prose ul { margin: 0 0 20px; }
.prose ul li { position: relative; padding-left: 18px; font-size: 14.5px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 7px; height: 1px;
  background: var(--gold);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .gnav, .header-tel { display: none; }
  .menu-btn { display: block; }
  .site-header { padding: 18px 20px; }
  .site-header.is-solid { padding: 12px 20px; }
  .about-grid, .company-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-item { grid-template-columns: 1fr; gap: 34px; padding: 64px 0; }
  .service-item:nth-child(even) .service-photo { order: 0; }
  .message .container { grid-template-columns: 1fr; gap: 40px; }
  .message-side { writing-mode: horizontal-tb; }
  .message-side::before { width: 46px; height: 1px; align-self: center; }
  .cta-cols { grid-template-columns: 1fr; }
  .cta-col + .cta-col { border-left: 0; border-top: 1px solid var(--line-light); }
}

@media (max-width: 600px) {
  body { font-size: 14px; line-height: 2.2; }
  .container { padding: 0 24px; }
  .section { padding: 90px 0; }
  .sec-head { margin-bottom: 44px; }
  .hero { min-height: 560px; }
  .hero-inner { left: 24px; right: 24px; bottom: 76px; }
  .collage { padding: 60px 0; }
  .page-hero { padding: 140px 0 60px; }
  .etymology dl { grid-template-columns: 90px 1fr; }
  .fact-list dl { grid-template-columns: 1fr; gap: 2px; padding: 16px 4px; }
  .fact-list dt { padding-top: 0; }
  .company-map iframe { height: 320px; }
  .form-steps li + li::before { width: 24px; margin: 0 10px; }
  .footer-grid { flex-direction: column; }
}
