:root {
  --navy: #001d34;
  --navy-2: #052d4d;
  --blue: #0d4d7c;
  --ink: #071726;
  --white: #ffffff;
  --off: #f4f7fa;
  --muted: #6c7885;
  --gold: #c99a4a;
  --gold-2: #e0b96c;
  --line: rgba(7, 23, 38, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 20, 38, 0.18);
  --max: 1240px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: 220ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--off); line-height: 1.55; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(to bottom, rgba(0,29,52,0.95), rgba(0,29,52,0.68), transparent); transition: background var(--ease), box-shadow var(--ease); }
.site-header.is-scrolled { background: rgba(0,29,52,0.96); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 24px 28px; display: grid; grid-template-columns: auto 1fr auto auto auto; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 900; white-space: nowrap; }
.brand-mark { width: 48px; height: 48px; position: relative; border-left: 2px solid var(--gold-2); border-bottom: 2px solid var(--gold-2); transform: skewX(-18deg); flex: 0 0 auto; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; bottom: -2px; left: 12px; width: 2px; height: 44px; background: var(--gold-2); transform: skewX(18deg) rotate(13deg); transform-origin: bottom; }
.brand-mark::after { left: 26px; height: 44px; transform: skewX(18deg) rotate(-14deg); }
.brand-text strong { display: block; font-size: 22px; line-height: 1; letter-spacing: 0.18em; }
.brand-text span { display: block; font-size: 10px; letter-spacing: 0.42em; color: rgba(255,255,255,0.72); margin-top: 5px; }
.nav { display: flex; justify-content: center; align-items: center; gap: 25px; color: var(--white); font-size: 12px; font-weight: 900; text-transform: uppercase; list-style: none; margin: 0; padding: 0; }
.nav .menu-item { margin: 0; padding: 0; }
.nav a { position: relative; white-space: nowrap; opacity: 0.94; display: inline-block; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 18px; height: 2px; background: var(--gold); opacity: 0; transition: opacity var(--ease), transform var(--ease); transform: translateY(4px); }
.nav a:hover::after, .nav a.active::after, .nav .current-menu-item > a::after, .nav .current_page_item > a::after { opacity: 1; transform: translateY(0); }
.invest-button { min-height: 44px; padding: 13px 20px; color: var(--white); background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-size: 12px; font-weight: 900; text-transform: uppercase; box-shadow: 0 14px 34px rgba(201,154,74,0.25); white-space: nowrap; }
.language { min-height: 44px; padding: 10px 12px; background: rgba(0,29,52,0.58); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.abc-language-fallback { display: inline-flex; align-items: center; gap: 4px; }
.abc-language-fallback::after { content: "⌄"; font-size: 11px; }
.mobile-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.18); color: var(--white); cursor: pointer; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 5px auto; }

.hero { min-height: 760px; position: relative; display: flex; align-items: center; padding: 140px 28px 84px; background: linear-gradient(90deg, rgba(0,29,52,0.92) 0%, rgba(0,29,52,0.68) 38%, rgba(0,29,52,0.24) 72%, rgba(0,29,52,0.55) 100%), linear-gradient(to top, rgba(0,29,52,0.94), rgba(0,29,52,0.08) 45%, rgba(0,29,52,0.34)), url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=88') center/cover no-repeat; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%, rgba(224,185,108,0.18), transparent 28%), linear-gradient(to bottom, transparent, rgba(0,29,52,0.26)); pointer-events: none; }
.hero-inner { width: 100%; max-width: var(--max); margin: 0 auto; position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 60px; align-items: center; }
.hero-content { color: var(--white); max-width: 720px; }
.hero h1 { font-size: clamp(44px, 5.5vw, 76px); line-height: 1.04; letter-spacing: -0.045em; font-weight: 900; margin-bottom: 28px; }
.hero-lead { max-width: 560px; color: rgba(255,255,255,0.86); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.55; margin-bottom: 34px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 15px 24px; border: 1px solid transparent; font-size: 13px; font-weight: 900; text-transform: uppercase; transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease); cursor: pointer; }
.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--white); background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 18px 40px rgba(201,154,74,0.25); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,0.75); background: rgba(0,0,0,0.12); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.button-dark { color: var(--white); background: var(--navy); }

