:root {
  --color-navy-950: #071b33;
  --color-navy-900: #0b2342;
  --color-navy-800: #12365c;
  --color-teal-600: #138a8a;
  --color-teal-500: #1aa5a3;
  --color-gold-500: #d4a84f;
  --color-gold-100: #f6eddc;
  --color-ink-900: #182434;
  --color-ink-700: #42546d;
  --color-ink-500: #627086;
  --color-border: rgba(17, 39, 68, 0.12);
  --color-surface: #ffffff;
  --color-surface-soft: #f4f7fb;
  --color-surface-deep: #eaf3f5;
  --color-success: #0d8f6d;
  --shadow-lg: 0 24px 60px rgba(7, 27, 51, 0.16);
  --shadow-md: 0 16px 36px rgba(7, 27, 51, 0.12);
  --shadow-sm: 0 10px 24px rgba(7, 27, 51, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 32px));
  --font-ui: "Aptos", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-display: "Yu Gothic", "PingFang TC", "Noto Sans TC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--color-ink-900);
  background:
    radial-gradient(circle at top right, rgba(26, 165, 163, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fafc 0%, #f3f6fb 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(19, 138, 138, 0.06) 0%, rgba(244, 247, 251, 0.9) 100%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-teal-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-head {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-head h2,
.section-head h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--color-ink-700);
  font-size: 1.02rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-teal-500), var(--color-teal-600));
}

.btn-secondary {
  color: var(--color-navy-900);
  border-color: rgba(11, 35, 66, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.btn-dark {
  color: #fff;
  background: var(--color-navy-900);
}

.btn-link {
  color: var(--color-teal-600);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 253, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 39, 68, 0.06);
}

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

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

.brand img {
  width: 156px;
  height: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 165, 163, 0.16), rgba(212, 168, 79, 0.22));
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  width: 28px;
  height: 28px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.site-header.is-open .site-nav {
  display: block;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--color-ink-700);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-navy-900);
  background: rgba(19, 138, 138, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(17, 39, 68, 0.1);
  background: rgba(255, 255, 255, 0.86);
}

.lang-switch button {
  min-width: 54px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--color-ink-700);
  background: transparent;
  font-weight: 700;
}

.lang-switch button.is-active {
  color: #fff;
  background: var(--color-navy-900);
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 39, 68, 0.12);
  border-radius: 14px;
  background: #fff;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-navy-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  transform: translateY(0);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.site-header.is-open .menu-toggle span {
  opacity: 0;
}

.site-header.is-open .menu-toggle::before {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg,
  rgba(5, 21, 40, 0.70) 0%,
  rgba(5, 21, 40, 0.60) 25%,
  rgba(8, 29, 54, 0.40) 50%,
  rgba(10, 34, 60, 0.15) 75%,
  rgba(10, 34, 60, 0.05) 100%
  ),
  url("../images/hero/hero-taichung.jpg") center/cover no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 18, 35, 0.12) 0%, rgba(4, 18, 35, 0.3) 100%),
    radial-gradient(circle at 18% 28%, rgba(17, 39, 68, 0.14) 0%, rgba(17, 39, 68, 0) 48%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 79, 0.24) 0%, rgba(212, 168, 79, 0) 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 24px;
  padding: 96px 0 80px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.hero-right-panel {
  display: grid;
  gap: 0;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(7, 26, 49, 0.34);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-illustration-wrap {
  display: grid;
  place-items: center;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

.hero-illustration {
  margin: 0;
  width: 100%;
}

.hero-illustration img {
  display: block;
  width: min(100%, 290px);
  max-width: 290px;
  height: 192px;
  margin: 0 auto;
  border-radius: 22px 22px 0 0;
  object-fit: contain;
  background: rgba(245, 249, 252, 0.92);
  filter: drop-shadow(0 18px 34px rgba(2, 12, 27, 0.24));
}

.hero-check-card {
  width: 100%;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  background: linear-gradient(180deg, rgba(7, 26, 49, 0.56), rgba(7, 26, 49, 0.72));
}

/* 只对繁体中文生效 */
html[lang="zh-Hant"] .hero-check-card {
  white-space: nowrap;
}

/* 英文恢复正常（其实默认就是 normal） */
html[lang="en"] .hero-check-card {
  white-space: normal;
}


.hero-check-card h2,
.hero-check-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-check-card p,
.hero-check-card li {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-check-card ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-check-card li,
.feature-list li,
.contact-list li {
  display: flex;
  gap: 10px;
}

.hero-check-card li::before,
.feature-list li::before,
.contact-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--color-gold-500);
}

.card-grid,
.stats-grid,
.trust-grid,
.case-grid,
.office-grid,
.steps-grid,
.contact-grid,
.service-grid,
.pain-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.card,
.panel,
.faq-item,
.office-card,
.contact-card,
.step-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.card h3,
.panel h3,
.faq-question,
.contact-card h3,
.step-card h3,
.case-card h3 {
  margin: 0 0 12px;
}

.card p,
.panel p,
.contact-card p,
.step-card p,
.case-card p,
.office-card p {
  margin: 0;
  color: var(--color-ink-700);
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 243, 245, 0.88));
  border: 1px solid rgba(17, 39, 68, 0.08);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-navy-900);
  font-size: 1.7rem;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d9e4ec;
  box-shadow: var(--shadow-md);
}

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

