/* ==========================================================================
   DNA TRADING & EXPORTS — MAIN STYLESHEET
   Palette + type derived from the brand logo (navy / gold, serif wordmark)
   ========================================================================== */

:root {
  /* Brand palette — sampled from logo.png */
  --navy:        #0b2447;
  --navy-deep:   #071729;
  --navy-mid:    #12335e;
  --gold:        #c9962c;
  --gold-light:  #e6c877;
  --gold-deep:   #8b6914;
  --cream:       #f8f5ee;
  --ivory:       #fffdf8;
  --ink:         #1a1d24;
  --muted:       #5b6472;
  --line:        #e7e1d3;
  --white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(11,36,71,.06);
  --shadow-md: 0 10px 30px rgba(11,36,71,.12);
  --shadow-lg: 0 20px 50px rgba(11,36,71,.18);

  --header-h: 88px;
  --topbar-h: 40px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; color: var(--muted); }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 3px; font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; border: 2px solid transparent; transition: all .25s ease;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { font-size: 1.05rem; }

section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,.72); }

/* ---------- Trade-route divider (signature motif) ---------- */
.route-divider {
  height: 46px; width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.route-divider svg { width: 100%; max-width: 340px; height: auto; }
.route-divider .route-path {
  stroke: var(--gold); stroke-width: 2; fill: none; stroke-dasharray: 6 7; stroke-linecap: round;
}
.route-divider .route-dot { fill: var(--gold); }

/* ==========================================================================
   TOPBAR + HEADER (fixed)
   ========================================================================== */
.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,.85);
  font-size: .82rem; height: var(--topbar-h);
}
.topbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar__contact { display: flex; gap: 26px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; opacity: .9; transition: opacity .2s; }
.topbar__contact a:hover { opacity: 1; color: var(--gold-light); }
.topbar__tag { opacity: .65; letter-spacing: .03em; }
@media (max-width: 720px) { .topbar__tag { display: none; } .topbar__contact { gap: 16px; } }
@media (max-width: 480px) { .topbar__contact a span.icon { display:none; } }

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,253,248,.97); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); height: 72px; }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; height: 100%; }
.brand__logo { height: 58px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .brand__logo { height: 46px; }

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block; padding: 10px 16px; font-weight: 600; font-size: .95rem;
  color: var(--navy); border-radius: 3px; position: relative; transition: color .2s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--gold-deep); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: all .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed; top: calc(var(--topbar-h) + 72px); left: 0; right: 0; bottom: 0;
    background: var(--ivory); transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto; z-index: 400;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; padding: 24px; gap: 4px; }
  .main-nav a { padding: 16px; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .site-header__actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   HERO SLIDER (home page)
   ========================================================================== */
.hero-slider {
  position: relative; overflow: hidden; height: min(88vh, 720px); min-height: 480px;
  color: #fff; background: var(--navy-deep);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,23,41,.92) 0%, rgba(7,23,41,.72) 42%, rgba(7,23,41,.42) 100%);
}
.hero-slide__content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: center; max-width: 660px; padding: 0 24px; margin: 0 auto; width: 100%;
}
.hero-slide__content .eyebrow { color: var(--gold-light); }
.hero-slide__content h1 {
  color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: .4em;
  opacity: 0; transform: translateY(24px);
}
.hero-slide__content p {
  color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 540px; margin-bottom: 1.8em;
  opacity: 0; transform: translateY(24px);
}
.hero-slide__actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(24px); }
.hero-slide.is-active .hero-slide__content h1,
.hero-slide.is-active .hero-slide__content p,
.hero-slide.is-active .hero-slide__actions {
  opacity: 1; transform: translateY(0); transition: opacity .9s ease .3s, transform .9s ease .3s;
}
.hero-slide.is-active .hero-slide__content p { transition-delay: .45s; }
.hero-slide.is-active .hero-slide__actions { transition-delay: .6s; }

.hero-slider__nav {
  position: absolute; z-index: 5; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.hero-slider__nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.hero-slider__nav--prev { left: 24px; }
.hero-slider__nav--next { right: 24px; }
@media (max-width: 640px) { .hero-slider__nav { width: 38px; height: 38px; } .hero-slider__nav--prev { left: 10px; } .hero-slider__nav--next { right: 10px; } }

.hero-slider__dots { position: absolute; z-index: 5; bottom: 26px; left: 0; right: 0; display: flex; gap: 10px; justify-content: center; }
.hero-slider__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); background: transparent; padding: 0;
  transition: all .25s ease;
}
.hero-slider__dots button.is-active { background: var(--gold); border-color: var(--gold); width: 26px; border-radius: 6px; }

