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

:root{
    --gold:#D4AF6A;
    --gold-deep:#A07830;
    --black:#0F0F0F;
    --graphite:#3A3A3A;
    --silver:#909090;
    --ivory:#F7F4EF;
    --linen:#EAE6DE;
    --white:#FFFFFF;
}

body{
    font-family:'DM Sans',sans-serif;
    background:var(--ivory);
    color:var(--graphite);
    overflow-x:hidden;
}
.footer-logo {
    max-width: 13rem;
}

.maintenance{
    margin-top:10rem;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem;
    position:relative;
}

.maintenance::before{
    content:"TRAFFICGRU";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    font-family:'Playfair Display',serif;
    font-size:clamp(5rem,18vw,16rem);
    font-style:italic;
    font-weight:600;

    color:transparent;
    -webkit-text-stroke:1px rgba(212,175,106,.12);

    pointer-events:none;
    user-select:none;
}

.container{
    max-width:760px;
    text-align:center;
    position:relative;
    z-index:2;
}

.eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.8rem;

    margin-bottom:2rem;

    font-size:.75rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:600;

    color:var(--gold-deep);
}

.eyebrow span{
    width:36px;
    height:1px;
    background:var(--gold);
}

h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(3rem,7vw,5.5rem);
    line-height:1.05;
    font-weight:500;
    color:var(--black);

    margin-bottom:1.5rem;
}

h1 em{
    display:block;
    color:var(--gold);
    font-style:italic;
    font-weight:500;
}

.description{
    max-width:620px;
    margin:0 auto;

    font-size:1.05rem;
    line-height:2;
    font-weight:300;

    color:var(--silver);
}

.divider{
    width:100px;
    height:1px;
    background:var(--gold);

    margin:3rem auto;
}

.status{
    display:inline-flex;
    align-items:center;
    gap:.8rem;

    padding:1rem 1.5rem;

    border:1px solid var(--linen);
    background:var(--white);

    border-radius:999px;

    font-size:.9rem;
    color:var(--graphite);
}

.status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--gold);

    animation:pulse 2s infinite;
}

@keyframes pulse{

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

    50%{
        transform:scale(1.4);
        opacity:.5;
    }

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

}

.contact{
    margin-top:2.5rem;
    color:var(--silver);
    font-size:.95rem;
}

.contact a{
    color:var(--gold-deep);
    text-decoration:none;
    font-weight:500;
}

.contact a:hover{
    color:var(--black);
}

@media(max-width:768px){

    body{
        overflow:auto;
    }

    .maintenance{
        padding:2rem 1.5rem;
    }

    .description{
        font-size:.95rem;
    }

    .maintenance::before{
        font-size:6rem;
    }

}
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  width: 100%;
  min-height: 4.5rem;

  padding-inline: clamp(1.2rem, 5vw, 5rem);
  padding-block: 0.9rem;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 0.0625rem solid var(--linen);

  box-shadow:
    0 0.0625rem 0 rgba(0, 0, 0, 0.03),
    0 0.625rem 2.5rem rgba(0, 0, 0, 0.04);

  will-change: transform;
  transform: translateZ(0);
}

.nav-logo {
  position: relative;
  z-index: 210;

  display: flex;
  align-items: center;

  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: clamp(8rem, 10vw, 10.5rem);
  height: auto;
  display: block;
  object-fit: contain;
}
 
.logo-mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
 
.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 500; color: var(--black);
}
 
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--black); letter-spacing: 0.12em;
}
 
.nav-links {
  display: flex; align-items: center; gap: 34px; list-style: none;
}
 
.nav-links a {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
 
.nav-ctas { display: flex; align-items: center; gap: 10px; }
 
.btn-outline {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--black); border: 1px solid var(--black);
  padding: 9px 20px; border-radius: 2px; cursor: pointer; font-weight: 500;
  transition: background 0.2s, color 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
 
.btn-gold {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  padding: 9px 22px; border-radius: 2px; cursor: pointer; font-weight: 600;
  transition: background 0.2s; text-decoration: none;
  white-space: nowrap; display: inline-block;
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
 
/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; z-index: 210; gap: 5px; padding: 0;
}
 
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--black);
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
 
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* ── MOBILE MENU ──
   FIX: Use opacity+visibility toggle instead of display toggle.
   Avoids layout recalculation when menu opens/closes. */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190; background: var(--white);
  flex-direction: column;
  padding: 96px 8vw 60px;
  opacity: 0;
  visibility: hidden;
  /* GPU-composited transition — no layout/paint cost */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}
 
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
 
.mobile-menu-links {
  list-style: none; flex: 1; display: flex; flex-direction: column;
}
 
