/* ══════════════════════════════════════════
   RYDEX Airport Transfer — Main Stylesheet
   Edit colors in :root, typography, layout
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:    #C9A84C;
  --gold-l:  #E8C97A;
  --gold-d:  #9A7A2E;
  --black:   #080808;
  --dark:    #111111;
  --dark2:   #181818;
  --dark3:   #1E1E1E;
  --white:   #F5F3EF;
  --off:     #D0CCC4;
  --gray:    #888888;
  --gray2:   #555555;

  /* Typography scale */
  --fs-xs:   11px;
  --fs-sm:   13px;
  --fs-base: 15px;
  --fs-md:   17px;
  --fs-lg:   20px;
  --fs-xl:   clamp(2rem, 3.2vw, 3rem);
  --fs-h1:   clamp(3rem, 5vw, 5.2rem);

  /* Spacing */
  --section-pad: 8rem 4vw;
  --nav-h: 72px;
  --lang-h: 40px;
  --top-offset: 112px; /* lang-h + nav-h */
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILS ── */
.body-text  { font-size: var(--fs-base); color: var(--gray); line-height: 1.95; }
.gold-line  { width: 50px; height: 1px; background: var(--gold); margin: 1.6rem 0; }
.sec-inner  { max-width: 1200px; margin: 0 auto; }
.sec-label  {
  font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.sec-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.sec-title  {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-xl);
  font-weight: 300; line-height: 1.1;
}
.sec-title em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  padding: 15px 32px; border-radius: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: none; transition: all .3s;
}
.btn-p:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.3); }

.btn-o {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,.35); color: var(--off);
  padding: 15px 32px; border-radius: 2px;
  font-size: 12px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.btn-o:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.05); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--black); color: var(--gold);
  padding: 15px 32px; border-radius: 2px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.btn-dark:hover { background: var(--dark2); }

.btn-wt {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(0,0,0,.3); color: var(--black);
  padding: 14px 32px; border-radius: 2px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.btn-wt:hover { border-color: var(--black); background: rgba(0,0,0,.08); }

/* ── LANG BAR ── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--lang-h);
  background: rgba(8,8,8,.98);
  border-bottom: 1px solid rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
}
.lang-info { font-size: 11px; letter-spacing: 1.5px; color: var(--gray2); }
.lang-info span { color: var(--gold); }
.lang-switcher { display: flex; gap: 5px; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid transparent; color: var(--gray);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; transition: all .2s;
  text-decoration: none;
}
.lang-btn .flag { font-size: 14px; line-height: 1; }
.lang-btn .lang-code { font-size: 10px; }
.lang-btn.active, .lang-btn:hover { color: var(--gold); border-color: rgba(201,168,76,.45); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: var(--lang-h); left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 4vw;
  background: rgba(8,8,8,.97);
  border-bottom: 1px solid rgba(201,168,76,.08);
  backdrop-filter: blur(20px);
  transition: all .4s;
}
nav.scrolled {
  height: 62px;
  background: rgba(8,8,8,.99);
  border-bottom-color: rgba(201,168,76,.18);
}
.nav-logo img {
  height: 48px;
  object-fit: contain;
  transition: height .3s;
}
nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 10px 22px !important; border-radius: 2px;
  font-weight: 600 !important; letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-l) !important; color: var(--black) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mob {
  display: none; position: fixed; top: calc(var(--lang-h) + var(--nav-h));
  left: 0; right: 0; background: rgba(8,8,8,.99); z-index: 998;
  border-bottom: 1px solid rgba(201,168,76,.12); max-height: 0;
  overflow: hidden; transition: max-height .4s ease;
}
.mob.open { display: block; max-height: 100vh; }
.mob a {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 1.1rem 5vw; border-bottom: 1px solid rgba(255,255,255,.04); transition: all .25s;
}
.mob a:hover { color: var(--gold); padding-left: calc(5vw + 8px); }
.mob-divider { height: 1px; background: rgba(201,168,76,.12); margin: .3rem 0; }
.mob-cta { background: rgba(201,168,76,.1) !important; color: var(--gold) !important; }
.mob-phone { color: var(--off) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: var(--top-offset);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #080808 0%, #0d0a04 45%, #080808 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 72% 48%, rgba(201,168,76,.065) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-line {
  position: absolute; top: -5%; right: 30%; width: 1px; height: 115%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,.2) 35%, rgba(201,168,76,.2) 65%, transparent);
  transform: rotate(10deg);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1340px; width: 100%; margin: 0 auto; padding: 0 4vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-text { animation: fadeUp .85s cubic-bezier(.22,1,.36,1) both; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.badge::before, .badge::after { content: ''; height: 1px; background: rgba(201,168,76,.5); }
.badge::before { width: 24px; }
.badge::after  { width: 12px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h1);
  font-weight: 300; line-height: 1.05; letter-spacing: -1px; margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold); display: block; }

.hero-sub { font-size: var(--fs-base); color: var(--gray); line-height: 1.95; max-width: 420px; margin-bottom: 1.2rem; }

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; margin-top: 1rem;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray2); }
.trust-dot   { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { animation: fadeUp .85s .15s cubic-bezier(.22,1,.36,1) both; }
.hero-img-frame { position: relative; }
.hero-img-frame::before {
  content: ''; position: absolute; top: -12px; right: -12px; bottom: 12px; left: 12px;
  border: 1px solid rgba(201,168,76,.2); border-radius: 2px; z-index: 0;
}
.hero-img-frame img {
  width: 100%; border-radius: 2px; position: relative; z-index: 1;
  object-fit: cover; max-height: 540px;
}
.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px; z-index: 2;
  background: var(--dark2); border: 1px solid rgba(201,168,76,.28);
  padding: 1.2rem 1.6rem; border-radius: 2px;
}
.hbf-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hbf-txt { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* Hero stats bar */
.hero-stats-outer { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; }
.hero-stats-bar {
  max-width: 1340px; margin: 0 auto; padding: 0 4vw 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  border-top: 1px solid rgba(201,168,76,.1);
  padding-top: 2rem;
}
.hstat { text-align: center; }
.hstat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 500; color: var(--gold); line-height: 1; }
.hstat-l { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* ── MARQUEE ── */
.strip { overflow: hidden; background: var(--gold); padding: .75rem 0; white-space: nowrap; }
.strip-inner { display: inline-flex; gap: 0; animation: marquee 24s linear infinite; }
.strip-item { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--black); font-weight: 600; padding: 0 2.5rem; }
.strip-sep  { color: rgba(0,0,0,.3); font-size: 9px; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── SECTIONS ── */
section { padding: var(--section-pad); }

/* ── SERVICES ── */
#services { background: var(--dark); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 4rem;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.1);
}
.svc-card {
  background: var(--dark); padding: 3.2rem 2.8rem;
  position: relative; overflow: hidden; transition: background .35s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold));
  transition: width .45s;
}
.svc-card:hover { background: var(--dark2); }
.svc-card:hover::after { width: 100%; }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(201,168,76,.3); letter-spacing: 3px; margin-bottom: 1.5rem; display: block; }
.svc-icon-wrap {
  width: 54px; height: 54px; border: 1px solid rgba(201,168,76,.22); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem; transition: all .3s;
}
.svc-card:hover .svc-icon-wrap { border-color: var(--gold); background: rgba(201,168,76,.07); }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; letter-spacing: .5px; margin-bottom: 1rem; }
.svc-card p  { font-size: var(--fs-base); color: var(--gray); line-height: 1.85; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,.45); margin-top: 1.5rem; transition: color .3s;
}
.svc-link::after { content: ' →'; }
.svc-card:hover .svc-link { color: var(--gold); }

