/* =================================================================
   EUFREX — Premium editorial design
   Navy + Gold palette, Cormorant Garamond + Manrope typography
   ================================================================= */

:root {
  /* Brand colors */
  --navy: #1A3A5C;
  --navy-deep: #112A47;
  --gold: #C9A961;
  --gold-light: #D9BE7E;
  --gold-soft: #F5EFD9;
  --cream: #FAF7F0;
  --cream-deep: #F0EAD8;
  --white: #FFFFFF;
  --ink: #2C2C2C;
  --ink-muted: #595959;
  --ink-faint: #8A8A8A;
  --line: #E5DFCE;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-y: clamp(60px, 9vw, 140px);

  /* Easing */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
a:hover { color: var(--gold); }

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

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, .85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(250, 247, 240, .96);
  border-bottom-color: var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}

.main-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.main-nav a:hover {
  color: var(--navy);
}
.main-nav a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.lang-btn {
  background: none;
  border: none;
  font: 500 13px/1 var(--font-body);
  color: var(--ink-faint);
  cursor: pointer;
  padding: 6px 4px;
  letter-spacing: .08em;
  transition: color .2s var(--ease-out);
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { color: var(--navy); font-weight: 700; }
.lang-divider { color: var(--ink-faint); font-size: 12px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.06), transparent 60%),
    var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Subtle decorative pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.015) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.015) 75%);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gold corner brackets */
.corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 0 solid var(--gold);
  z-index: 2;
}
.corner-tl { top: 100px; left: 40px; border-top-width: 1.5px; border-left-width: 1.5px; }
.corner-tr { top: 100px; right: 40px; border-top-width: 1.5px; border-right-width: 1.5px; }
.corner-bl { bottom: 40px; left: 40px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.corner-br { bottom: 40px; right: 40px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  width: 100%;
}

.hero-medallion {
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .35);
  animation: fadeInScale .9s var(--ease-out) both;
}
.hero-logo {
  width: 100%;
  height: auto;
}

.hero-text {
  animation: fadeInUp .8s var(--ease-out) .2s both;
}

.hero-divider {
  width: 80px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-line-1 { display: block; }
.hero-title-line-2 {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font: 500 13px/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(201, 169, 97, .5);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn-ghost:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =================================================================
   SECTIONS — common
   ================================================================= */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy {
  background: var(--navy);
  color: var(--white);
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.06), transparent 50%),
    var(--navy);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 90px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding: 0 24px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
.eyebrow-gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.section-title-light { color: var(--white); }
.section-head-light .eyebrow::before,
.section-head-light .eyebrow::after { background: var(--gold); }

.section-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gold);
  margin-top: 12px;
}

/* =================================================================
   ABOUT
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}
.bridge-circle {
  width: clamp(110px, 14vw, 160px);
  height: clamp(110px, 14vw, 160px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.bridge-europe {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
}
.bridge-gcc {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.bridge-link {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 50px;
}
.bridge-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, var(--navy), var(--gold));
}
.bridge-link .bridge-line:last-child {
  background: linear-gradient(to right, var(--gold), var(--navy));
}
.bridge-mark {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,.15);
}
.bridge-mark img { width: 100%; height: 100%; object-fit: contain; }

.about-text p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2em;
  float: left;
  line-height: .85;
  padding: 8px 12px 0 0;
  color: var(--gold);
  font-weight: 500;
}

/* =================================================================
   SERVICES
   ================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(26, 58, 92, .2);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
}
.service-card:hover::before { width: 100%; }

.service-card-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.service-card ul { list-style: none; }
.service-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.service-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-size: 10px;
}

/* =================================================================
   CATEGORIES
   ================================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  transition: all .35s var(--ease-out);
}
.cat-card:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.cat-card:hover h3 { color: var(--white); }
.cat-card:hover p { color: rgba(255,255,255,.8); }
.cat-card:hover .cat-origin { color: var(--gold); }
.cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 24px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .3s var(--ease-out);
}
.cat-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-bottom: 16px;
  min-height: 42px;
  transition: color .3s var(--ease-out);
}
.cat-origin {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .1em;
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  width: 100%;
  transition: color .3s var(--ease-out);
}

/* =================================================================
   MARKETS
   ================================================================= */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.market-card {
  border: 1px solid rgba(201, 169, 97, .35);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all .35s var(--ease-out);
  background: rgba(255, 255, 255, .02);
}
.market-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, .08);
  transform: translateY(-4px);
}
.market-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.market-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--white);
  letter-spacing: .02em;
}

/* =================================================================
   PROCESS
   ================================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: all .3s var(--ease-out);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.process-step p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* =================================================================
   WHY EUFREX
   ================================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 36px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.why-icon {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 6px;
}
.why-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form .full-row { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: 400 15px/1.5 var(--font-body);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 14px 16px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form textarea {
  resize: vertical;
  font-family: var(--font-body);
  min-height: 120px;
}
.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: none; }
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.contact-block a { color: var(--navy); border-bottom: 1px solid transparent; transition: border-color .25s; }
.contact-block a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.link-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
}
.link-download::before {
  content: "↓";
  color: var(--gold);
  font-weight: 600;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand { padding-right: 40px; }
.footer-logo {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
}
.footer-col a {
  color: rgba(255,255,255,.7);
  transition: color .25s var(--ease-out);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  max-width: var(--container);
  margin: 0 auto;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Reveal on scroll — only when JS adds .js-reveal class (progressive enhancement) */
.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal { opacity: 1 !important; transform: none !important; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-medallion { max-width: 280px; margin: 0 auto; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .process-grid::before { display: none; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .main-nav, .lang-switch { display: none; }
  .menu-toggle { display: flex; }
  .header-row { padding: 14px 0; }
  .logo-word { font-size: 22px; }

  /* Mobile menu open */
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 30px var(--gutter);
    gap: 22px;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.1);
    margin-left: 0;
  }
  .main-nav.mobile-open a {
    font-size: 16px;
    padding: 6px 0;
  }
  .lang-switch.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    right: var(--gutter);
    padding: 16px 0 0;
    border-left: none;
    transform: translateY(-2px);
  }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .corner { width: 50px; height: 50px; }
  .corner-tl, .corner-tr { top: 80px; }
  .corner-bl, .corner-br { bottom: 20px; }
  .corner-tl, .corner-bl { left: 20px; }
  .corner-tr, .corner-br { right: 20px; }

  .markets-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .market-card { padding: 24px 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-bridge { flex-direction: column; gap: 16px; }
  .bridge-link { flex-direction: column; min-height: 80px; }
  .bridge-line { height: 80px; width: 1.5px; background: linear-gradient(to bottom, var(--navy), var(--gold)) !important; }

  .about-text p:first-child::first-letter {
    font-size: 2.6em;
    padding: 4px 8px 0 0;
  }
}