.hero-scroll-cue {
  position: absolute; z-index: 5; bottom: 26px; right: 30px; color: rgba(255,255,255,.6);
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll-cue::after { content:''; width:1px; height:36px; background: rgba(255,255,255,.4); }
@media (max-width: 780px) { .hero-scroll-cue { display: none; } }

/* ==========================================================================
   PAGE BANNER (inner pages — fixed-style hero banner)
   ========================================================================== */
.page-banner {
  position: relative; padding: 130px 0 70px; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  background-size: cover; background-position: center;
}
.page-banner::before { content:''; position:absolute; inset:0; background: rgba(7,23,41,.55); }
.page-banner__inner { position: relative; z-index: 2; }
.page-banner .eyebrow { color: var(--gold-light); }
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .3em; }
.breadcrumb { display: flex; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.65); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-banner__route { position: absolute; right: -40px; bottom: -30px; opacity: .5; width: 340px; }

/* ==========================================================================
   HOME — INTRO / SPLIT SECTIONS
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.split__media-badge {
  position: absolute; bottom: -24px; left: -24px; background: var(--navy); color: #fff;
  padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md);
  font-family: var(--font-display); text-align: center; min-width: 140px;
}
.split__media-badge strong { display: block; font-size: 2rem; color: var(--gold-light); line-height: 1; }
.split__media-badge span { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media-badge { left: 16px; bottom: -20px; padding: 14px 18px; min-width: auto; }
}

.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink); font-weight: 500; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230b2447' d='M6.4 11.2 3.6 8.4l-1.2 1.2 4 4 8-8-1.2-1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--gold-light); }
.stat span { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Card grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold-deep);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; }
.card p:last-child { margin-bottom: 0; }
.card--number { position: relative; }
.card--number .card__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--line); position: absolute; top: 20px; right: 26px; }

.service-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 36px 30px; transition: transform .3s ease, background .3s ease; }
.service-card:hover { transform: translateY(-6px); background: var(--navy-mid); }
.service-card .card__icon { background: rgba(255,255,255,.08); color: var(--gold-light); }
.service-card h3 { color: #fff; }
.service-card p { color: rgba(255,255,255,.72); }
.service-card a.card-link { color: var(--gold-light); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.service-card a.card-link:hover { color: var(--gold); }

/* ---------- Category / product cards ---------- */
.cat-card {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/3.6;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s ease;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.07); }
.cat-card:hover { box-shadow: var(--shadow-lg); }
.cat-card::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(7,23,41,.92) 0%, rgba(7,23,41,.15) 55%, rgba(7,23,41,0) 100%); }
.cat-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
.cat-card__body h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.cat-card__body p { color: rgba(255,255,255,.75); font-size: .86rem; margin: 0; }

.product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 24px; }
.product-list li { position: relative; padding: 6px 0 6px 22px; border-bottom: 1px dashed var(--line); color: var(--ink); font-weight: 500; font-size: .88rem; }
.product-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; font-size: 1rem; }
@media (max-width: 560px) { .product-list { grid-template-columns: 1fr; } }

.product-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; margin-bottom: 32px; }
.product-panel__head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--cream); }
.product-panel__head .card__icon { margin: 0; flex-shrink: 0; }
.product-panel__head h3 { margin: 0; }
.product-panel__head span { color: var(--muted); font-size: .9rem; }

/* ---------- Testimonial / quote ---------- */
.quote-block {
  background: var(--cream); border-radius: var(--radius); padding: 48px; position: relative;
  border-left: 4px solid var(--gold);
}
.quote-block p { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--navy); line-height: 1.5; }
.quote-block cite { font-style: normal; font-weight: 700; color: var(--gold-deep); font-size: .9rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 10px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); opacity: .5; display: block; margin-bottom: 6px;
}
.step h4 { font-size: 1.05rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Logos strip ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.marquee__track span { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); opacity: .45; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: var(--radius);
  padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: .2em; font-size: 1.7rem; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Directional variants — used for images that should slide in from the
   side they sit on (left-column images slide from the left, etc.) */
.reveal-left, .reveal-right {
  opacity: 0; transition: opacity .8s ease, transform .8s ease;
  transition-timing-function: cubic-bezier(.16,.8,.3,1);
}
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
  /* On stacked mobile layouts left/right no longer makes visual sense — fall back to a gentle rise */
  .reveal-left, .reveal-right { transform: translateY(28px); }
  .reveal-left.is-visible, .reveal-right.is-visible { transform: translateY(0); }
}

/* Heading slide-in — top to bottom */
.reveal-down {
  opacity: 0; transform: translateY(-40px);
  transition: opacity .7s ease, transform .7s ease;
  transition-timing-function: cubic-bezier(.16,.8,.3,1);
}
.reveal-down.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   FORMS (contact page)
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px; font-family: inherit;
  font-size: .95rem; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,150,44,.15); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-status { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: .92rem; display: none; }