.mobile-menu-links li { border-bottom: 0.5px solid var(--linen); }
 
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 400; color: var(--black);
  text-decoration: none; padding: 1.1rem 0;
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); }
 
.mobile-menu-links a .arrow {
  font-size: 1rem; color: var(--linen);
  transition: color 0.2s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.mobile-menu-links a:hover .arrow { color: var(--gold); transform: translateX(4px); }
 
.mobile-menu-btns {
  display: flex; gap: 10px; margin-top: 2.5rem; flex-wrap: wrap;
}
 
.mobile-menu-btns .btn-outline,
.mobile-menu-btns .btn-gold {
  flex: 1; text-align: center; padding: 14px 20px; font-size: 12px;
}
 
.mobile-meta {
  margin-top: 2rem; font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--linen);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ctas  { display: none; }
  .hamburger { display: flex; }
}
/* ══════════════════════════════════════
   MAIN FOOTER
══════════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 0.5px solid var(--linen);
}

/* ── TOP SECTION: logo + nav columns ── */
.footer-top {
  padding: 72px 6vw 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4vw;
  border-bottom: 0.5px solid var(--linen);
}

/* brand column */
.footer-brand {}

.footer-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; margin-bottom: 1.4rem;
}

.footer-logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--black);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.footer-logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 500; color: var(--black);
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--black); letter-spacing: 0.12em;
}

.footer-tagline {
  font-size: 13px; font-weight: 300; color: var(--silver);
  line-height: 1.7; max-width: 240px; margin-bottom: 1.8rem;
}

/* social icons */
.footer-socials {
  display: flex; gap: 8px; margin-bottom: 2rem;
}

.social-icon {
  width: 34px; height: 34px;
  border: 0.5px solid var(--linen);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { background: var(--black); border-color: var(--black); color: var(--gold); }

/* awards strip */
.footer-awards {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.award-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--ivory);
  border: 0.5px solid var(--linen);
  padding: 5px 10px; border-radius: 2px;
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); font-weight: 500;
}
.award-badge svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }

/* nav columns */
.footer-col {}

.footer-col-title {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); font-weight: 500;
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 8px;
}
.footer-col-title::after {
  content: '';
  flex: 1; height: 0.5px; background: var(--linen);
}

.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.footer-col ul a {
  font-size: 13px; font-weight: 300; color: var(--silver);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0;
}
.footer-col ul a:hover { color: var(--black); }
.footer-col ul a:hover .link-arrow { opacity: 1; transform: translateX(4px); }

.link-arrow {
  opacity: 0; font-size: 11px; margin-left: 4px;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}

/* newsletter column */
.footer-newsletter {}

.footer-newsletter p {
  font-size: 12.5px; font-weight: 300; color: var(--silver);
  line-height: 1.65; margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex; flex-direction: column; gap: 8px;
}

.newsletter-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 300;
  color: var(--black); background: var(--ivory);
  border: 0.5px solid var(--linen);
  border-radius: 2px; padding: 11px 14px; outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-input::placeholder { color: #b5b0a6; }
.newsletter-input:focus { border-color: var(--gold); background: var(--white); }

.newsletter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--black); color: var(--white); border: none;
  padding: 12px; border-radius: 2px; cursor: pointer; font-weight: 500;
  transition: background 0.2s; width: 100%;
}
.newsletter-btn:hover { background: var(--graphite); }

.newsletter-note {
  font-size: 10px; color: var(--silver); opacity: 0.7;
  letter-spacing: 0.03em; margin-top: 2px;
}

/* ── STATS BAR ── */
.footer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--linen);
}

.footer-stat {
  padding: 2rem 6vw;
  border-right: 0.5px solid var(--linen);
  display: flex; align-items: center; gap: 16px;
}
.footer-stat:last-child { border-right: none; }
.footer-stat:first-child { padding-left: 6vw; }

.stat-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 0.5px solid var(--linen);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
}
.stat-icon-wrap svg { width: 18px; height: 18px; color: var(--gold); }

.footer-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--black); line-height: 1;
}
.footer-stat-lbl {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); margin-top: 2px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  padding: 20px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy {
  font-size: 11px; color: var(--silver); letter-spacing: 0.04em;
}
.footer-copy span { color: var(--gold-deep); }

.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 11px; color: var(--silver); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--black); }

.footer-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--silver);
}
.footer-location svg { width: 12px; height: 12px; color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: span 3; }
  .footer-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-stat:nth-child(2) { border-right: none; }
  .footer-stat:nth-child(3) { border-top: 0.5px solid var(--linen); }
  .footer-stat:nth-child(4) { border-top: 0.5px solid var(--linen); border-right: none; }
}

