:root {
  --navy-deep: #0A1628;
  --navy-mid: #0D2040;
  --navy-card: #112244;
  --navy-deeper: #060E1A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-muted: #8A6F32;
  --steel: #1E3A5F;
  --white: #F4F1EC;
  --white-muted: #A8A49E;
  --orange: #E8703A;
  --glass-bg: rgba(17, 34, 68, 0.6);
  --glass-border: rgba(201, 168, 76, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all .35s ease;
}

.glass:hover {
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(201, 168, 76, 0.25);
}

nav[aria-label="Pagination Navigation"] svg {
  width: 12px !important;
  height: 12px !important;
}

nav[aria-label="Pagination Navigation"] a,
nav[aria-label="Pagination Navigation"] span span {
  padding: 4px 8px !important;
  font-size: 12px !important;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: all .25s ease;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #E8C97A, #C9A84C);
  color: #0A1628;
  box-shadow: 0 10px 30px -10px rgba(201, 168, 76, .5);
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
}

p {
  margin: 0;
  color: var(--white-muted);
  line-height: 1.7;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-22px) rotate(5deg)
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, .5)
  }

  70% {
    box-shadow: 0 0 0 14px rgba(201, 168, 76, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0)
  }
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.85)
  }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes counterUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }

  10% {
    opacity: .7;
  }

  90% {
    opacity: .7;
  }

  100% {
    transform: translate3d(var(--dx), var(--dy), 0);
    opacity: 0;
  }
}

@keyframes ringPing {
  0% {
    transform: scale(.6);
    opacity: .9
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

@keyframes scrollBob {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  30% {
    opacity: 1
  }

  100% {
    transform: translateY(14px);
    opacity: 0
  }
}

@keyframes flameWobble {

  0%,
  100% {
    transform: scale(1) rotate(-1deg)
  }

  50% {
    transform: scale(1.05) rotate(1deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0
  }

  100% {
    background-position: 400px 0
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.fade-in {
  animation: fadeSlideIn .8s ease-out both;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 80ms
}

.reveal.d2 {
  transition-delay: 160ms
}

.reveal.d3 {
  transition-delay: 240ms
}

.reveal.d4 {
  transition-delay: 320ms
}

/* Floating drops */
.drop {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
}

.drop.d1 {
  width: 200px;
  height: 240px;
  left: 8%;
  top: 18%;
  animation: floatSlow 8s ease-in-out infinite;
}

.drop.d2 {
  width: 130px;
  height: 160px;
  right: 12%;
  top: 32%;
  animation: floatSlow 11s ease-in-out infinite;
  animation-delay: -2s;
}

.drop.d3 {
  width: 80px;
  height: 96px;
  left: 42%;
  top: 60%;
  animation: floatSlow 9s ease-in-out infinite;
  animation-delay: -4s;
}

.drop.d4 {
  width: 160px;
  height: 190px;
  right: 24%;
  bottom: 8%;
  animation: floatSlow 13s ease-in-out infinite;
  animation-delay: -6s;
}

/* Grid background */
.grid-bg {
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.6);
  animation: drift var(--dur, 9s) linear infinite;
  animation-delay: var(--del, 0s);
  pointer-events: none;
}

/* Pulse-gold badge */
.pulse-gold {
  animation: pulseGold 2.2s infinite;
}

.glass.reveal.d1.in img {
  object-position: top;
}

.leadership .glass.reveal.d1.in img {
  object-position: center !important;
}

.team-mini-img[alt="Safa Jdir"] {
  object-position: center !important;
}

#svc-modal-avatar img[alt="Safa Jdir"] {
  height: 64px !important;
}

.hero-section .drop {
  display: none !important;
}

.hero-orbits,
.hero-floating-icons,
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-orbits {
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: orbitDrift 18s ease-in-out infinite;
}

.orbit-1 {
  width: 760px;
  height: 260px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-2 {
  width: 980px;
  height: 340px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(14deg);
  opacity: .7;
  animation-delay: -4s;
}

.orbit-3 {
  width: 1180px;
  height: 420px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: .45;
  animation-delay: -8s;
}

.hero-lines {
  opacity: .45;
}

.hero-lines path {
  fill: none;
  stroke: rgba(201, 168, 76, 0.22);
  stroke-width: 1;
  stroke-dasharray: 8 12;
  animation: heroLineFlow 16s linear infinite;
}

.hero-lines path:nth-child(2) {
  stroke: rgba(232, 112, 58, 0.16);
  animation-duration: 20s;
}

.hero-lines path:nth-child(3) {
  stroke: rgba(76, 159, 232, 0.14);
  animation-duration: 24s;
}

.hero-float-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
  opacity: .8;
  animation: iconFloat 7s ease-in-out infinite;
}

.hi-1 {
  left: 13%;
  top: 28%;
  animation-delay: 0s;
}

.hi-2 {
  right: 15%;
  top: 24%;
  animation-delay: -1.5s;
}

.hi-3 {
  left: 18%;
  bottom: 28%;
  animation-delay: -3s;
}

.hi-4 {
  right: 20%;
  bottom: 26%;
  animation-delay: -4.5s;
}

.hi-5 {
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  animation-delay: -2s;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: .55;
  }

  50% {
    transform: translateY(-14px) scale(1.04);
    opacity: .9;
  }
}

@keyframes heroLineFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }
}