.form-status.is-success { display: block; background: #eaf6ec; color: #1f6e35; border: 1px solid #bfe6c6; }
.form-status.is-error { display: block; background: #fdecec; color: #a72a2a; border: 1px solid #f4c6c6; }

.info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px; }
.info-card h3 { color: #fff; }
.info-card ul { margin-top: 22px; }
.info-card li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-card li:last-child { border-bottom: none; }
.info-card .icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-light); }
.info-card strong { display: block; color: #fff; font-size: .95rem; }
.info-card span, .info-card a { color: rgba(255,255,255,.72); font-size: .92rem; }
.info-card a:hover { color: var(--gold-light); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
   .site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: 70px; position: relative; }
   .footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
   
   /* Logo sits on its own light card so it reads cleanly against the navy footer */
   .footer__logo-wrap {
     display: inline-flex; align-items: center; background: var(--ivory);
     padding: 14px 22px; border-radius: 8px; margin-bottom: 18px;
   }
   .footer__logo { height: 42px; width: auto; display: block; }
   
   .footer__brand p { color: rgba(255,255,255,.6); max-width: 280px; }
   .footer__social { display: flex; gap: 10px; margin-top: 18px; }
   .footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; transition: all .2s ease; }
   .footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
   .site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .92rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
   .site-footer ul li { margin-bottom: 12px; }
   .site-footer ul li a { color: rgba(255,255,255,.65); transition: color .2s ease; font-size: .93rem; }
   .site-footer ul li a:hover { color: var(--gold-light); }
   
   /* Get in Touch — icon badge + text, vertically centered and evenly spaced */
   .footer__contact li {
     display: flex; align-items: center; gap: 14px;
     padding: 9px 0; margin-bottom: 0;
     border-bottom: 1px solid rgba(255,255,255,.07);
   }
   .footer__contact li:last-child { border-bottom: none; }
   .footer__contact-icon {
     width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
     display: flex; align-items: center; justify-content: center; flex-shrink: 0;
   }
   .footer__contact-icon .icon { width: 14px; height: 14px; color: var(--gold-light); }
   .footer__contact a, .footer__contact-text {
     color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.4; word-break: break-word;
   }
   .footer__contact a:hover { color: var(--gold-light); }
   
  .footer__bottom { padding: 22px 0; }
.footer__credit-link { color: var(--gold-light); font-weight: 600; }
.footer__credit-link:hover { color: var(--gold); }
.footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.45); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FLOATING WHATSAPP / CALL BUTTONS
   ========================================================================== */
.float-actions {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); color: #fff; transition: transform .25s ease, box-shadow .25s ease;
  animation: float-pop .5s ease;
}
.float-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.float-btn--whatsapp { background: #25D366; }
.float-btn--viber { background: #7360F2; }
.float-btn--whatsapp::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .55;
  animation: pulse-ring 2.4s ease-out infinite;
}
.float-btn { position: relative; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes float-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 560px) { .float-btn { width: 50px; height: 50px; } .float-actions { right: 14px; bottom: 14px; } }

/* ---------- Icons (inline currentColor svgs via mask, tiny set) ---------- */
.icon { display: inline-block; width: 15px; height: 15px; background: currentColor; flex-shrink: 0; }
.icon-phone { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.3 11.3 0 0 0 3.54.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.3 11.3 0 0 0 .57 3.54 1 1 0 0 1-.25 1.02z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.3 11.3 0 0 0 3.54.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.3 11.3 0 0 0 .57 3.54 1 1 0 0 1-.25 1.02z'/%3E%3C/svg%3E") center/contain no-repeat; }
.icon-mail { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5.5A1.5 1.5 0 0 1 3.5 4h17A1.5 1.5 0 0 1 22 5.5v13a1.5 1.5 0 0 1-1.5 1.5h-17A1.5 1.5 0 0 1 2 18.5zm2.2.5 7.8 6.2L19.8 6z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5.5A1.5 1.5 0 0 1 3.5 4h17A1.5 1.5 0 0 1 22 5.5v13a1.5 1.5 0 0 1-1.5 1.5h-17A1.5 1.5 0 0 1 2 18.5zm2.2.5 7.8 6.2L19.8 6z'/%3E%3C/svg%3E") center/contain no-repeat; }
.icon-pin { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center/contain no-repeat; }
.icon-clock { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 10.41 4.29 4.3-1.41 1.41L11 13V6h2z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 10.41 4.29 4.3-1.41 1.41L11 13V6h2z'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col-text { columns: 2; column-gap: 40px; }
@media (max-width: 780px) { .two-col-text { columns: 1; } }

/* 404 */
.error-page { padding: 160px 0 120px; text-align: center; }
.error-page h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--gold); }
