/* ============================================================
   Latino Express Multiservice, Inc. — Maria P. Beck
   Brand palette: navy + blue + red (globe logo).
   Color custom-properties below are the single source of truth —
   edit these hex values to fine-tune the brand.
   NOTE: --gold* hold the BLUE accent, --charcoal* hold the NAVY,
   kept as names for backwards-compat with the component classes.
   ============================================================ */
:root {
  /* Brand accent (blue) */
  --gold:        #1C75BC;  /* primary blue */
  --gold-600:    #155E96;  /* darker blue (hover) */
  --gold-300:    #7BC0EE;  /* light blue (on dark bg) */
  /* Brand dark (navy) */
  --charcoal:    #15294D;  /* navy — dark sections */
  --charcoal-900:#0F1E3A;  /* deepest navy */
  --charcoal-700:#1E3A66;  /* mid navy */
  /* Brand CTA (red) */
  --red:         #D81E2C;
  --red-600:     #B5141F;

  /* Neutrals (cool) */
  --bg:          #FFFFFF;
  --bg-soft:     #F1F5FA;
  --bg-cream:    #F7FAFD;
  --text:        #15202B;
  --text-soft:   #54606E;
  --line:        #DBE4EE;
  --white:       #FFFFFF;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0 0 1rem; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Section rhythm */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }
.section--dark { background: var(--charcoal); color: #F3EFE8; }

/* Eyebrow + heading pattern (Goldstein style) */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--text-soft);
  margin: 0 0 .35rem;
}
.section--dark .eyebrow { color: var(--gold-300); }
.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: .005em;
  color: var(--gold);
}
.heading-block { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.heading-block .lead { color: var(--text-soft); font-size: 1.18rem; margin-top: .75rem; }
.section--dark .heading-block .lead { color: #D8D2C8; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: .82rem;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-600); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-600); }
.btn--ghost-light { border-color: #fff; color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--charcoal); }
.btn--ghost-dark { border-color: var(--charcoal); color: var(--charcoal); }
.btn--ghost-dark:hover { background: var(--charcoal); color: #fff; }
.btn .icon { width: 18px; height: 18px; }

/* Inline arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: var(--gold-600); letter-spacing: .02em;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* -------------------- Top utility bar -------------------- */
.topbar {
  background: var(--charcoal-900); color: #CFC9BF;
  font-size: .82rem; letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: 26px; height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; color: #CFC9BF; transition: color .2s; }
.topbar a:hover { color: var(--gold-300); }
.topbar svg { width: 14px; height: 14px; }
.topbar .badge { color: var(--gold-300); font-weight: 600; }

/* -------------------- Header / nav -------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--charcoal); box-shadow: 0 2px 14px rgba(0,0,0,.18); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark .name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  letter-spacing: .04em; color: #fff;
}
.brand .wordmark .sub {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-300); margin-top: 3px;
}

.menu { display: flex; align-items: center; gap: 34px; }
.menu a {
  color: #EDE8E0; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-size: .82rem; padding: 6px 0; position: relative;
}
.menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.menu a.active { color: #fff; }
.menu .btn { padding: 11px 22px; }

.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: #fff; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33,30,27,.86) 0%, rgba(33,30,27,.64) 45%, rgba(33,30,27,.9) 100%),
    radial-gradient(120% 90% at 75% 10%, #4a4035 0%, #2c2823 55%, #211e1b 100%);
}
.hero::after { /* subtle globe/light accent, no external image needed */
  content: ""; position: absolute; right: -160px; top: -150px; width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(28,117,188,.38), rgba(28,117,188,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::before { /* second soft red glow for brand balance */
  content: ""; position: absolute; left: -160px; bottom: -180px; width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(216,30,44,.18), rgba(216,30,44,0) 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero--home { padding: 132px 0 124px; }
.hero--page { padding: 88px 0 72px; }
.hero__eyebrow {
  letter-spacing: .26em; text-transform: uppercase; font-weight: 700;
  font-size: .82rem; color: var(--gold-300); margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: .01em; margin: 0;
}
.hero--page .hero__title { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--gold-300); }
.hero__subtitle {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: #E7E1D6;
  max-width: 640px; margin: 1.4rem 0 2.2rem; line-height: 1.5;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.breadcrumb { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 1rem; font-weight: 700; }
.breadcrumb span { color: #cfc9bf; }

/* -------------------- Statement band -------------------- */
.statement { background: var(--charcoal); color: #F3EFE8; text-align: center; padding: 76px 0; }
.statement .quote {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.75rem); line-height: 1.3; max-width: 980px;
  margin: 0 auto; color: #fff;
}
.statement .quote .hl { color: var(--gold-300); font-style: normal; }
.statement .by { margin-top: 1.4rem; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--gold-300); font-weight: 700; }

/* -------------------- Service grid (cards) -------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(45,42,38,.13); }
.card .ico {
  width: 48px; height: 48px; color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.card .ico svg { width: 38px; height: 38px; }
.card h3 { font-family: var(--serif); font-size: 1.55rem; color: var(--charcoal); }
.card p { color: var(--text-soft); font-size: .98rem; margin: 0; flex: 1; }
.card .arrow-link { margin-top: 14px; }

/* -------------------- Interactive services (accordion) -------------------- */
.svc-list { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.svc {
  border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); background: #fff; overflow: hidden;
  transition: box-shadow .2s var(--ease);
}
.svc.open { box-shadow: 0 14px 30px rgba(45,42,38,.12); }
.svc__btn {
  width: 100%; display: flex; align-items: center; gap: 18px;
  background: none; border: 0; padding: 22px 24px; text-align: left;
}
.svc__btn .ico { width: 42px; height: 42px; color: var(--gold); flex: none; display: flex; align-items: center; justify-content: center; }
.svc__btn .ico svg { width: 32px; height: 32px; }
.svc__btn .t { flex: 1; }
.svc__btn .t .title {
  font-family: var(--serif); font-size: 1.45rem; color: var(--charcoal); font-weight: 600;
  text-transform: uppercase; letter-spacing: .02em;
}
.svc__btn .t .title { text-transform: none; }
.svc__btn .chev {
  width: 26px; height: 26px; color: var(--gold); flex: none;
  transition: transform .25s var(--ease);
}
.svc.open .svc__btn .chev { transform: rotate(180deg); }
.svc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}
.svc.open .svc__panel { grid-template-rows: 1fr; }
.svc__panel > div { overflow: hidden; }
.svc__inner { padding: 0 24px 26px 84px; }
.svc__inner p { color: var(--text-soft); }
.svc__inner ul { margin: .4rem 0 1.2rem; padding-left: 1.1rem; color: var(--text-soft); }
.svc__inner ul li { margin-bottom: .35rem; }

/* -------------------- Split section -------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__media { min-height: 440px; background-size: cover; background-position: center; }
.split__panel { background: var(--charcoal); color: #F3EFE8; padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; }
.split__panel.right { padding-left: 60px; }
.split--reverse .split__media { order: 2; }
.split__panel h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-300); margin-bottom: 1rem; }
.split__panel p { color: #DAD4CA; font-size: 1.06rem; }
.split__panel .btn { margin-top: 14px; align-self: flex-start; }

/* Placeholder portrait (until real photo provided) */
.portrait-ph {
  width: 100%; height: 100%; min-height: 440px;
  background: radial-gradient(120% 120% at 30% 20%, #3a352f 0%, #211e1b 70%);
  display: flex; align-items: center; justify-content: center; color: var(--gold-300);
}
.portrait-ph .ring {
  width: 190px; height: 190px; border-radius: 50%; border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  font-family: var(--serif);
}
.portrait-ph .ring .initials { font-size: 4rem; font-weight: 600; color: #fff; line-height: 1; }
.portrait-ph .ring .cap { font-family: var(--sans); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; margin-top: 8px; color: var(--gold-300); }

/* -------------------- Stats band -------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold); font-weight: 600; line-height: 1; }
.stat .lbl { margin-top: .5rem; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--text-soft); font-weight: 700; }
.section--dark .stat .lbl { color: #CFC9BF; }

/* -------------------- Values / list grid -------------------- */
.vlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vitem { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.vitem .ico { color: var(--gold); width: 40px; height: 40px; margin-bottom: 10px; }
.vitem .ico svg { width: 34px; height: 34px; }
.vitem h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--charcoal); margin-bottom: .4rem; }
.vitem p { color: var(--text-soft); font-size: .96rem; margin: 0; }

/* link list (Goldstein "we provide" style) */
.linklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; max-width: 920px; margin: 0 auto; }
.linklist a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; border-bottom: 1px solid var(--line);
  color: var(--gold-600); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-size: .96rem; transition: color .2s, padding .2s var(--ease);
}
.linklist a:hover { color: var(--gold); padding-left: 10px; }
.linklist a svg { width: 16px; height: 16px; opacity: 0; transition: opacity .2s; }
.linklist a:hover svg { opacity: 1; }

/* -------------------- CTA band -------------------- */
.cta { text-align: center; }
.cta h2 { font-family: var(--serif); font-size: clamp(2rem, 4.4vw, 3rem); color: #fff; margin-bottom: .6rem; }
.cta p { color: #D8D2C8; max-width: 620px; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -------------------- Footer -------------------- */
.footer { background: var(--charcoal-900); color: #C9C3B9; padding: 70px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { color: #C9C3B9; transition: color .2s; }
.footer ul a:hover { color: var(--gold-300); }
.footer .brand .wordmark .name { color: #fff; }
.footer .fdesc { color: #A9A398; font-size: .95rem; margin-top: 1rem; max-width: 320px; }
.footer .contactline { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; color: #C9C3B9; }
.footer .contactline svg { width: 16px; height: 16px; color: var(--gold-300); flex: none; }
.footer__bottom {
  border-top: 1px solid #3a352f; padding: 22px 0; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px; font-size: .85rem; color: #908A80;
}
.footer__bottom a { color: #908A80; } .footer__bottom a:hover { color: var(--gold-300); }
.socials { display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; border: 1px solid #3a352f; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--gold); color: var(--gold-300); }
.socials svg { width: 18px; height: 18px; }

/* Floating contact (WhatsApp-style, Goldstein had a floating chat) */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,.25); transition: transform .15s var(--ease), background .2s; }
.fab a:hover { transform: scale(1.06); background: var(--gold-600); }
.fab svg { width: 28px; height: 28px; }

/* -------------------- Reveal on scroll -------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu { position: fixed; inset: 124px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--charcoal); padding: 8px 0 18px; transform: translateY(-130%);
    transition: transform .3s var(--ease); box-shadow: 0 16px 30px rgba(0,0,0,.3); }
  .menu.open { transform: translateY(0); }
  .menu a { width: 100%; padding: 16px 24px; }
  .menu a::after { display: none; }
  .menu .btn { margin: 12px 24px 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__panel { padding: 48px 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .vlist { grid-template-columns: 1fr; }
  .linklist { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; gap: 16px; flex-wrap: wrap; }
  .topbar .hide-sm { display: none; }
  .svc__inner { padding-left: 24px; }
  .section { padding: 60px 0; }
}
@media (max-width: 420px) {
  .brand .wordmark .name { font-size: 1.25rem; }
  .hero--home { padding: 96px 0 88px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
