:root {
  /* Palette: Tabacco / Stone / Coffee / Cream / Chai / Walnut */
  --tabacco: #a89982;
  --stone: #aaa297;
  --coffee: #5a493b;
  --cream: #c8bdb1;
  --chai: #968473;
  --walnut: #60544d;
  --grove: #5a493b;         /* alias kept: primary accent = Coffee */

  --bg: #c8bdb1;            /* Cream — page background (alternating sections) */
  --card: #efe8df;          /* lighter cream — cards / inputs */
  --ink: #322922;           /* deep Coffee, near-black */
  --muted: #554738;         /* dark Chai — legible on both Cream and Stone */
  --line: #9c9184;          /* muted divider visible on Cream and Stone */
  --panel: #aaa297;         /* Stone — the alternating section background */
  --charcoal: #3f342a;      /* dark Coffee — dark sections / footer / hero overlay */
  --charcoal-2: #60544d;    /* Walnut */
  --amber: #cdbfa9;         /* light Tabacco — accents on dark backgrounds */
  --amber-dark: #6a5747;    /* deep Coffee/Walnut — accents / links on light backgrounds */
  --amber-grad: #5a493b;    /* solid Coffee — primary button */
  --maxw: 1200px;
  --head: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --shadow: 0 10px 30px rgba(60, 48, 38, 0.14);
}

/* Single fixed palette — the Cream / Stone look shows the same in light and dark OS themes. */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-dark); }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.08; letter-spacing: 0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

/* ---------- Header (fixed, overlaid on hero) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  /* transparent-ish over the hero photo — dark scrim keeps white nav readable */
  background: linear-gradient(180deg, rgba(45,37,30,0.6) 0%, rgba(45,37,30,0.15) 100%);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.site-header .wrap { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 140px; flex-wrap: wrap; transition: min-height 0.2s ease; }
