/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Surfaces */
  --bg: #08111f;
  --bg-2: #0d1a2b;
  --surface: #102038;
  --surface-2: #162842;
  --surface-3: #1d3454;

  /* Text */
  --text: #f8fafc;
  --muted: #c7d2e0;
  --soft: #93a4bd;

  /* Lines */
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);

  /* Brand */
  --primary: #ffcc02;
  --primary-dark: #e0b100;
  --primary-ink: #0b1220;

  /* Accent */
  --accent-red: #d71920;
  --accent-red-dark: #b8141a;
  --accent-red-soft: rgba(215, 25, 32, 0.14);

  /* Header */
  --header-bg: #ffcc02;
  --header-text: #0b1220;

  /* Layout */
  --container: 1520px;
  --container-wide: 1680px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: clip;
  width: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

main {
  flex: 1 0 auto;
  display: block;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #ffffff;
  color: #000000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  color: #ff6774;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0 0 0.85rem;
}

.hero-text,
.section-heading + p,
.contact-form,
.contact-box,
.form-note,
.hero-card p {
  color: var(--muted);
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 204, 2, 0.96);
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  transition: box-shadow 0.1s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  min-height: clamp(64px, 9vw, 96px);
  padding-block: clamp(0.5rem, 1.6vw, 1rem);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--header-text);
  flex: 1 1 320px;
  min-width: 0;
  max-width: 100%;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 14vw, 168px);
  min-width: clamp(96px, 14vw, 168px);
  height: clamp(38px, 5.5vw, 66px);
  padding: 0.3rem 0.5rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.12);
  overflow: hidden;
  flex-shrink: 0;
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.site-header.is-scrolled .brand-mark {
  transform: scale(0.82);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.brand-text strong,
.brand-text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--header-text);
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.brand-text span {
  color: rgba(11, 18, 32, 0.78);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: fit-content;
}

.site-nav a {
  text-decoration: none;
  color: rgba(11, 18, 32, 0.82);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.site-nav a:hover {
  color: var(--header-text);
}

.site-nav .nav-link {
  padding-inline: 0.2rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #0b1220;
  color: #ffffff !important;
  padding: clamp(0.5rem, 1.2vw, 0.9rem) clamp(0.75rem, 1.8vw, 1.25rem);
}

.nav-cta:hover {
  background: #1a2538;
}

/* -- Language switch -- */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: #ffffff;
  color: var(--header-text);
  font-weight: 700;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.lang-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.lang-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.lang-toggle:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  width: fit-content;
  max-width: min(24ch, calc(100vw - 1.5rem));
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  z-index: 210;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.lang-menu:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-menu li {
  display: block;
}

.lang-menu li + li {
  margin-top: 0.15rem;
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  color: var(--header-text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-menu a:hover,
.lang-menu a:focus-visible {
  background: rgba(11, 18, 32, 0.06);
  outline: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 204, 2, 0.96);
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  transition: box-shadow 0.1s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}


.site-header.is-hidden {
  transform: translateY(-100%);
}

body.about-page .site-header.is-hidden {
  transform: translateY(0) !important;
}


body.about-page .site-header .header-inner {
  min-height: clamp(64px, 9vw, 96px) !important;
  padding-block: clamp(0.5rem, 1.6vw, 1rem) !important;
}


body.about-page .site-header.is-scrolled .brand-mark {
  transform: scale(0.82);
}
body.about-page .site-header.is-scrolled .header-inner > *:not(.brand) {
  transform: none !important;
}
/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.95fr);
  align-items: stretch;
}

.hero-actions,
.hero-points,
.info-list {
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}



.hero-points li {
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-card,
.contact-form,
.contact-box,
.card,
.legal-box,
.content-card,
.cta-box {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.cta-box {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), rgba(255, 204, 2, 0.2));
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.content-card {
  padding: 1.15rem 1.2rem;
  min-height: 100%;
}

.content-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.content-card p,
.content-card ul {
  margin: 0;
  color: var(--muted);
}

.content-card ul {
  padding-left: 1.1rem;
}

.content-card li + li {
  margin-top: 0.45rem;
}

.hero-image-card {
  overflow: hidden;
  min-height: clamp(360px, 34vw, 760px);
  padding: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 34vw, 760px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.status-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-red-soft);
  color: #ff9aa2;
  border: 1px solid rgba(215, 25, 32, 0.28);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ==========================================================================
   6. SCROLLYTELLING 
   ========================================================================== */

.scrollytelling {
  position: relative;
  display: block;
  isolation: isolate;
  overflow-x: clip;
  max-width: min(100%, 1360px);
  margin: 0 auto;
  padding: 1rem 0 0;
  --scrolly-top-offset: clamp(4.25rem, 6vw, 5.25rem);
}

.scrolly-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.scrolly-visual {
  position: sticky;
  top: calc(var(--scrolly-top-offset) + 1rem);
  z-index: 6;
}

.scrolly-visual__frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.35rem, 2.2vw, 2rem);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(255, 204, 2, 0.14), transparent 48%),
    var(--surface);
  box-shadow: 0 24px 60px rgba(2, 8, 23, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scrolly-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 700ms ease, filter 700ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.scrolly-visual.is-active .scrolly-visual__frame img {
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.04);
}


