:root {
--red: #FF0D0D;
--red-dark: #DC3737;
--black: #000000;
--dark: #0d0d0d;
--dark-2: #141414;
--white: #ffffff;
--alice: #f0f8ff;
--alice-mid: #e4f1fc;
--text-muted: rgba(255,255,255,0.55);
--border: rgba(255,255,255,0.10);

--font-display: 'Barlow Condensed', sans-serif;
--font-body: 'Inter', sans-serif;

--radius-card: 16px;
--shadow-card: 0 24px 56px rgba(0,0,0,0.55);
--transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
background-color: var(--black);
color: var(--white);
font-family: var(--font-body);
font-size: 15px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

/* ——— Shared layout helpers ——— */
.section-inner {
width: min(1200px, 100%);
margin-inline: auto;
padding-inline: 40px;
}

.section-header {
text-align: center;
margin-bottom: 56px;
}

.section-label {
display: inline-block;
font-family: var(--font-body);
font-size: 11px;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--red);
margin-bottom: 12px;
}

.section-title {
font-family: var(--font-display);
font-size: clamp(32px, 4vw, 52px);
font-weight: 700;
color: var(--white);
letter-spacing: 0.5px;
line-height: 1.1;
}

/* =====================================================
HEADER
===================================================== */
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: rgba(0,0,0,0.75);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
}

.header-inner {
width: min(1200px,100%);
margin-inline: auto;
padding: 16px 40px;
display: flex;
align-items: center;
justify-content: space-between;
}

.site-logo {
height: 44px;
width: auto;
display: block;
}

.site-nav {
display: flex;
gap: 36px;
}

.site-nav a {
color: rgba(255,255,255,0.75);
text-decoration: none;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.5px;
transition: color var(--transition);
}

.site-nav a:hover { color: var(--red); }

/* =====================================================
HERO
===================================================== */
.hero {
position: relative;
height: 100svh;
min-height: 560px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
}

.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.hero-bg-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
160deg,
rgba(0,0,0,0.80) 0%,
rgba(0,0,0,0.50) 60%,
rgba(180,10,10,0.18) 100%
);
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
padding: 0 24px;
max-width: 800px;
}

.hero-eyebrow {
font-size: 12px;
font-weight: 600;
letter-spacing: 3.5px;
text-transform: uppercase;
color: var(--red);
margin-bottom: 20px;
}

.hero-title {
font-family: var(--font-display);
font-size: clamp(72px, 12vw, 140px);
font-weight: 800;
line-height: 0.9;
color: var(--white);
letter-spacing: -1px;
text-shadow: 0 4px 40px rgba(0,0,0,0.5);
margin-bottom: 28px;
}

.hero-title-accent {
color: var(--red);
}

.hero-sub {
font-size: clamp(15px, 2vw, 18px);
color: rgba(255,255,255,0.65);
font-weight: 400;
letter-spacing: 0.3px;
}

/* scroll-down arrow button */
.hero-scroll-btn {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
width: 52px;
height: 52px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.30);
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
text-decoration: none;
transition: border-color var(--transition), background var(--transition), color var(--transition);
animation: arrowBounce 2s ease-in-out infinite;
}

.hero-scroll-btn svg {
width: 22px;
height: 22px;
}

.hero-scroll-btn:hover {
border-color: var(--red);
background: rgba(255, 13, 13, 0.15);
color: var(--red);
animation-play-state: paused;
}

@keyframes arrowBounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
GLOBAL PRESENCE
===================================================== */
.global-section {
background-color: var(--dark);
padding: 100px 0;
}

/* Cards grid */
.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.card-link {
text-decoration: none;
display: block;
}

.card {
position: relative;
border-radius: var(--radius-card);
overflow: hidden;
background: #111;
border: 1px solid var(--border);
cursor: pointer;
aspect-ratio: 16/10;
transition: transform var(--transition), box-shadow var(--transition);
}

.card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.card-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(0,0,0,0.92) 0%,
rgba(0,0,0,0.30) 55%,
rgba(0,0,0,0.05) 100%
);
transition: background var(--transition);
}

.card-content {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 28px 24px;
}

