:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #edf2f6;
  --ink: #122033;
  --text: #4c5a69;
  --line: #d8e0e8;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --rust: #a66f2b;
  --rust-soft: #f3eadc;
  --gold: #c99a3a;
  --hero-ink: #081521;
  --hero-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(18, 32, 51, 0.08);
  --shadow-strong: 0 24px 70px rgba(8, 21, 33, 0.3);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 251, 0.94);
  border-bottom: 1px solid rgba(216, 224, 232, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex: 0 0 auto;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 320px;
  max-width: 42vw;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.brand-mark,
.brand-mobile-name {
  display: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-mobile-name {
  max-width: 150px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #465568;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.06);
}

.lang-button {
  min-width: 50px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5b6979;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  padding: 0 10px;
  transition: background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.lang-button:hover,
.lang-button:focus-visible {
  background: var(--surface-muted);
  color: var(--ink);
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 118, 110, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  place-items: center;
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 3px auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section,
.section-band {
  padding: 88px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 112px));
  display: flex;
  align-items: center;
  border-bottom: 0;
  background: var(--hero-ink);
  color: #dce7ec;
  padding: 92px 0 64px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(118deg, transparent 0 44%, rgba(201, 154, 58, 0.16) 49%, transparent 55%),
    linear-gradient(118deg, transparent 0 58%, rgba(70, 151, 158, 0.14) 62%, transparent 68%);
  opacity: 0;
  transform: translateX(-42%);
}

body[data-motion="enhanced"] .hero::before {
  animation: heroSweep 9s var(--ease) infinite;
}

.hero::after {
  z-index: 3;
  background:
    linear-gradient(112deg, rgba(8, 21, 33, 0.9) 0%, rgba(14, 39, 55, 0.62) 48%, rgba(71, 62, 42, 0.32) 100%),
    linear-gradient(90deg, rgba(8, 21, 33, 0.88), rgba(8, 21, 33, 0.52) 48%, rgba(8, 21, 33, 0.14)),
    linear-gradient(180deg, rgba(8, 21, 33, 0.01), rgba(8, 21, 33, 0.5));
}

.hero-video-bg,
.motion-bg,
.hero-static-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-bg {
  z-index: 0;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.18) contrast(1.08);
  transition: opacity 700ms var(--ease);
}

.motion-bg {
  z-index: 1;
  opacity: 1;
  transition: opacity 500ms var(--ease);
}

.hero-static-pattern {
  z-index: 2;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(255, 255, 255, 0.07) 69px),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, 0.06) 93px),
    linear-gradient(128deg, transparent 0 42%, rgba(201, 154, 58, 0.12) 42.2%, transparent 62%),
    linear-gradient(34deg, transparent 0 48%, rgba(70, 151, 158, 0.16) 48.2%, transparent 70%);
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity: 0.72;
}

body.video-bg-ready .hero-video-bg {
  opacity: 1;
}

body.video-bg-ready .motion-bg {
  opacity: 0.18;
}

body.video-bg-ready .hero-static-pattern {
  opacity: 0.26;
}

body[data-motion="enhanced"] .hero-static-pattern {
  animation: routeGridDrift 26s linear infinite;
}

body[data-motion="light"] .motion-bg,
body[data-motion="reduced"] .motion-bg {
  opacity: 0.82;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 42px;
  width: min(1120px, calc(100% - 40px));
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.6rem;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: #526171;
  font-size: 1.15rem;
}

.hero .eyebrow {
  color: #d8b76f;
}

.hero h1 {
  max-width: 850px;
  color: #ffffff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.hero .hero-lede {
  max-width: 720px;
  color: #dce7ec;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, var(--teal-dark), #083b37);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.3);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.full-width {
  width: 100%;
}

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

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 9px 12px;
  color: #edf6f8;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