/* ── WHY US ── */
#why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; border-radius: 2px; object-fit: cover; }
.why-img-wrap::before {
  content: ''; position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(201,168,76,.18); border-radius: 2px; z-index: -1;
}
.why-stat-box {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--black);
  padding: 1.4rem 1.8rem; border-radius: 2px; text-align: center;
}
.wsn { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; line-height: 1; }
.wsl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 40px; height: 40px; border: 1px solid rgba(201,168,76,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--gold);
}
.why-point h4 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.why-point p  { font-size: 12.5px; color: var(--gray); line-height: 1.75; }

/* ── HOW IT WORKS ── */
.how-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3) 20%, rgba(201,168,76,.3) 80%, transparent);
}
.step { padding: 0 1.5rem; text-align: center; }
.step-num {
  width: 58px; height: 58px; border: 1px solid rgba(201,168,76,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--gold);
  background: var(--dark); position: relative; z-index: 1; transition: all .35s;
}
.step:hover .step-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: .7rem; }
.step p  { font-size: var(--fs-sm); color: var(--gray); line-height: 1.8; }

/* ── AREAS ── */
#areas { background: var(--black); }
.areas-top { margin-bottom: 3rem; }
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.08);
}
.area-card { background: var(--dark); padding: 2.2rem 2rem; transition: background .3s; }
.area-card:hover { background: var(--dark2); }
.area-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; margin-bottom: .5rem; }
.area-dist { font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-bottom: .8rem; }
.area-info { font-size: var(--fs-sm); color: var(--gray); line-height: 1.75; }

