/* ── Reset & Custom Properties ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1A3A5C;
  --navy-dark:   #0D2137;
  --navy-light:  #244d76;
  --orange:      #E8840A;
  --orange-dark: #C56D08;
  --blue:        #2A85C1;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --gray-light:  #E8ECF0;
  --gray-mid:    #6B7280;
  --gray-dark:   #374151;
  --text:        #1A1A2E;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 2px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --transition:  .2s ease;
  --container:   1240px;
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ── Site Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}
.site-logo {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.site-logo span { color: var(--orange); }
.site-logo:hover { color: var(--white); }

/* Main nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--white);
  border-bottom-color: var(--orange);
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.lang-switcher a {
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.lang-switcher a:hover,
.lang-switcher a.active {
  background: var(--orange);
  color: var(--white);
}
.lang-divider { color: rgba(255,255,255,.3); font-size: .7rem; }

/* CTA in header */
.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: .55rem 1.2rem; font-size: .85rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(500px, 80vh, 860px);
  display: flex;
  align-items: center;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,33,55,.92) 0%,
    rgba(13,33,55,.78) 55%,
    rgba(26,58,92,.55) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-tag {
  display: inline-block;
  background: rgba(232,132,10,.2);
  border: 1px solid rgba(232,132,10,.4);
  color: var(--orange);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-phone {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.hero-phone a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}
.hero-phone a:hover { color: var(--orange); }

/* ── Section Utilities ────────────────────────────────────────────────────── */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin-inline: auto;
  margin-top: .75rem;
}
.section-dark .section-header p { color: rgba(255,255,255,.65); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

/* ── Services Grid ────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.section-alt .service-card { background: var(--white); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,58,92,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
}
.service-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  margin-bottom: .5rem;
  color: var(--navy-dark);
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-mid);
  margin-bottom: 0;
}
/* Image variant */
.service-card--image {
  padding: 0;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-card--image:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
}
.service-card--image h3 { margin-bottom: .5rem; color: var(--navy-dark); }
.service-card--image p  { font-size: .9rem; color: var(--gray-mid); margin-bottom: 0; }

/* ── Stats / Callout ─────────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  text-align: center;
}
.stat-item { flex: 1 1 180px; }
.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin-top: .4rem;
}

/* ── Why GRP ──────────────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232,132,10,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.benefit-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit h4 { margin-bottom: .3rem; }
.benefit p { font-size: .9rem; color: var(--gray-mid); margin: 0; }

/* ── CTA Strip ────────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-text h2 { color: var(--white); margin-bottom: .4rem; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin: 0; }
.cta-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}
.cta-phone:hover { color: var(--orange); }

/* ── Inner Page Header ───────────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  color: var(--white);
}
.page-banner h1 { color: var(--white); }
.page-banner p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: .75rem; max-width: 600px; }

/* ── Products Page ────────────────────────────────────────────────────────── */
.products-list { display: flex; flex-direction: column; gap: 3rem; }
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.product-section:nth-child(even) .product-text { order: 2; }
.product-section:nth-child(even) .product-img  { order: 1; }
.product-section h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.product-section p { color: var(--gray-dark); }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.tag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-dark);
}
.product-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}
.product-img-placeholder svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.5; opacity: .5; }
.product-real-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}
/* Product gallery */
.product-gallery-main { margin-bottom: .6rem; }
.product-gallery-thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.product-thumb {
  width: 72px;
  height: 52px;
  padding: 0;
  border: 2px solid var(--gray-light);
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
  transition: border-color .18s, opacity .18s;
  opacity: .75;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb.is-active,
.product-thumb:hover { border-color: var(--blue); opacity: 1; }

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-detail svg { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.contact-detail a { color: var(--navy); font-weight: 600; }
.contact-detail a:hover { color: var(--orange); }
.contact-detail p { margin: 0; color: var(--gray-dark); }

/* Contact form */
.contact-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,133,193,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-status {
  display: none;
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.form-status.success { background: #d1fae5; color: #065f46; }
.form-status.error   { background: #fee2e2; color: #991b1b; }

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-lead { font-size: 1.15rem; color: var(--gray-dark); }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.about-feature svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-feature h4 { margin-bottom: .15rem; font-size: 1rem; }
.about-feature p { font-size: .88rem; color: var(--gray-mid); margin: 0; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .site-logo { font-size: 1.3rem; margin-bottom: .75rem; display: inline-block; }
.footer-brand p { font-size: .9rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* ── Projects / Gallery ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gallery-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  overflow: hidden;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.04); }
.gallery-card-img svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.gallery-card-body { padding: 1rem 1.25rem; }
.gallery-card-body h4 { margin-bottom: .3rem; font-size: 1rem; }
.gallery-card-body p { font-size: .85rem; color: var(--gray-mid); margin: 0; }

/* ── Mobile Nav ───────────────────────────────────────────────────────────── */
.nav-close { display: none; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 200;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .main-nav a { font-size: 1.1rem; padding: .6rem 0; width: 100%; border-bottom-color: transparent; }
  .header-cta { display: none; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: .5rem 0 1.5rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

/* ── Responsive Grids ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .product-section { grid-template-columns: 1fr; }
  .product-section:nth-child(even) .product-text { order: unset; }
  .product-section:nth-child(even) .product-img  { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
}

/* ── Skip link ────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  padding: .5rem 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; }

/* ── Cookie Policy Page ───────────────────────────────────────────────────── */
.cookie-policy-content h2 { margin: 2rem 0 .75rem; font-size: 1.25rem; color: var(--navy-dark); }
.cookie-policy-content p,
.cookie-policy-content li { color: var(--gray-dark); line-height: 1.7; margin-bottom: .75rem; }
.cookie-policy-content ul { padding-left: 1.4rem; }
.cookie-policy-content a  { color: var(--blue); }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .875rem;
}
.cookie-table th,
.cookie-table td {
  padding: .7rem 1rem;
  text-align: left;
  border: 1px solid var(--gray-light);
  vertical-align: top;
}
.cookie-table th {
  background: var(--gray-bg);
  font-weight: 600;
  color: var(--navy-dark);
}
.cookie-table code {
  font-family: monospace;
  background: var(--gray-light);
  padding: .15em .4em;
  border-radius: 3px;
  font-size: .85em;
}

/* ── Cookie Consent Banner ────────────────────────────────────────────────── */
.elv-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 780px;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 1.1rem 1.4rem;
  z-index: 9999;
  animation: elv-cookie-in .25s ease;
}
@keyframes elv-cookie-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.elv-cookie-banner[hidden] { display: none; }
.elv-cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.elv-cookie-text {
  flex: 1;
  margin: 0;
  font-size: .88rem;
  color: var(--gray-dark);
  min-width: 180px;
}
.elv-cookie-link { color: var(--blue); text-decoration: underline; }
.elv-cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.elv-cookie-btn {
  padding: .55rem 1.1rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--blue);
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.elv-cookie-accept { background: var(--blue); color: #fff; }
.elv-cookie-accept:hover { background: var(--navy); border-color: var(--navy); }
.elv-cookie-decline { background: #fff; color: var(--blue); }
.elv-cookie-decline:hover { background: var(--gray-light); }
@media (max-width: 500px) {
  .elv-cookie-inner { flex-direction: column; align-items: flex-start; }
  .elv-cookie-btns  { width: 100%; }
  .elv-cookie-btn   { flex: 1; text-align: center; }
}