.snapshot-card {
  min-height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  padding: 20px;
  backdrop-filter: blur(14px);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.snapshot-card:hover,
.snapshot-card:focus-within {
  border-color: rgba(201, 154, 58, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.snapshot-card span {
  display: block;
  margin-bottom: 14px;
  color: #d8b76f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.2;
}

.snapshot-card p {
  margin: 0;
  color: #d5e0e7;
  font-size: 0.92rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.section-copy {
  color: #526171;
  font-size: 1.05rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.highlight-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.muted {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.accent {
  background: #0f2133;
}

.accent h2,
.accent h3 {
  color: #ffffff;
}

.accent p {
  color: #c9d5df;
}

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

.section-heading.compact {
  max-width: 820px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: #5b6979;
  font-size: 0.98rem;
}

.process-closing {
  border-left: 3px solid rgba(15, 118, 110, 0.22);
  padding-left: 16px;
}

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

.supply-card,
.reason-item {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.supply-card:hover,
.process-step:hover {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 16px 36px rgba(18, 32, 51, 0.08);
  transform: translateY(-3px);
}

.supply-card p,
.reason-item p {
  margin-bottom: 0;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--rust-soft);
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.reason-item {
  min-height: 170px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

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

.fit-card {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
}

.fit-card p {
  margin-bottom: 0;
}

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

.process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.process-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: #ffffff;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.contact-grid > *,
.inquiry-form {
  min-width: 0;
}

.contact-actions {
  margin-top: 28px;
}

.contact-actions .button {
  overflow-wrap: anywhere;
}

.contact-blocks {
  display: grid;
  gap: 14px;
}

.contact-block {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 20px;
  box-shadow: 0 14px 36px rgba(18, 32, 51, 0.05);
}

.contact-block p {
  margin-bottom: 0;
}

.contact-block .button {
  justify-self: start;
  margin-top: 4px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.07);
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading p:last-child {
  margin-bottom: 0;
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.full-span {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  min-height: 50px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.inquiry-form textarea {
  min-height: 150px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #7b8896;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
  opacity: 1;
}

.form-note {
  margin: -4px 0 0;
  color: #647384;
  font-size: 0.9rem;
}

.email-result[hidden] {
  display: none;
}

.email-result {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  background: #f2fbf8;
  padding: 16px;
}

.email-result-title {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.email-result-text {
  margin: 0;
  color: #526173;
  font-size: 0.92rem;
}

.email-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.email-preview {
  min-height: 150px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-copy {
  display: grid;
  gap: 8px;
  max-width: 860px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  color: #5b6979;
  font-size: 0.92rem;
  padding: 22px 0;
}

.footer-inner p {
  margin: 0;
}

.footer-small-print {
  color: #7a8796;
}

.footer-inner a {
  color: var(--teal-dark);
  font-weight: 800;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

body.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-motion="light"].reveal-ready .reveal,
body[data-motion="reduced"].reveal-ready .reveal {
  opacity: 1;
  transform: none;
}

body[data-motion="enhanced"] .hero-copy .eyebrow,
body[data-motion="enhanced"] .hero-copy h1,
body[data-motion="enhanced"] .hero-copy .hero-lede,
body[data-motion="enhanced"] .hero-actions,
body[data-motion="enhanced"] .hero-points,
body[data-motion="enhanced"] .export-snapshot {
  animation: heroRise 760ms var(--ease) both;
}

body[data-motion="enhanced"] .hero-copy h1 {
  animation-delay: 90ms;
}

body[data-motion="enhanced"] .hero-copy .hero-lede {
  animation-delay: 170ms;
}

body[data-motion="enhanced"] .hero-actions {
  animation-delay: 250ms;
}

body[data-motion="enhanced"] .hero-points {
  animation-delay: 330ms;
}

body[data-motion="enhanced"] .export-snapshot {
  animation-delay: 430ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes routeGridDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 68px, 92px 0, 120px 0, -120px 0;
  }
}

@keyframes heroSweep {
  0%,
  26% {
    opacity: 0;
    transform: translateX(-42%);
  }

  34%,
  56% {
    opacity: 1;
  }

  76%,
  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

@media (max-width: 980px) {
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .export-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fit-grid,
  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-logo {
    width: 240px;
    max-width: 46vw;
    max-height: 52px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-button {
    min-width: 46px;
    min-height: 30px;
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px;
  }

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

  .site-nav a {
    border-radius: var(--radius);
    padding: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--surface-muted);
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .hero {
    padding: 68px 0 52px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    gap: 32px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .supply-grid,
  .reason-grid,
  .export-snapshot {
    grid-template-columns: 1fr;
  }

  .supply-card,
  .reason-item,
  .snapshot-card {
    min-height: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-block .button {
    justify-self: stretch;
  }

  .snapshot-card:hover,
  .snapshot-card:focus-within,
  .supply-card:hover,
  .process-step:hover,
  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
  }
}

@media (max-width: 520px) {
  .brand {
    flex: 1 1 auto;
  }

  .brand-logo {
    display: none;
  }

  .brand-mark,
  .brand-mobile-name {
    display: block;
  }

  .brand-mobile-name {
    max-width: 126px;
  }

  .email-result-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 9px;
  }

  .brand-mobile-name {
    max-width: 104px;
    font-size: 0.7rem;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-button {
    min-width: 42px;
    padding: 0 7px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-points {
    display: grid;
  }

  .inquiry-form {
    padding: 18px;
  }

  .inquiry-form input::placeholder,
  .inquiry-form textarea::placeholder {
    font-size: 0.83rem;
  }
}

@media (max-width: 340px) {
  .brand-mobile-name {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