/* ── REVIEWS ── */
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem;
}
.reviews-score { text-align: right; }
.rs-num   { font-family: 'Cormorant Garamond', serif; font-size: 3.8rem; color: var(--gold); line-height: 1; font-weight: 500; }
.rs-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rs-base  { font-size: 11px; color: var(--gray); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,.08);
  padding: 2.6rem; border-radius: 2px; transition: border-color .3s;
}
.review-card:hover { border-color: rgba(201,168,76,.22); }
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
.review-text {
  font-size: var(--fs-base); color: var(--off); line-height: 1.9;
  font-style: italic; margin-bottom: 1.5rem;
}
.review-text::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: rgba(201,168,76,.2); line-height: 0;
  vertical-align: -.6rem; margin-right: 4px;
}
.review-author  { display: flex; align-items: center; gap: .9rem; }
.review-avatar  {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold);
}
.review-name { font-size: 13px; font-weight: 500; color: var(--white); }
.review-meta { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ── PRICING ── */
#pricing { background: var(--black); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.price-card {
  border: 1px solid rgba(201,168,76,.12); padding: 2.8rem;
  border-radius: 2px; transition: all .35s; position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .35s;
}
.price-card:hover { border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.03); }
.price-card:hover::before { background: var(--gold); }
.price-card.featured { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.04); }
.price-card.featured::before { background: var(--gold); }
.price-tag {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--black);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 9px; border-radius: 1px; font-weight: 600;
}
.price-icon  { font-size: 2rem; margin-bottom: 1.2rem; }
.price-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; margin-bottom: .6rem; }
.price-desc  { font-size: var(--fs-sm); color: var(--gray); line-height: 1.8; margin-bottom: 1.8rem; }
.price-includes { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pi { display: flex; align-items: center; gap: .9rem; font-size: 13px; color: var(--gray); }
.pi::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }
.price-cta {
  display: block; text-align: center;
  border: 1px solid rgba(201,168,76,.3); color: var(--gold);
  padding: 12px; border-radius: 2px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  transition: all .3s;
}
.price-cta:hover,
.price-card.featured .price-cta { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── ABOUT ── */
#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 2px; object-fit: cover; }
.about-img-wrap::before {
  content: ''; position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(201,168,76,.18); border-radius: 2px; z-index: -1;
}
.feats { display: flex; flex-direction: column; gap: .95rem; margin-top: 2rem; }
.feat  { display: flex; align-items: center; gap: 1rem; font-size: var(--fs-base); color: var(--gray); }
.feat::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-d) 100%);
  padding: 5.5rem 4vw; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; color: var(--black); margin-bottom: .8rem;
}
.cta-banner p { font-size: var(--fs-base); color: rgba(0,0,0,.6); margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; }
.c-items  { display: flex; flex-direction: column; gap: 1rem; }
.c-item   {
  display: flex; align-items: center; gap: 1.2rem;
  border: 1px solid rgba(201,168,76,.1); border-radius: 2px; padding: 1.3rem 1.5rem;
  transition: all .3s; color: inherit;
}
.c-item:hover { border-color: rgba(201,168,76,.32); background: rgba(201,168,76,.04); transform: translateX(5px); }
.c-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,.08); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.c-txt strong { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-txt span   { font-size: var(--fs-base); color: var(--white); }
.map-box { margin-top: 1.2rem; border: 1px solid rgba(201,168,76,.1); border-radius: 2px; overflow: hidden; }
.map-box iframe { display: block; width: 100%; height: 270px; filter: invert(87%) hue-rotate(180deg) brightness(.82) contrast(1.05); }

/* ── FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fg input,
.fg textarea,
.fg select {
  width: 100%; background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.16); color: var(--white);
  padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: var(--fs-base);
  border-radius: 2px; outline: none; transition: border-color .3s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus  { border-color: rgba(201,168,76,.55); }
.fg input::placeholder,
.fg textarea::placeholder { color: var(--gray2); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--dark); }

/* ── FOOTER ── */
footer { background: #060606; padding: 5rem 4vw 2rem; border-top: 1px solid rgba(201,168,76,.08); }
.ft-inner {}
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.04); margin-bottom: 2rem; }
.ft-logo   { height: 52px; object-fit: contain; margin-bottom: 1.4rem; }
.ft-tag    { font-size: 13px; color: var(--gray); line-height: 1.85; max-width: 240px; margin-bottom: 1.6rem; }
.ft-socials { display: flex; gap: 9px; }
.ft-soc {
  width: 36px; height: 36px; border: 1px solid rgba(201,168,76,.16); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray); transition: all .3s;
}
.ft-soc:hover { border-color: var(--gold); color: var(--gold); }
.ft-col h4   { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.ft-col a,
.ft-col p    { display: block; font-size: 13px; color: var(--gray); margin-bottom: .6rem; transition: color .25s; line-height: 1.7; }
.ft-col a:hover { color: var(--white); }
.ft-bottom  { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(136,136,136,.35); flex-wrap: wrap; gap: .8rem; }

/* ── FLOATS ── */
.fabs { position: fixed; bottom: 1.8rem; right: 1.8rem; display: flex; flex-direction: column; gap: 10px; z-index: 900; }
.fab  {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.7); transition: transform .3s, box-shadow .3s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(0,0,0,.8); }
.fab-wa { background: #25D366; }
.fab-ph { background: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── LANG ── */
[data-lang] { display: none; }
[data-lang].active { display: block; }