.site-header.scrolled {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled .wrap { min-height: 102px; }
.site-header.scrolled .nav a { color: #1c150e; text-shadow: none; font-weight: 600; }
.site-header.scrolled .nav a:not(.btn-quote):hover { color: #4a3a26; }
.site-header.scrolled .nav a[aria-current="page"]:not(.btn-quote) { color: #1c150e; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--walnut); }
/* Brand: circular emblem logo (self-contained, works on any background). */
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 116px; width: auto; display: block; transition: height 0.2s ease; }
.site-header.scrolled .brand img { height: 80px; }
.nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.nav a:not(.btn-quote):hover, .nav a[aria-current="page"]:not(.btn-quote) { color: var(--amber); }
.nav .phone-link { letter-spacing: 0.02em; }
.btn-quote {
  background: var(--grove);
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  text-shadow: none;
}
.btn-quote:hover { background: #463a2f; }
@media (max-width: 820px) {
  .site-header .wrap { min-height: 0; padding-top: 12px; padding-bottom: 12px; }
  .brand img { height: 86px; }
  .site-header.scrolled .brand img { height: 66px; }
}
@media (max-width: 700px) {
  .nav { gap: 14px; }
}

/* ---------- Mobile nav drawer ---------- */
.nav-toggle { display: none; }
.nav-backdrop { display: none; }

@media (max-width: 820px) {
  .site-header .wrap { flex-wrap: nowrap; }
  .site-header.scrolled .brand img { height: 66px; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 60;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  .site-header.scrolled .nav-toggle span { background: #1c150e; }
  .nav-toggle[aria-expanded="true"] span { background: #1c150e; }
  .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); }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 28px 40px;
    background: var(--card);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    color: #1c150e;
    text-shadow: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
  }
  .nav a:not(.btn-quote):hover,
  .nav a[aria-current="page"]:not(.btn-quote) { color: var(--walnut); }
  .nav .btn-quote {
    margin-top: 20px;
    text-align: center;
    border-bottom: 0;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(20, 15, 10, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-amber { background: var(--grove); color: #ffffff; }
.btn-amber:hover { background: #463a2f; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-outline-dark { border-color: var(--line); color: var(--ink); }
.btn-outline-dark:hover { background: var(--panel); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(45,37,30,0.55) 0%, rgba(45,37,30,0.35) 40%, rgba(45,37,30,0.92) 100%),
    #3f342a center / cover no-repeat;
  padding: 140px 0 64px;
}
.hero.hero-sm { min-height: clamp(380px, 48vh, 480px); padding-top: 140px; }
.hero .wrap { width: 100%; }
.hero .eyebrow { color: var(--amber); }
/* Kicker corporativo: "Concretum Operis" (estilo eyebrow) + "Ready Mix Division" (etiqueta secundaria) */
.hero-kicker { display: flex; flex-direction: column; gap: 4px; }
.hero-kicker .hk-parent { color: inherit; text-decoration: none; transition: color 0.15s ease; }
.hero-kicker .hk-parent:hover { color: #fff; }
.hero-kicker .hk-sub {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.66);
}
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  text-transform: uppercase;
  max-width: 16ch;
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
}
.hero p.lead {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}
.hero .pills { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.hero-back:hover { color: #fff; }

/* ---------- Section base ---------- */
.section { padding: 92px 0; }
.section.dark { background: var(--charcoal); color: #fff; }
.section.panel { background: var(--panel); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.section-head .link {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px;
  color: var(--amber-dark); text-decoration: none; white-space: nowrap;
}
.section-head .link:hover { text-decoration: underline; }
.section > .wrap > .intro { max-width: 68ch; color: var(--muted); font-size: 1.08rem; }
.section.dark .intro { color: rgba(255,255,255,0.78); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.svc-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.4s; }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.svc-card:hover img { transform: scale(1.06); }
.svc-card .txt { position: relative; z-index: 2; padding: 22px; }
.svc-card h3 { font-size: 1.35rem; text-transform: uppercase; }
.svc-card .go { font-family: var(--head); font-size: 12px; letter-spacing: 0.18em; color: var(--amber); text-transform: uppercase; margin-top: 8px; display: inline-block; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card .photo { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .role { font-family: var(--head); font-size: 12px; letter-spacing: 0.14em; color: var(--amber-dark); text-transform: uppercase; margin-top: 16px; }
.team-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-top: 6px; }
.team-card .contact { margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
.team-card .contact a { color: var(--amber-dark); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
.team-card .contact a:hover { text-decoration: underline; }
.team-card p.bio { color: var(--muted); font-size: 0.92rem; line-height: 1.5; margin-top: 10px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Feature split ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.flip .media { order: 2; }
.feature .media { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.feature .media img { width: 100%; height: 100%; object-fit: cover; }
.feature h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); text-transform: uppercase; margin-bottom: 16px; }
.feature p { color: var(--muted); margin-bottom: 14px; }
.section.dark .feature p { color: rgba(255,255,255,0.78); }
.feature .btn { margin-top: 12px; }
@media (max-width: 860px) { .feature, .feature.flip { grid-template-columns: 1fr; gap: 28px; } .feature.flip .media { order: 0; } }

/* Centered section header variant */
.section.center .section-head { justify-content: center; text-align: center; }
.section.center .section-head > div { max-width: 640px; }

/* Checklist inside a feature block */
.checklist { list-style: none; margin: 20px 0 28px; padding: 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--muted); }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--grove); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

/* Why choose us — compact point cards */
.section.why .section-head .eyebrow { margin-top: -6px; margin-bottom: 10px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; text-align: left; }
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--grove);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--amber-dark);
  box-shadow: 0 18px 34px rgba(60, 48, 38, 0.22);
}
.why-card h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* How it works — numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--charcoal); color: #fff;
  font-family: var(--head); font-weight: 600; font-size: 1rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: var(--muted); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; padding: 2px 24px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--head); font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  display: flex; justify-content: space-between; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--grove); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { color: var(--muted); margin: 0; padding: 0 0 22px; }

/* Text-only service list */
.svc-list { margin-top: 40px; }
.svc-item { padding: 40px 0; border-top: 1px solid var(--line); max-width: 860px; }
.svc-item:first-child { border-top: none; padding-top: 12px; }
.svc-item h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; margin: 6px 0 12px; }
.svc-item p { color: var(--muted); }

/* Service areas grid */
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 44px; margin-top: 36px; }
.area h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 8px; }
.area p { color: var(--muted); }
@media (max-width: 720px) { .areas { grid-template-columns: 1fr; } }

/* ---------- Call band ---------- */
.callband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.callband .cell { padding: 24px 14px; border-left: 1px solid var(--line); }
.callband .cell:first-child { border-left: 0; }
.section.dark .callband,
.section.dark .callband .cell { border-color: rgba(255, 255, 255, 0.18); }
.callband .k { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 600; color: #3f342a; }
.section.dark .callband .k { color: var(--amber); }
.callband .v { font-family: var(--head); font-size: 1.7rem; margin-top: 6px; color: var(--ink); }
.section.dark .callband .v { color: #fff; }
.callband .v a { color: inherit; text-decoration: none; }
/* siempre en fila: en pantallas chicas se achica el texto para que entren las 3 */
@media (max-width: 720px) {
  .callband .cell { padding: 16px 6px; }
  .callband .k { font-size: 10px; letter-spacing: 0.08em; }
  .callband .v { font-size: clamp(0.85rem, 3.4vw, 1.2rem); }
}

/* ---------- Coverage chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.chips span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  cursor: default;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.chips span:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.section.dark .chips span { border-color: rgba(255,255,255,0.25); }
.section.dark .chips span:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

/* ---------- Gallery ---------- */
/* Coverflow — auto-scrolling 3D image carousel */
.coverflow {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 46px 0;
  perspective: 1300px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.cf-track {
  display: flex;
  gap: 30px;
  width: max-content;
  transform-style: preserve-3d;
  will-change: transform;
}
.cf-item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.cf-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .cf-item { width: 220px; height: 300px; }
  .cf-track { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .coverflow { padding: 20px 0; }
  .cf-track { animation: none !important; }
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); }
.quote .stars { color: var(--amber); letter-spacing: 2px; }
.quote blockquote { margin: 12px 0; font-size: 1.03rem; }
.quote cite { font-style: normal; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { background: var(--walnut); color: #fff; text-align: center; padding: 84px 0; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; }
.cta p { margin: 14px auto 0; max-width: 54ch; font-weight: 400; color: rgba(255,255,255,0.85); }
.cta .btn { margin-top: 26px; }
.cta .btn-dark { background: var(--cream); border-color: var(--cream); color: #4a3d31; }
.cta .btn-dark:hover { background: #b6a897; border-color: #b6a897; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 52px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.stepnum { display: inline-flex; align-items: center; gap: 10px; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber-dark); margin: 26px 0 14px; }
.stepnum b { background: var(--grove); color: #fff; width: 26px; height: 26px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 13px; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--card); color: var(--ink); font: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber-dark); }
.checks label { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.checks input { margin-top: 5px; }
.infocard { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.infocard dt { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; color: var(--muted); margin-top: 18px; }
.infocard dt:first-child { margin-top: 0; }
.infocard dd { margin-top: 3px; }
.infocard a { text-decoration: none; }

/* ---------- Legal / policy document ---------- */
.legal-doc { max-width: 760px; }
.ldoc-block { padding: 34px 0; border-top: 1px solid var(--line); }
.ldoc-block:first-child { border-top: 0; padding-top: 6px; }
.ldoc-num {
  font-family: var(--head); font-weight: 600;
  letter-spacing: 0.22em; font-size: 12px;
  color: var(--amber-dark); margin-bottom: 10px;
}
.ldoc-block h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); text-transform: uppercase; margin-bottom: 14px; }
.ldoc-block p { color: var(--muted); margin-bottom: 14px; }
.ldoc-block p:last-child { margin-bottom: 0; }
.ldoc-block a { color: var(--amber-dark); }
.ldoc-list { list-style: none; margin: 6px 0 14px; padding: 0; }
.ldoc-list li { position: relative; padding-left: 22px; color: var(--muted); margin-bottom: 8px; }
.ldoc-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--amber-dark); }
.ldoc-steps { list-style: none; margin: 12px 0 18px; padding: 0; }
.ldoc-steps li { display: flex; gap: 12px; align-items: baseline; margin-bottom: 10px; color: var(--muted); }
.ldoc-steps .s {
  flex: none; background: var(--grove); color: #fff;
  font-family: var(--head); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 4px;
}
.ldoc-note {
  background: #efe0d3; border-left: 3px solid var(--grove);
  padding: 13px 18px; color: var(--ink); font-weight: 600;
  border-radius: 0 8px 8px 0;
}
.ldoc-callout {
  font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--amber-dark); font-weight: 600; margin-top: 4px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 68px 0 26px; }
.site-footer .brand img { height: 88px; width: auto; filter: none; }
.site-footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer p { margin-top: 14px; max-width: 42ch; font-size: 0.95rem; }
.site-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; margin-bottom: 12px; }
.site-footer a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; padding: 4px 0; font-size: 0.95rem; }
.site-footer a:hover { color: var(--amber); }
.site-footer .footer-static { display: block; color: rgba(255,255,255,0.7); padding: 4px 0; font-size: 0.95rem; transition: color 0.2s; }
.site-footer .footer-static:hover { color: var(--amber); }
.site-footer .pays { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.site-footer .pays span { border: 1px solid rgba(255,255,255,0.22); border-radius: 6px; padding: 5px 10px; font-size: 12px; }
.site-footer .social-title {
  font-family: var(--head); font-weight: 600; letter-spacing: 0.2em; font-size: 12px;
  color: var(--amber); text-transform: uppercase; margin-top: 24px; margin-bottom: 12px;
}
.site-footer .social-icons { display: flex; gap: 10px; }
.site-footer .social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
  color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, color 0.2s;
}
.site-footer .social-icons a:hover,
.site-footer .social-icons a:focus-visible { border-color: var(--amber); color: var(--amber); }
.site-footer .social-icons svg { width: 19px; height: 19px; fill: currentColor; }
.site-footer .legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.site-footer .legal a { display: inline; padding: 0; font-size: inherit; color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .legal a:hover { color: var(--amber); }
@media (max-width: 860px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .top { grid-template-columns: 1fr; } }

/* ---------- Small-screen layout polish (al final: gana sobre las reglas base) ---------- */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 58px 0; }
  .cta { padding: 60px 0; }
  .section-head { margin-bottom: 30px; }

  .hero { padding: 116px 0 44px; min-height: clamp(440px, 74vh, 540px); }
  .hero.hero-sm { min-height: clamp(280px, 38vh, 360px); padding-top: 110px; }
  /* el kicker corporativo se mantiene visible en movil, con algo mas de aire entre lineas */
  .hero-kicker { gap: 5px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); line-height: 1.12; max-width: 100%; }
  .hero h1 .outline { -webkit-text-stroke-width: 1px; }
  .hero p.lead {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  .hero .pills { gap: 10px; margin-top: 22px; }
  .hero .pills .btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }
  /* "Our Services" ya vive en el menu — fuera del hero en movil */
  .hero .pills a[href="services.html"] { display: none; }

  .cta .pills .btn { width: 100%; justify-content: center; }
  .section-head .link { font-size: 13px; }
  .feature { gap: 24px; }
  .coverflow { padding: 30px 0; }
}
