:root {
  color-scheme: light;
  --ink: #171717;
  --text: #343434;
  --muted: #6d6f6a;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --line: #ded8cd;
  --forest: #24463f;
  --clay: #9a6a4f;
  --gold: #b99150;
  --sage: #9aa58d;
  --white: #ffffff;
  --danger: #9b1c31;
  --success: #1f6d48;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: var(--forest);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--clay);
}

:focus-visible {
  outline: 3px solid rgba(185, 145, 80, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(222, 216, 205, 0.75);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--container);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  min-width: 168px;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand span {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.language-switcher span {
  color: var(--muted);
  font-size: 0.9rem;
}

.language-switcher a {
  min-width: 34px;
  padding-inline: 8px;
  text-align: center;
}

.language-switcher a[aria-current="true"] {
  color: var(--white);
  background: var(--forest);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
  font: inherit;
  font-weight: 650;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
button.button:hover {
  color: var(--white);
  background: #18342f;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--forest);
  background: transparent;
}

.button.secondary:hover {
  color: var(--ink);
  background: var(--soft);
}

.button.subtle {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.subtle:hover {
  color: var(--ink);
  background: var(--soft);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container.narrow {
  max-width: 880px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.48) 48%, rgba(17, 17, 17, 0.18));
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 72px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
.display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

.hero-lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 17, 17, 0.36);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  min-height: 90px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h1,
.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.section-header p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section.dark .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 94px 0 62px;
  background: linear-gradient(180deg, var(--paper), var(--soft));
  border-bottom: 1px solid var(--line);
}

.page-hero .section-header {
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.portrait {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-wide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-natural img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.corporate-showcase {
  background: var(--paper);
}

.corporate-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: 0;
}

.corporate-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.corporate-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.corporate-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.panel,
.quote-panel,
.link-panel,
.credential,
.timeline-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.panel {
  padding: 28px;
}

.panel h3,
.link-panel h3,
.credential h3,
.timeline-item h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.panel p,
.link-panel p,
.credential p,
.timeline-item p {
  margin: 0;
}

.panel .meta,
.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.metric {
  padding: 28px;
  border-top: 2px solid var(--gold);
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.metric a,
.credential-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.metric a:hover,
.credential-link:hover {
  color: var(--gold-dark);
}

.quote-panel {
  padding: 36px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.86);
}

.quote-panel blockquote {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.16;
}

.quote-panel cite {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.link-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.link-panel a:last-child {
  margin-top: auto;
  padding-top: 22px;
  font-weight: 700;
}

.credential {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--white);
}

.credential img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 18px;
  background: #f7f3ea;
  padding: 10px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 24px;
}

.timeline-item time {
  color: var(--clay);
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.article-row h3 {
  font-size: 1.18rem;
}

.article-row p {
  max-width: 720px;
  margin: 8px 0 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.media-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.media-grid figure:nth-child(1),
.media-grid figure:nth-child(4) {
  grid-column: span 3;
}

.media-grid figure:nth-child(2),
.media-grid figure:nth-child(3),
.media-grid figure:nth-child(5),
.media-grid figure:nth-child(6) {
  grid-column: span 3;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-section + .gallery-section {
  padding-top: 28px;
}

.legacy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.legacy-gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legacy-gallery-card a {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.legacy-gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 220ms ease;
}

.legacy-gallery-card a:hover img {
  transform: scale(1.025);
}

.gallery-portrait .legacy-gallery-card a {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-portrait .legacy-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-landscape .legacy-gallery-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.gallery-square .legacy-gallery-card img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(48px, 0.12fr) minmax(0, 1fr) minmax(48px, 0.12fr);
  align-items: center;
  gap: 16px;
  padding: 72px 28px 32px;
  background: rgba(17, 17, 17, 0.92);
}

.lightbox-frame {
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-frame img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 6px;
  font: inherit;
}

.lightbox-nav {
  width: 48px;
  height: 58px;
  border-radius: 6px;
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 750;
}

.faq-item div {
  padding: 0 24px 22px;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfc7bb;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 168px;
  resize: vertical;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.form-success-panel {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: 100%;
  padding: 46px 32px;
  border: 1px solid rgba(31, 109, 72, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(31, 109, 72, 0.12), rgba(31, 109, 72, 0.06));
  box-shadow: 0 24px 60px rgba(31, 109, 72, 0.12);
  color: var(--ink);
  text-align: center;
}

.form-success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(31, 109, 72, 0.28);
  border-radius: 18px;
  background: var(--success);
  color: var(--white);
  font-size: 34px;
  font-weight: 800;
}

.form-success-title {
  margin: 0;
  max-width: 520px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.12;
  text-align: center;
}

.form-success-detail {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: center;
}

.site-footer {
  padding: 58px 0 34px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 40px;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.language-gateway {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  color: var(--white);
  background: #07110f;
}

.language-gateway-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.language-gateway-media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
}

.language-gateway-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 11, 0.26), rgba(4, 10, 11, 0.38) 42%, rgba(4, 10, 11, 0.86)),
    linear-gradient(180deg, rgba(4, 10, 11, 0.14), rgba(4, 10, 11, 0.56));
}

.language-gateway-content {
  position: relative;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 0;
}

.language-gateway-copy {
  width: min(100%, 31rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.language-gateway-content h1 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.6rem;
  line-height: 0.94;
}

.language-gateway-content p:not(.eyebrow) {
  max-width: 30rem;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.language-gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.language-gateway-actions .button {
  min-width: 126px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(36, 70, 63, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.language-gateway-actions .button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(24, 52, 47, 0.98);
}

.language-gateway-actions .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 17, 15, 0.28);
  backdrop-filter: blur(8px);
}

.language-gateway-actions .button.secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .language-switcher {
    width: 100%;
    margin: 10px 0 0;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .language-switcher a {
    justify-content: center;
  }

  .hero-proof,
  .grid.four,
  .grid.three,
  .grid.two,
  .split,
  .split.reverse,
  .corporate-feature,
  .form-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .legacy-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .language-gateway-media::after {
    background:
      linear-gradient(180deg, rgba(4, 10, 11, 0.22), rgba(4, 10, 11, 0.7)),
      radial-gradient(circle at 50% 46%, rgba(4, 10, 11, 0.08), rgba(4, 10, 11, 0.42) 68%);
  }

  .language-gateway-content {
    justify-content: center;
    padding: 36px 0;
  }

  .language-gateway-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 34rem);
    text-align: center;
  }

  .language-gateway-content h1 {
    font-size: 4.4rem;
  }

  .language-gateway-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 86px 0 54px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 66px 0 44px;
  }

  .language-gateway-media img {
    transform: scale(1.18);
    object-position: 36% center;
  }

  .language-gateway-content {
    min-height: 100dvh;
    padding: 24px 0;
  }

  .language-gateway-content h1 {
    font-size: 3.25rem;
    line-height: 0.98;
  }

  .language-gateway-content p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .language-gateway-actions {
    width: min(100%, 18rem);
    margin-top: 24px;
  }

  .language-gateway-actions .button {
    flex: 1 1 100%;
  }

  .panel,
  .quote-panel,
  .form {
    padding: 22px;
  }

  .timeline-item,
  .credential,
  .article-row {
    grid-template-columns: 1fr;
  }

  .article-row {
    gap: 12px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid figure,
  .media-grid figure:nth-child(n) {
    grid-column: auto;
  }

  .legacy-gallery-grid {
    grid-template-columns: 1fr;
  }

  .corporate-gallery {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 48px 1fr 48px;
    gap: 8px;
    padding: 70px 12px 24px;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 120px);
  }

  .lightbox-nav {
    width: 42px;
    height: 52px;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