.access-panel { background: rgba(0,29,52,0.82); border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 28px 80px rgba(0,0,0,0.28); padding: 28px; color: var(--white); }
.access-panel h2 { color: var(--gold-2); font-size: 19px; text-transform: uppercase; margin-bottom: 14px; }
.access-panel p { color: rgba(255,255,255,0.86); margin-bottom: 22px; font-size: 15px; }
.access-form, .contact-form { display: grid; gap: 12px; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.12); color: var(--white); padding: 13px 14px; font: inherit; outline: none; border-radius: 0; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.72); }
select option { background: var(--navy); }
.check-row { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.78); font-size: 12px; margin: 4px 0; }
.check-row input { width: auto; margin-top: 2px; }
.hero-stats { position: absolute; left: 28px; right: 28px; bottom: 28px; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; color: var(--white); }
.hero-stat { display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--gold-2); color: var(--gold-2); display: grid; place-items: center; font-size: 22px; flex: 0 0 auto; }
.hero-stat span { display: block; color: rgba(255,255,255,0.78); font-size: 10px; text-transform: uppercase; font-weight: 850; letter-spacing: 0.05em; }
.hero-stat strong { display: block; color: var(--white); font-size: 19px; line-height: 1.1; }

.section { padding: 74px 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; align-items: end; margin-bottom: 34px; }
.kicker { display: flex; align-items: center; gap: 14px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink); font-weight: 900; margin-bottom: 14px; }
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(28px, 3vw, 44px); line-height: 1.1; letter-spacing: -0.035em; font-weight: 900; }
.section-lead { color: #43505d; max-width: 620px; font-size: 16px; line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.service-card { background: var(--off); min-height: 320px; }
.service-image { height: 188px; background-size: cover; background-position: center; position: relative; margin-bottom: 26px; box-shadow: 0 18px 44px rgba(0,20,38,0.12); }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,29,52,0.32), transparent 62%); }
.service-icon { position: absolute; left: 18px; bottom: -23px; z-index: 2; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; border: 2px solid var(--off); font-size: 22px; }
.service-card h3 { margin: 0 16px 10px; font-size: 20px; text-transform: uppercase; letter-spacing: -0.02em; }
.service-card ul { margin: 0 16px; padding-left: 18px; color: #364453; font-size: 13px; line-height: 1.55; }
.service-consulting { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=82'); }
.service-architecture { background-image: url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=900&q=82'); }
.service-urban { background-image: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1f?auto=format&fit=crop&w=900&q=82'); }
.service-aerospace { background-image: url('https://images.unsplash.com/photo-1517976487492-5750f3195933?auto=format&fit=crop&w=900&q=82'); }

.dark-section { color: var(--white); background: linear-gradient(135deg, rgba(0,29,52,0.98), rgba(0,42,73,0.94)), radial-gradient(circle at 30% 40%, rgba(201,154,74,0.18), transparent 28%); }
.dark-section .kicker, .dark-section .section-title { color: var(--white); }
.dark-section .section-lead { color: rgba(255,255,255,0.72); }
.projects-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.world-map { min-height: 260px; position: relative; background-image: radial-gradient(circle, rgba(255,255,255,0.62) 1px, transparent 1.5px); background-size: 12px 12px; opacity: 0.8; mask-image: radial-gradient(ellipse at center, black 0%, black 45%, transparent 72%); border-bottom: 1px solid rgba(255,255,255,0.14); }
.map-dot { position: absolute; width: 9px; height: 9px; background: var(--gold-2); border-radius: 50%; box-shadow: 0 0 22px rgba(224,185,108,0.95); }
.project-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.project-card { min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.project-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,29,52,0.9), transparent 65%); }
.project-card h3, .project-card span { position: relative; z-index: 1; }
.project-card h3 { font-size: 13px; text-transform: uppercase; line-height: 1.2; margin-bottom: 4px; }
.project-card span { color: var(--gold-2); font-size: 12px; text-transform: uppercase; }
.project-1 { background-image: url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=700&q=82'); }
.project-2 { background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=700&q=82'); }
.project-3 { background-image: url('https://images.unsplash.com/photo-1545558014-8692077e9b5c?auto=format&fit=crop&w=700&q=82'); }
.project-4 { background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=700&q=82'); }
.dark-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.12); }
.dark-stat { background: rgba(0,29,52,0.72); padding: 22px; display: flex; gap: 14px; align-items: center; }
.dark-stat strong { display: block; font-size: 26px; }
.dark-stat span { display: block; color: rgba(255,255,255,0.68); font-size: 11px; text-transform: uppercase; }

.value-grid { display: grid; grid-template-columns: 1.35fr 0.85fr; }
.value-left { padding: 72px max(28px, calc((100vw - var(--max)) / 2 + 28px)) 72px 28px; background: var(--off); }
.value-inner { max-width: 720px; margin-left: auto; }
.value-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin-top: 42px; }
.value-card { text-align: center; }
.value-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px; color: var(--gold); font-size: 28px; }
.value-card h3 { font-size: 13px; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { color: #52606e; font-size: 13px; }
.network-panel { padding: 72px 28px; min-height: 390px; color: var(--white); background: linear-gradient(90deg, rgba(0,29,52,0.9), rgba(0,29,52,0.36)), url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=1200&q=88') center/cover no-repeat; display: flex; align-items: center; }
.network-content { max-width: 420px; }
.network-content h2 { color: var(--gold-2); font-size: 24px; text-transform: uppercase; margin-bottom: 16px; }
.network-content p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }

.page-hero { min-height: 420px; padding: 160px 28px 82px; display: flex; align-items: flex-end; color: var(--white); background: linear-gradient(90deg, rgba(0,29,52,0.92), rgba(0,29,52,0.45)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=88') center/cover no-repeat; }
.page-hero-inner { max-width: var(--max); width: 100%; margin: 0 auto; }
.page-hero h1 { max-width: 820px; font-size: clamp(42px, 5vw, 70px); line-height: 1.05; letter-spacing: -0.045em; margin-bottom: 18px; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,0.84); font-size: 19px; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.content-card { background: var(--white); padding: 30px; box-shadow: 0 18px 50px rgba(0,20,38,0.08); }
.content-card h2, .content-card h3 { margin-bottom: 14px; letter-spacing: -0.025em; }
.content-card p, .content-card li { color: #43505d; }
.content-card ul { padding-left: 18px; display: grid; gap: 6px; }
.contact-section { background: var(--navy); color: var(--white); }
.contact-section .section-title, .contact-section .kicker { color: var(--white); }
.contact-section .section-lead { color: rgba(255,255,255,0.72); }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; }
.contact-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); padding: 30px; }
.contact-card p { color: rgba(255,255,255,0.76); margin-bottom: 10px; }

.footer { background: #001729; color: rgba(255,255,255,0.72); padding: 46px 28px 24px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 46px; }
.footer-brand { color: var(--white); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900; }
.footer-brand-mark { width: 34px; height: 34px; }
.footer p, .footer a { font-size: 13px; line-height: 1.7; }
.footer h3 { color: var(--white); font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.footer ul, .footer-menu { list-style: none; display: grid; gap: 6px; margin: 0; padding: 0; }
.footer-bottom { max-width: var(--max); margin: 32px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 24px; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: auto auto auto; }
  .nav { position: fixed; top: 78px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: rgba(0,29,52,0.98); border: 1px solid rgba(255,255,255,0.15); }
  .nav.is-open { display: flex; }
  .mobile-toggle { display: block; }
  .language { display: none; }
  .hero-inner, .section-heading, .projects-layout, .value-grid, .footer-inner, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-bottom: 190px; }
  .services-grid, .project-cards, .dark-stats, .value-cards, .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-left { padding: 72px 28px; }
  .value-inner { max-width: none; margin-left: 0; }
}

@media (max-width: 760px) {
  .header-inner { padding: 18px 18px; gap: 14px; }
  .brand-text strong { font-size: 16px; }
  .brand-text span { letter-spacing: 0.24em; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark::before, .brand-mark::after { height: 34px; }
  .invest-button { display: none; }
  .hero { min-height: 900px; padding: 120px 18px 220px; }
  .hero-inner, .services-grid, .project-cards, .dark-stats, .value-cards, .hero-stats, .content-grid { grid-template-columns: 1fr; }
  .hero-stats { position: static; margin-top: 34px; }
  .section { padding: 58px 18px; }
  .access-panel { padding: 22px; }
  .page-hero { padding: 140px 18px 62px; min-height: 380px; }
  .contact-card { padding: 22px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .brand-text span { display: none; }
  .hero h1 { font-size: 39px; }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; }
}

/* WordPress integration refinements */
body.admin-bar .site-header { top: 32px; }
.brand.has-custom-logo,
.footer-brand.has-custom-logo { letter-spacing: 0; }
.site-logo { display: block; width: auto; height: auto; }
.site-logo-header { max-height: 74px; max-width: 260px; }
.site-logo-footer { max-height: 64px; max-width: 240px; }
.footer-brand { text-decoration: none; }
.form-success { padding: 14px 16px; margin-bottom: 14px; background: rgba(224,185,108,0.18); border: 1px solid rgba(224,185,108,0.42); color: var(--white); font-weight: 800; }
.narrow-content { max-width: 860px; }
.narrow-content p { margin-bottom: 18px; color: #43505d; font-size: 17px; line-height: 1.75; }
.trp-language-switcher,
.trp-language-switcher > div { width: auto !important; }
.language .trp-language-switcher { height: auto; }
.language a { color: var(--white); }

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 760px) {
  .site-logo-header { max-height: 52px; max-width: 190px; }
  .site-logo-footer { max-height: 52px; max-width: 190px; }
}


/* WordPress menu compatibility */
.nav .current-menu-ancestor > a::after,
.nav .current-menu-parent > a::after { opacity: 1; transform: translateY(0); }
.footer-menu .current-menu-item > a { color: var(--white); }
.menu-item { list-style: none; }
@media (max-width: 1180px) {
  .nav .menu-item { width: 100%; }
  .nav a { padding: 8px 0; }
  .nav a::after { bottom: 2px; }
}

/* v1.4 Select Seven base details integrated without changing the Variante 7 visual direction */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--navy);
  color: var(--white);
  z-index: 2000;
}
.abc-fullwidth {
  width: 100%;
}
.footer-legal,
.abc-legal-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.abc-legal-menu li {
  display: inline-flex;
  align-items: center;
}
.abc-legal-menu li:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(255,255,255,0.48);
}
.abc-cookie-settings-link {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}
.abc-cookie-settings-link:hover,
.abc-legal-menu a:hover {
  color: var(--white);
}
.abc-cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.abc-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.abc-cookie-consent__panel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 22px;
  background: rgba(0, 29, 52, 0.96);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}
.abc-cookie-consent__eyebrow {
  color: var(--gold-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 6px;
}
.abc-cookie-consent h2 {
  font-size: 22px;
  margin: 0 0 8px;
}
.abc-cookie-consent p,
.abc-cookie-toggle small {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.55;
}
.abc-cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gold-2);
}
.abc-cookie-consent__settings {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.abc-cookie-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.abc-cookie-toggle input {
  width: auto;
  margin-top: 3px;
}
.abc-cookie-toggle strong {
  display: block;
  font-size: 13px;
}
.abc-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.abc-cookie-btn {
  min-height: 42px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,0.26);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.abc-cookie-btn--primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--white);
}
.abc-cookie-btn--secondary:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 760px) {
  .abc-cookie-consent__panel {
    grid-template-columns: 1fr;
  }
  .abc-cookie-consent__actions {
    justify-content: stretch;
  }
  .abc-cookie-btn {
    flex: 1 1 auto;
  }
}
