:root {
  --ink: #252525;
  --ink-soft: #464646;
  --muted: #777875;
  --line: rgba(37, 37, 37, .1);
  --surface: rgba(255, 255, 255, .91);
  --soft: #f2f2ef;
  --gold: #d79b00;
  --gold-dark: #9e7200;
  --wa: #22b65f;
  --white: #fff;
  --radius-lg: 28px;
  --radius-md: 17px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100svh;
  overflow-x: clip;
  background: #efefec;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 4%, rgba(215,155,0,.18), transparent 25rem),
    radial-gradient(circle at 90% 34%, rgba(255,255,255,.95), transparent 28rem),
    linear-gradient(145deg, #f8f8f5 0%, #ecece8 66%, #e5e5e1 100%);
}
body::after {
  content: "";
  position: fixed;
  top: -90px;
  right: -105px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(37,37,37,.07);
  transform: skewX(-13deg);
}
button, a { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { text-decoration: none; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 20; padding: .7rem 1rem; background: var(--ink); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.page-shell { width: min(100%, 690px); min-height: 100svh; margin-inline: auto; padding: 27px 16px 24px; }

.brand-header { position: relative; text-align: center; padding: 14px 6px 29px; }
.brand-logo { display: block; width: min(78vw, 300px); height: auto; margin: 0 auto 25px; filter: drop-shadow(0 8px 12px rgba(31,31,31,.07)); }
.eyebrow, .panel-kicker { color: var(--gold-dark); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.brand-header h1 { max-width: 590px; margin: 9px auto 12px; font-size: clamp(2.05rem, 9.5vw, 3.75rem); line-height: .98; letter-spacing: -.052em; }
.intro { max-width: 405px; margin: auto; color: var(--muted); font-size: .98rem; text-wrap: pretty; }

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 9px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(31,31,31,.13), 0 2px 8px rgba(31,31,31,.05);
  backdrop-filter: blur(16px);
}
.contact-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .9; }
.sector-tabs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 4px; padding: 5px; background: #ededeb; border: 1px solid rgba(37,37,37,.035); border-radius: 17px; }
.sector-tab { position: relative; min-height: 54px; padding: 8px 4px; border-radius: 12px; color: #797a77; font-size: .74rem; font-weight: 800; line-height: 1.12; transition: background .28s var(--ease), color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease); }
.sector-tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 7px 21px rgba(29,29,29,.09); }
.sector-tab.is-active::after { content: ""; position: absolute; left: 50%; bottom: 6px; width: 17px; height: 2px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); }
.sector-tab:active { transform: scale(.97); }
.sector-tab:focus-visible, .branch-link:focus-visible { outline: 3px solid rgba(215,155,0,.42); outline-offset: 3px; }

.sector-panel { padding: 25px 7px 7px; animation: panel-in .42s var(--ease) both; }
.panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 0 8px 17px; }
.panel-heading h2 { margin-top: 3px; font-size: 1.62rem; line-height: 1; letter-spacing: -.038em; }
.panel-kicker { max-width: 44%; text-align: right; order: 2; line-height: 1.25; }
.branch-list { display: grid; gap: 9px; }
.branch-link { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 12px 12px 12px 19px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(110deg,#fff 0%,#fbfbfa 100%); font-size: 1.04rem; font-weight: 800; box-shadow: 0 2px 0 rgba(37,37,37,.025); transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease); }
.branch-link > span:first-child { position: relative; }
.branch-link > span:first-child::after { content: attr(data-address); display: block; max-width: 180px; margin-top: 2px; overflow: hidden; color: #8a8b87; font-size: .64rem; font-weight: 700; letter-spacing: .015em; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.branch-link:hover { transform: translateY(-3px); border-color: rgba(37,37,37,.18); background: #fff; box-shadow: 0 12px 28px rgba(29,29,29,.09); }
.branch-link:active { transform: scale(.985); }
.wa-icon { position: relative; display: block; flex: 0 0 auto; width: 43px; height: 43px; border-radius: 50%; background: var(--wa); color: #fff; font-size: 0; box-shadow: 0 7px 16px rgba(34,182,95,.24); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.branch-link:hover .wa-icon { transform: rotate(-5deg) scale(1.07); box-shadow: 0 9px 20px rgba(34,182,95,.32); }
.wa-icon::before { content: ""; position: absolute; top: 50%; left: 50%; display: block; width: 21px; height: 21px; background: 50% 50%/21px 21px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M16.03 3.2A12.7 12.7 0 0 0 5.12 22.4L3.2 29.42l7.18-1.88a12.7 12.7 0 1 0 5.65-24.34Zm0 22.84c-1.88 0-3.72-.51-5.32-1.48l-.38-.23-4.26 1.12 1.14-4.15-.25-.4a10.15 10.15 0 1 1 9.07 5.14Zm5.56-7.6c-.3-.15-1.8-.89-2.08-.99-.28-.1-.48-.15-.68.15-.2.3-.79.99-.96 1.19-.18.2-.36.23-.66.08-.3-.15-1.29-.48-2.45-1.51a9.23 9.23 0 0 1-1.69-2.1c-.18-.31-.02-.47.13-.62.14-.13.31-.35.46-.53.15-.17.2-.3.3-.5.1-.2.05-.38-.03-.53-.07-.15-.68-1.64-.93-2.25-.25-.59-.5-.5-.68-.51h-.58c-.2 0-.53.07-.81.38-.28.3-1.06 1.04-1.06 2.53s1.09 2.94 1.24 3.14c.15.2 2.14 3.27 5.18 4.58.73.31 1.29.5 1.73.64.73.23 1.39.2 1.91.12.58-.09 1.8-.74 2.05-1.45.25-.71.25-1.32.18-1.45-.08-.12-.28-.2-.58-.35Z'/%3E%3C/svg%3E"); transform: translate(-50%, -50%); }
.empty-state { min-height: 270px; display: grid; place-items: center; align-content: center; gap: 6px; padding: 34px; text-align: center; border: 1px dashed rgba(37,37,37,.2); border-radius: var(--radius-md); background: linear-gradient(145deg,#f4f4f1,#ecece9); }
.empty-mark { display: grid; place-items: center; width: 68px; height: 68px; margin-bottom: 10px; background: var(--gold); color: #fff; font-size: .86rem; font-weight: 900; font-style: italic; transform: skewX(-9deg); box-shadow: 0 12px 24px rgba(215,155,0,.2); }
.empty-state h3 { font-size: 1.35rem; }
.empty-state p { max-width: 290px; color: var(--muted); font-size: .92rem; }
.site-footer { position: relative; width: 100vw; max-width: none; margin: 30px 0 -24px 50%; padding: 38px 24px 20px; overflow: hidden; text-align: left; background: #171816; color: rgba(255,255,255,.6); transform: translateX(-50%); }
.site-footer::before { content: ""; position: absolute; top: -130px; left: -80px; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle,rgba(215,155,0,.16),transparent 68%); pointer-events: none; }
.footer-main { position: relative; width: min(100%,1160px); margin-inline: auto; }
.footer-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.footer-logo-wrap { width: 170px; padding: 11px 14px; background: #f5f5f1; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.footer-logo-wrap img { display: block; width: 100%; height: auto; }
.footer-tagline { max-width: 390px; color: #fff; font-size: clamp(1.35rem,5vw,1.85rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; }
.footer-caption { margin-top: 11px; color: rgba(255,255,255,.42); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-site { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; width: fit-content; padding: 12px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: border-color .24s var(--ease), background .24s var(--ease), color .24s var(--ease); }
.footer-site:hover { background: var(--gold); border-color: var(--gold); color: #171816; }
.footer-kicker { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-locations h2 { margin-top: 5px; color: #fff; font-size: 1.48rem; letter-spacing: -.035em; }
.location-grid { display: grid; gap: 9px; margin-top: 18px; }
.location-card { display: grid; grid-template-columns: 28px minmax(0,1fr) auto; align-items: center; gap: 11px; min-height: 76px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.025); transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease); }
.location-card:hover { transform: translateY(-2px); border-color: rgba(215,155,0,.56); background: rgba(215,155,0,.06); }
.location-pin { display: grid; place-items: center; width: 28px; height: 28px; color: var(--gold); font-size: 1.35rem; }
.location-card strong { display: block; color: #fff; font-size: .85rem; }
.location-card small { display: block; margin-top: 2px; overflow: hidden; color: rgba(255,255,255,.47); font-size: .67rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.location-card b { color: var(--gold); font-size: 1rem; }
.footer-bottom { display: flex; width: min(100%,1160px); flex-wrap: wrap; justify-content: space-between; gap: 6px 24px; margin: 30px auto 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { font-size: .62rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
[hidden] { display: none !important; }
.reveal[data-split] { opacity: 1; transform: none; }

@keyframes panel-in { from { opacity: .35; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@media (min-width: 540px) {
  .page-shell { padding: 42px 24px 30px; }
  .brand-logo { width: 315px; }
  .sector-tab { font-size: .82rem; }
  .contact-panel { padding: 11px; }
  .sector-panel { padding: 29px 11px 11px; }
  .branch-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .branch-link { min-height: 76px; }
  .empty-state { min-height: 320px; }
}
@media (min-width: 720px) {
  .site-footer { padding: 42px 44px 22px; }
  .footer-intro { flex-direction: row; align-items: center; gap: 40px; }
  .footer-message { padding-left: 40px; border-left: 1px solid rgba(255,255,255,.13); }
}