.scrolly-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  padding: 0.25rem 0 4rem;
}

.scrolly-panel {
  scroll-margin-top: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border-radius: 1.2rem;
  border: none;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.1);
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 600ms ease, transform 600ms ease, border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
  will-change: opacity, transform;
}

.scrolly-panel.is-visible {
  opacity: 10;
  transform: translateY(0);
}

.scrolly-panel.is-active-panel {
  border-color: rgba(255, 204, 2, 0.2);
  background: linear-gradient(135deg, rgba(255, 204, 2, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.16);
}

.scrolly-panel h1,
.scrolly-panel h2 {
  margin-bottom: 0.8rem;
}

.scrolly-panel p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.scrolly-panel.content-card {
  border: none;

}
.scrolly-panel ul {
  list-style: circle;
  list-style-position: outside;
  list-style-type: disc;
}


@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .scrolly-stage {
    grid-template-columns: 1fr;
  }

  .scrolly-visual {
    position: relative;
    top: auto;
    margin-bottom: 0.75rem;
  }

  .scrolly-visual__frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .scrolly-content {
    gap: 0.9rem;
    padding-bottom: 3rem;
  }

  .scrolly-panel {
    padding: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scrolly-visual__frame img,
  .scrolly-panel {
    transition: none;
  }
}

.content-card,
.scrolly-panel {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
}


/* ==========================================================================
   7. CARDS & GALLERY
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 1.6vw, 2rem);
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 16vw, 420px);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 20px 20px 0 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.card-content {
  padding: clamp(1.25rem, 2vw, 2rem) clamp(1.25rem, 2vw, 2rem) clamp(1.4rem, 2.2vw, 2.2rem);
  flex-grow: 1;
}

.card-content h3 {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  margin: 0 0 0.75rem;
}

.card-content p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 15vw, 360px);
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

/* ==========================================================================
   8. CONTACT
   ========================================================================== */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-box,
.contact-form {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.contact-box {
  margin-top: 1.25rem;
}

.contact-box p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box a {
  color: #ffffff;
  text-decoration: none;
}

.contact-box a:hover {
  color: var(--primary);
}

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--accent-red);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

.button-tertiary {
  background: var(--primary);
  color: #ffffff;
}

.button-tertiary:hover {
  background: var(--accent-red-dark);
  color: #ffffff;
}

.button-small {
  padding: 0.65rem 1rem;
}

/* ==========================================================================
   10. LEGAL PAGES
   ========================================================================== */
.legal-section {
  scroll-margin-top: 90px;
}

.legal-box {
  max-width: 920px;
  width: 100%;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
}

.legal-box h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.legal-box h3:first-of-type {
  margin-top: 0;
}

.legal-box p {
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.legal-box a {
  color: #ffffff;
  text-decoration: none;
}

.legal-box a:hover {
  color: var(--primary);
}

.legal-note {
  font-size: 0.85rem;
  color: var(--soft);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.25rem;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.site-footer p {
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-mark {
  width: 140px;
  height: 68px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  color: var(--muted);
  margin: 0;
  max-width: 40ch;
}

.footer-col h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-list li {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-list a {
  text-decoration: none;
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   12. RESPONSIVE — DESKTOP LARGE (>= 1600px)
   ========================================================================== */
@media (min-width: 1600px) {
  .container {
    width: min(calc(100% - 4rem), var(--container-wide));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(520px, 0.95fr);
    gap: 3rem;
  }

  .cards {
    gap: 2rem;
  }

  .card-media {
    min-height: 280px;
  }

  .gallery-grid img {
    min-height: 280px;
  }
}

/* ==========================================================================
   13. RESPONSIVE — TABLET (<= 1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: clamp(320px, 52vw, 620px);
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

/* ==========================================================================
   14. RESPONSIVE — SMALL TABLET (<= 900px)
   ========================================================================== */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .card-media {
    min-height: clamp(180px, 26vw, 240px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   15. RESPONSIVE — MOBILE (<= 640px)
   ========================================================================== */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 0.6rem;
  }

  .brand {
    order: 1;
    width: 100%;
    flex: 0 1 auto;
    align-items: center;
  }

  .site-nav,
  .header-controls {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }

  .brand-mark {
    width: clamp(72px, 20vw, 110px);
    min-width: clamp(72px, 20vw, 110px);
    height: clamp(30px, 8vw, 44px);
  }

  .brand-text {
    overflow: visible;
  }

  .brand-text strong,
  .brand-text span {
    white-space: normal;
    text-overflow: unset;
    overflow: visible;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .lang-toggle {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    width: 67%;
  }

  .site-nav:only-child .nav-cta {
    width: 100%;
  }

  .site-header.is-scrolled .header-inner {
    padding-block: clamp(0.5rem, 1.6vw, 1rem);
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-media {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 320px;
  }

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

  .button:not(.nav-cta),
  .button-secondary:not(.nav-cta),
  .button-tertiary:not(.nav-cta) {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}