@keyframes orbitDrift {

  0%,
  100% {
    opacity: .45;
  }

  50% {
    opacity: .85;
  }
}

@media (max-width: 768px) {
  .hero-floating-icons {
    display: none;
  }

  .orbit-1 {
    width: 520px;
    height: 190px;
  }

  .orbit-2,
  .orbit-3 {
    display: none;
  }

  .hero-lines {
    opacity: .25;
  }
}

.ops-trading .glass.reveal.d3.in img,
.ops-trading .glass.reveal.d4.in img {
  object-position: top;
}

.strategic-investment .glass.reveal.d3.in img,
.strategic-investment .glass.reveal.d4.in img {
  object-position: top;
}

/* Form inputs */
.field {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: .2s;
  display: block;
}

.field:focus {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.field::placeholder {
  color: rgba(168, 164, 158, .55);
}

textarea.field {
  resize: vertical;
  min-height: 120px;
}

select.field option {
  background: #0A1628;
  color: #F4F1EC;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #060E1A;
}

::-webkit-scrollbar-thumb {
  background: #1E3A5F;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a4a73;
}

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link {
  color: var(--white-muted);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 50px;
  transition: .2s;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

#nav-mobile {
  background: rgba(10, 20, 40, 0.95);
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
}

@media (orientation: portrait) {
  #nav-mobile {
    height: calc(100dvh - 64px);
    max-height: none;
  }
}

@media (orientation: landscape) {
  #nav-mobile {
    height: auto;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
}

/* Section spacing */
section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 64px 0;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Stats bar */
.stats-bar {
  background: rgba(201, 168, 76, 0.06);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* Tabs */
.tab-pill {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-muted);
  border: 1px solid transparent;
  transition: .2s;
  white-space: nowrap;
  background: none;
  cursor: pointer;
}

.tab-pill:hover {
  color: var(--white);
}

.tab-pill.active {
  background: linear-gradient(135deg, #E8C97A, #C9A84C);
  color: #0A1628;
}

#lang-menu img {
  width: 25px !important;
  border-radius: 25% !important;
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}

.tag-gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.tag-orange {
  background: rgba(232, 112, 58, 0.15);
  color: var(--orange);
  border: 1px solid rgba(232, 112, 58, 0.3);
}

.tag-steel {
  background: rgba(91, 141, 184, 0.15);
  color: #5B8DB8;
  border: 1px solid rgba(91, 141, 184, 0.3);
}

.tag-green {
  background: rgba(94, 188, 140, 0.15);
  color: #5EBC8C;
  border: 1px solid rgba(94, 188, 140, 0.3);
}

.tag-purple {
  background: rgba(155, 130, 200, 0.15);
  color: #9B82C8;
  border: 1px solid rgba(155, 130, 200, 0.3);
}

.tag-pink {
  background: rgba(220, 140, 170, 0.15);
  color: #DC8CAA;
  border: 1px solid rgba(220, 140, 170, 0.3);
}

/* Page hero (small) */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30, 58, 95, 0.5), transparent 60%);
}

/* Map dot */
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

.map-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ringPing 2.4s ease-out infinite;
}

/* Particles container */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Chart card */
.chart-card {
  padding: 24px;
}

.chart-card .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}

.chart-wrapper {
  position: relative;
}