.card-tag {
display: inline-block;
font-size: 10px;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--red);
margin-bottom: 8px;
background: rgba(255,13,13,0.12);
padding: 3px 10px;
border-radius: 20px;
border: 1px solid rgba(255,13,13,0.25);
width: fit-content;
}

.card-title {
font-family: var(--font-display);
font-size: 28px;
font-weight: 700;
color: var(--white);
line-height: 1;
margin-bottom: 6px;
letter-spacing: 0.5px;
}

.card-desc {
font-size: 13px;
color: rgba(255,255,255,0.65);
margin-bottom: 16px;
line-height: 1.5;
}

.card-cta {
font-size: 12px;
font-weight: 600;
color: var(--red);
letter-spacing: 1px;
opacity: 0;
transform: translateY(6px);
transition: opacity var(--transition), transform var(--transition);
display: block;
}

/* Hover effects */
.card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-card);
}

.card:hover img {
transform: scale(1.06);
}

.card:hover .card-overlay {
background: linear-gradient(
to top,
rgba(0,0,0,0.95) 0%,
rgba(0,0,0,0.50) 55%,
rgba(0,0,0,0.10) 100%
);
}

.card:hover .card-cta {
opacity: 1;
transform: translateY(0);
}

/* =====================================================
LOCATIONS / TABLE
===================================================== */
.branches {
background-color: var(--black);
padding: 100px 0;
}

.table-wrap {
overflow-x: auto;
border-radius: var(--radius-card);
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
border: 1px solid rgba(255,255,255,0.06);
}

table {
width: 100%;
min-width: 760px;
border-collapse: collapse;
}

thead {
background: var(--red-dark);
}

thead th {
color: var(--white);
padding: 18px 24px;
font-family: var(--font-body);
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
text-align: left;
white-space: nowrap;
}

tbody td {
padding: 20px 24px;
font-size: 14px;
color: #1a1a2e;
border-bottom: 1px solid rgba(0,0,0,0.07);
vertical-align: top;
line-height: 1.7;
background: var(--alice);
}

tbody tr:nth-child(even) td {
background: var(--alice-mid);
}

tbody tr:last-child td {
border-bottom: none;
}

tbody tr {
transition: background var(--transition);
}

tbody tr:hover td {
background: #d5eaf8;
}

.loc-name {
color: var(--red-dark);
font-weight: 700;
white-space: nowrap;
font-size: 14px;
}

tbody a {
color: var(--red-dark);
text-decoration: none;
font-weight: 600;
}

tbody a:hover {
text-decoration: underline;
}

/* =====================================================
FOOTER
===================================================== */
.site-footer {
background: var(--dark-2);
border-top: 1px solid var(--border);
padding: 36px 40px;
}

.footer-inner {
width: min(1200px,100%);
margin-inline: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.footer-logo {
height: 36px;
width: auto;
opacity: 0.85;
}

.footer-copy {
font-size: 13px;
color: rgba(255,255,255,0.35);
}

/* =====================================================
RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
.cards {
grid-template-columns: repeat(2, 1fr);
}

.cards .card-link:last-child {
grid-column: 1 / -1;
max-width: 480px;
margin-inline: auto;
width: 100%;
}
}

@media (max-width: 768px) {
.section-inner { padding-inline: 20px; }

.header-inner { padding: 14px 20px; }
.site-logo { height: 36px; }

.site-nav { gap: 20px; }
.site-nav a { font-size: 13px; }

.global-section,
.branches { padding: 72px 0; }

.section-header { margin-bottom: 40px; }

.cards {
grid-template-columns: 1fr;
gap: 20px;
}

.cards .card-link:last-child {
grid-column: auto;
max-width: none;
}

.card { aspect-ratio: 16/9; }

.card-cta { opacity: 1; transform: none; }

thead th { padding: 14px 16px; }
tbody td { padding: 16px; font-size: 13px; }

.footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
.hero-title { letter-spacing: -0.5px; }

.site-nav { display: none; }

.table-wrap { border-radius: 10px; }

.footer-inner { flex-direction: column; gap: 12px; }
}

; 