.media-frame.tall {
  min-height: 360px;
}

.split-layout,
.content-grid {
  display: grid;
  gap: 28px;
}

.service-visual {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(19, 138, 138, 0.08), rgba(255, 255, 255, 0.9));
}

.service-card,
.pain-card,
.trust-card,
.case-card,
.step-card {
  height: 100%;
}

.service-card small,
.pain-card small,
.trust-card small,
.contact-card small,
.step-card small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-teal-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.icon-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.process-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(17, 39, 68, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
}

.process-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-teal-500), var(--color-navy-800));
}

.process-item div {
  display: grid;
  gap: 6px;
}

.process-item p {
  margin: 0;
  color: var(--color-ink-700);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-navy-900);
  background: var(--color-gold-100);
  font-size: 0.9rem;
  font-weight: 700;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.case-card .media-frame {
  min-height: 240px;
  border-radius: 0;
  box-shadow: none;
}

.case-content {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.case-meta {
  display: grid;
  gap: 10px;
}

.case-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(17, 39, 68, 0.12);
}

.case-meta span:first-child {
  color: var(--color-ink-500);
}

.case-meta span:last-child {
  text-align: right;
  font-weight: 700;
}

.note {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 79, 0.2);
  color: var(--color-ink-700);
  background: linear-gradient(180deg, rgba(246, 237, 220, 0.72), rgba(255, 255, 255, 0.92));
}

.form-shell {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(234, 243, 245, 0.94));
  border: 1px solid rgba(17, 39, 68, 0.08);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--color-navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 39, 68, 0.14);
  border-radius: 14px;
  color: var(--color-ink-900);
  background: rgba(255, 255, 255, 0.96);
}

.field textarea {
  min-height: 130px;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(26, 165, 163, 0.2);
  border-color: rgba(26, 165, 163, 0.5);
}

.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--color-navy-900);
  background: rgba(11, 35, 66, 0.1);
  border: 1px solid rgba(11, 35, 66, 0.14);
}

.form-feedback.is-visible {
  display: block;
}

.btn-form-line {
  color: #fff;
  border-color: #0b2f4a;
  background: linear-gradient(135deg, #123a5a, #0b2f4a);
}

.form-shell > :only-child {
  grid-column: 1 / -1;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  color: var(--color-navy-900);
  text-align: left;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-teal-600);
  font-size: 1.4rem;
}

.faq-item.is-open .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--color-ink-700);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero-card {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11, 35, 66, 0.98), rgba(18, 54, 92, 0.92));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.page-hero-card h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-card .media-frame {
  min-height: 260px;
  box-shadow: none;
}

.office-card .media-frame,
.contact-card .media-frame {
  min-height: 220px;
  margin-bottom: 18px;
}

.cta-band {
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 79, 0.22), transparent 32%),
    linear-gradient(135deg, #0b2342, #12365c 72%);
  box-shadow: var(--shadow-lg);
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 12px;
}

.cta-band p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list,
.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  border: 1px dashed rgba(17, 39, 68, 0.18);
  border-radius: var(--radius-xl);
  color: var(--color-ink-500);
  background:
    linear-gradient(135deg, rgba(19, 138, 138, 0.05), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(45deg, rgba(17, 39, 68, 0.02) 0, rgba(17, 39, 68, 0.02) 12px, transparent 12px, transparent 24px);
  text-align: center;
}

.map-embed {
  overflow: hidden;
  border: 1px solid rgba(17, 39, 68, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: #dfe8ef;
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.site-footer {
  padding: 32px 0 40px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top left, rgba(26, 165, 163, 0.16), transparent 28%),
    linear-gradient(180deg, #09182b 0%, #07111d 100%);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 160px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-disclaimer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.floating-line {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #17b17c, #108763);
  box-shadow: 0 18px 36px rgba(16, 135, 99, 0.3);
  font-weight: 800;
}

.floating-line::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

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

@media (max-width: 767px) {
  .header-actions .btn-primary {
    display: none;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid,
  .split-layout,
  .content-grid,
  .page-hero-card,
  .form-shell,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .pain-grid,
  .service-grid,
  .trust-grid,
  .faq-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-grid.four-up,
  .pain-grid.four-up,
  .trust-grid.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-left: auto;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .brand-mark {
    display: flex;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.4fr 0.86fr;
    padding: 122px 0 100px;
    min-height: 720px;
    align-items: end;
  }

  .hero-right-panel {
    align-self: end;
  }

  .hero-illustration-wrap {
    width: 100%;
  }

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

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 767px) {
  .hero {
    background-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 35, 0.24) 0%, rgba(4, 18, 35, 0.44) 100%),
      linear-gradient(110deg, rgba(5, 20, 38, 0.58) 0%, rgba(8, 29, 54, 0.38) 54%, rgba(10, 34, 60, 0.24) 100%);
  }

  .hero-grid {
    padding: 88px 0 72px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  .hero-right-panel {
    border-radius: 24px;
  }

  .hero-illustration-wrap {
    padding: 14px 14px 0;
  }

  .hero-illustration img {
    max-width: 260px;
    height: 176px;
  }

  .map-embed iframe {
    height: 320px;
  }

  html[lang="en"] .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.9rem, 8vw, 2.9rem);
  }
}

html[lang="en"] .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