@media (max-width: 700px) {
    body{overflow-x: hidden;}
  .footer-cta-band { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band-right { align-items: flex-start; }
  .footer-cta-band::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
  .footer-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
    body{overflow-x: hidden;}
  .footer-top { grid-template-columns: 1fr; }
  .footer-stats { grid-template-columns: 1fr; }
  .footer-stat { border-right: none !important; border-top: 0.5px solid var(--linen); }
  .footer-stat:first-child { border-top: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ── FAB BUTTON ── */
.sw-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22), 0 0 0 0 rgba(212,175,106,0);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  will-change: transform;
  outline: none;
}

.sw-fab:hover {
  background: var(--graphite);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28), 0 0 0 6px rgba(212,175,106,0.1);
}

/* pulse ring */
.sw-fab::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,106,0.35);
  animation: swPulse 2.5s ease-in-out infinite;
}

@keyframes swPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.35); }
}

/* icon states */
.sw-fab-icon-open,
.sw-fab-icon-close {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--gold);
  transition: opacity 0.25s, transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.sw-fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.sw-fab.active .sw-fab-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.sw-fab.active .sw-fab-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.sw-fab.active {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 1px var(--linen);
}

.sw-fab.active .sw-fab-icon-open,
.sw-fab.active .sw-fab-icon-close { color: var(--black); }

/* ── PANEL ── */
.sw-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9997;
  width: 320px;
  background: var(--ivory);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 0.5px rgba(255,255,255,0.06);

  /* closed state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 0.35s cubic-bezier(.22,1,.36,1),
    transform 0.35s cubic-bezier(.22,1,.36,1),
    visibility 0.35s;
  pointer-events: none;
}

.sw-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* stagger children in */
.sw-panel.open .sw-panel-header { animation: swSlideIn 0.4s 0.05s cubic-bezier(.22,1,.36,1) both; }
.sw-panel.open .sw-item:nth-child(1) { animation: swSlideIn 0.4s 0.12s cubic-bezier(.22,1,.36,1) both; }
.sw-panel.open .sw-item:nth-child(2) { animation: swSlideIn 0.4s 0.19s cubic-bezier(.22,1,.36,1) both; }
.sw-panel.open .sw-item:nth-child(3) { animation: swSlideIn 0.4s 0.26s cubic-bezier(.22,1,.36,1) both; }

@keyframes swSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PANEL HEADER ── */
.sw-panel-header { margin-bottom: 20px; }

.sw-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,106,0.15);
  border: 0.5px solid rgba(212,175,106,0.3);
  padding: 4px 12px; border-radius: 20px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px; display: inline-flex;
}
.sw-badge span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.sw-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 400; color: var(--white);
  line-height: 1.15;
  color: var(--black);
}
.sw-heading strong { font-weight: 600; }

/* ── ITEMS ── */
.sw-items { display: flex; flex-direction: column; gap: 8px; }

.sw-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  will-change: transform;
}

.sw-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,106,0.25);
  transform: translateX(-3px);
}

.sw-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sw-item:hover .sw-item-icon { transform: scale(1.08); }

/* per-channel icon bg */
.sw-item-whatsapp .sw-item-icon  { background: rgba(37,211,102,0.15); }
.sw-item-email    .sw-item-icon  { background: rgba(212,175,106,0.15); }
.sw-item-call     .sw-item-icon  { background: rgba(96,165,250,0.15); }

.sw-item-icon svg { width: 20px; height: 20px; }
.sw-item-whatsapp .sw-item-icon svg { color: #25D366; }
.sw-item-email    .sw-item-icon svg { color: var(--gold); }
.sw-item-call     .sw-item-icon svg { color: #60A5FA; }

.sw-item-text { flex: 1; min-width: 0; color: var(--black);}

.sw-item-name {
  font-size: 14px; font-weight: 500; color: var(--black);
  line-height: 1.2; margin-bottom: 2px;
}

.sw-item-sub {
  font-size: 11.5px; font-weight: 300; color: var(--black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.sw-item-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
}
.sw-item:hover .sw-item-arrow {
  color: var(--gold);
  transform: translateX(3px);
}
.sw-item-arrow svg { width: 14px; height: 14px; }

/* ── BACKDROP (mobile only) ── */
.sw-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9996;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sw-backdrop.open { opacity: 1; pointer-events: all; }

@media (max-width: 540px) {
  .sw-backdrop { display: block; }

  .sw-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transform-origin: bottom center;
  }

  .sw-panel.open { transform: translateY(0); }

  .sw-fab { bottom: 20px; right: 20px; }
}