@media (max-width: 1280px) {
  .services-charts-2 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .services-charts-2 canvas {
    width: 100% !important;
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width:1121px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .home-title {
    font-size: 36px !important;
  }

  .hydrocarbons .hydrocarbons-inner {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
  }

  .hydrocarbons-items {
    display: flex !important;
    flex-wrap: wrap;
  }

  .legal-page .container {
    grid-template-columns: 1fr !important;
  }

  .services-items-3,
  .services-team-columns,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .contact-info .container {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.leadership .glass.reveal.d2.in img {
  object-position: top !important;
}

.leadership + section .glass.reveal.d1.in img {
  object-position: center !important;
}

/* Mobile */
@media (max-width:880px) {

  .nav-inner {
    height: 64px;
  }

  .hero-section {
    margin-top: -64px !important;
    padding: 84px 0 60px !important;
  }

  .svc-tabs-scroll-wrapper {
    top: 64px !important;
  }

  .about-section .container {
    grid-template-columns: 1fr !important;
  }

  section {
    padding: 72px 0;
  }

  .grid-2col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .grid-3col {
    grid-template-columns: 1fr !important;
  }

  .grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }

  .trust-and-authority .container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width:720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .charts-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .svc-tabs-scroll.container {
    padding: 14px 28px !important;
  }

  .home-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .home-main-text {
    font-size: 16px !important;
    margin-top: 15px !important;
    line-height: 1.2 !important;
  }

  .hero-badge {
    margin-bottom: 15px !important;
  }

  .hero-btns {
    margin-top: 20px !important;
  }

  .stats-bar .container {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    padding: 25px 10px !important;
    flex-wrap: wrap;
  }

  .services-items-3,
  .services-team-columns,
  .blog-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .stats-bar .container div {
    border-right: none !important;
  }

  .container {
    padding: 0 10px !important;
  }

  .tbl-logo {
    width: 100px !important;
    height: 100px !important;
  }

  .hero-subtext {
    margin-bottom: 8px !important;
    margin-top: -5px;
  }
}

@media (max-width:540px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .world-map,
  .hydrocarbons-inner,
  .about-geography-content,
  .contact-info .container>div:nth-child(2),
  .legal-page .container .glass {
    padding: 20px !important;
  }

  .about-stats .container .grid-4col {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .about-section-blockquote {
    padding: 25px !important;
  }

  .about-section-blockquote p {
    font-size: 16px !important;
  }

  .about-vision .grid-2col>div {
    padding: 28px !important;
  }
}

#svc-modal-overlay,
#team-modal-overlay {
  overflow-y: auto;
  align-items: flex-start;
}

@media (max-width: 480px) {

  #svc-modal-overlay,
  #team-modal-overlay {
    padding: 12px !important;
  }

  #svc-modal-card,
  #team-modal-card {
    padding: 22px 18px !important;
    max-width: calc(100vw - 24px) !important;
  }

  #svc-modal-card form>div,
  #team-modal-card form>div {
    grid-template-columns: 1fr !important;
  }
}

#svc-modal-email-text,
#team-modal-email-text {
  word-break: break-all;
}

/* Alpine cloak */
[x-cloak] {
  display: none !important;
}

.cookies-mobile-cards {
  display: none;
}

@media (max-width: 768px) {
  .cookies-table-wrap {
    display: none;
  }

  .cookies-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cookies-mobile-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .cookies-mobile-name {
    font-family: monospace;
    color: #C9A84C;
    font-size: 13px;
    margin-bottom: 8px;
  }

  .cookies-mobile-purpose {
    color: #D0CFC9;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .cookies-mobile-duration {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: #C9A84C;
    font-size: 12px;
    font-weight: 500;
  }
}

.team-mini-img {
  object-position: top;
}

/* ── Cookie Consent Banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 780px;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
  opacity: 0;
}

#cookie-banner.cookie-banner--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#cookie-banner.cookie-banner--hiding {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(10, 18, 38, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
  position: relative;
}

.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.cookie-banner__copy {
  font-size: 13.5px;
  line-height: 1.55;
  color: #B8B5AE;
  margin: 0;
}

.cookie-banner__link {
  color: #C9A84C;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: #E8C97A;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: .2s;
  border: none;
  font-family: inherit;
}

.cookie-banner__btn--primary {
  background: #C9A84C;
  color: #0A1626;
}

.cookie-banner__btn--primary:hover {
  background: #E8C97A;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #B8B5AE;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #F4F1EC;
}

.cookie-banner__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color .2s;
}

.cookie-banner__close:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  #cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
  }

  .cookie-banner__close {
    top: 8px;
    right: 10px;
  }
}