/* ==========================================================================
   Grupo Patrón — Design System (no framework, no jQuery)
   ========================================================================== */

:root{
	--navy: #0e6b3f;
	--navy-dark: #0a4f2e;
	--navy-darker: #072f1c;
	--gold: #f8bc2c;
	--gold-dark: #dda317;
	--ink: #14213d;
	--text: #3d4457;
	--text-soft: #6b7280;
	--bg: #ffffff;
	--bg-soft: #f4f6fb;
	--white: #ffffff;

	--radius-sm: .5rem;
	--radius: .9rem;
	--radius-lg: 1.4rem;

	--shadow-sm: 0 2px 10px rgba(10, 20, 60, .07);
	--shadow-md: 0 14px 34px rgba(10, 20, 60, .14);
	--shadow-lg: 0 24px 60px rgba(10, 20, 60, .22);

	--container: 1240px;
	--nav-h: 92px;

	--ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after{
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	font-family: "Inter", sans-serif;
	color: var(--text);
	background-color: var(--bg);
	overflow-x: hidden;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

img{
	max-width: 100%;
	user-select: none;
}

a{
	text-decoration: none;
	color: inherit;
}

section{
	scroll-margin-top: var(--nav-h);
}

h1, h2, h3, h4{
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0;
}

h1{ font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); }
h2{ font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
h3{ font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }

p{
	font-size: 1.125rem;
	margin: 0 0 1.1rem;
	color: var(--text);
}

p:last-child{ margin-bottom: 0; }

.eyebrow{
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .75rem;
}

.divider{
	width: 4.5rem;
	height: 4px;
	border: 0;
	border-radius: 2px;
	background: var(--gold);
	margin: 1.25rem 0 2rem;
}

.divider.center{ margin-left: auto; margin-right: auto; }

::selection{
	color: #090909;
	background: var(--gold);
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container{
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.75rem;
}

.section{
	padding: 5.5rem 0;
}

.section-sm{
	padding: 3rem 0;
}

.section-light{
	background: var(--bg);
	color: var(--text);
}

.section-soft{
	background: var(--bg-soft);
	color: var(--text);
}

.section-navy{
	background: var(--navy);
	color: #fff;
}

.section-navy h1, .section-navy h2, .section-navy h3{ color: #fff; }
.section-navy p{ color: rgba(255,255,255,.88); }
.section-navy .eyebrow{ color: var(--gold); }

.text-center{ text-align: center; }
.mx-auto{ margin-left: auto; margin-right: auto; }

.lede{
	max-width: 62rem;
}

.lede.center{ margin-left: auto; margin-right: auto; }

.stats-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 2rem;
	max-width: 56rem;
	margin: 3.5rem auto 0;
	padding-top: 3rem;
	border-top: 1px solid rgba(20, 33, 61, .08);
}

.stat-block{
	text-align: center;
}

.stat-block-value{
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem);
	color: var(--navy);
	line-height: 1;
}

.stat-block-label{
	display: block;
	margin-top: .6rem;
	font-size: .82rem;
	font-weight: 600;
	color: var(--text-soft);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.section-navy .stats-grid .stat-block-value{
	color: var(--gold);
}

.section-navy .stats-grid .stat-suffix-plus{
	color: #fff;
}

.section-navy .stats-grid .stat-block-label{
	color: #fff;
}

.section-navy .stats-grid{
	border-top-color: rgba(255, 255, 255, .15);
}

/* Two-column layout: text + sidebar stats (nosotros.html) */
.about-columns{
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.about-stats{
	background: var(--bg-soft);
	border-radius: var(--radius);
	padding: 2rem 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-stats .stat-row{
	text-align: left;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(20, 33, 61, .08);
}

.about-stats .stat-row:last-child{
	padding-bottom: 0;
	border-bottom: 0;
}

.about-stats .stat-suffix-plus{
	color: var(--gold-dark);
}

@media (max-width: 900px){
	.about-columns{
		grid-template-columns: 1fr;
	}
}

/* Reveal-on-scroll (replaces AOS) */
[data-reveal]{
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible{
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce){
	[data-reveal]{ opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn{
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background-color: var(--gold);
	border: 2px solid var(--gold);
	color: var(--navy-darker) !important;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	padding: 1rem 1.9rem;
	cursor: pointer;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}

.btn:hover, .btn:focus-visible{
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	background-color: #ffcc4f;
}

.btn.btn-outline{
	background-color: transparent;
	border-color: #fff;
	color: #fff !important;
}

.btn.btn-outline:hover{
	background-color: #fff;
	color: var(--navy) !important;
}

.btn-row{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.btn-row.center{ justify-content: center; }

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

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar{
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-h);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(1.25rem, 4vw, 3rem);
	background-color: transparent;
	box-shadow: none;
	transition: background-color .3s ease, box-shadow .3s ease;
}

.navbar.scrolled{
	background-color: var(--navy);
	box-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.navbar .brand img{
	height: 3.6rem;
	display: block;
}

.nav-toggle{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	z-index: 110;
}

.nav-toggle span{
	display: block;
	height: 2px;
	width: 26px;
	margin: 0 auto;
	background: var(--gold);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-links{
	display: flex;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 3.2rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a{
	position: relative;
	display: inline-block;
	padding: .5rem .1rem;
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: 1.5px;
	color: #fff;
	transition: color .2s ease;
}

.nav-links a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .35s var(--ease);
}

.nav-links a:hover, .nav-links a:focus-visible{
	color: var(--gold);
}

.nav-links a:hover::after, .nav-links a:focus-visible::after{
	transform: scaleX(1);
}

.nav-links a.active{
	color: var(--gold);
}

.nav-links a.active::after{
	transform: scaleX(1);
}

@media (max-width: 900px){
	.nav-toggle{ display: flex; }

	.nav-links{
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--navy-dark);
		max-height: calc(100vh - var(--nav-h));
		overflow-y: auto;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
		box-shadow: 0 20px 30px rgba(0,0,0,.25);
	}

	.nav-links.is-open{
		opacity: 1;
		transform: none;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-links li{
		border-top: 1px solid rgba(255,255,255,.08);
	}

	.nav-links a{
		display: block;
		padding: 1.1rem 2rem;
		border-left: 3px solid transparent;
	}

	.nav-links a::after{
		display: none;
	}

	.nav-links a.active, .nav-links a:hover{
		border-left-color: var(--gold);
		background: rgba(255,255,255,.04);
	}

	.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
	.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
	.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Home hero
   ========================================================================== */

.hero{
	position: relative;
	height: 100vh;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--navy);
	text-align: center;
}

.hero video{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .55;
}

.hero::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,47,28,.55) 0%, rgba(7,47,28,.4) 40%, var(--navy) 88%, var(--navy) 100%);
	z-index: 1;
}

.hero-content{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: 0 1.5rem;
}

.hero-logo{
	width: clamp(280px, 100vw, 680px);
	height: auto;
	filter: brightness(0) invert(1);
	animation: hero-in 1.1s var(--ease) both;
}

.hero-tagline{
	color: #fff;
	font-size: clamp(1rem, .9rem + .5vw, 1.3rem);
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 600;
	animation: hero-in 1.1s var(--ease) .15s both;
}

.hero-scroll{
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: #fff;
	opacity: .8;
	font-size: 1.4rem;
	animation: bob 2.2s ease-in-out infinite;
}

@keyframes hero-in{
	from{ opacity: 0; transform: translateY(18px); }
	to{ opacity: 1; transform: none; }
}

@keyframes bob{
	0%, 100%{ transform: translate(-50%, 0); }
	50%{ transform: translate(-50%, 10px); }
}

/* ==========================================================================
   Page header (subpages)
   ========================================================================== */

.page-header{
	position: relative;
	height: 46vh;
	min-height: 320px;
	max-height: 520px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--navy);
}

.page-header img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .8;
}

.page-header::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,47,28,.45) 0%, rgba(7,47,28,.55) 60%, var(--navy) 88%, var(--navy) 100%);
}

.page-header.fade-light::after{
	background: linear-gradient(180deg, rgba(7,47,28,.45) 0%, rgba(7,47,28,.5) 50%, rgba(255,255,255,.9) 92%, #fff 100%);
}

.page-header-content{
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 clamp(1.25rem, 4vw, 3rem) 2.75rem;
	color: #fff;
}

.page-header-content h1{
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 6px rgba(0,0,0,.5), 0 6px 20px rgba(0,0,0,.35);
}

.page-header-content p{
	color: rgba(255,255,255,.85);
	max-width: 42rem;
	margin-top: .75rem;
}

.page-header-content .eyebrow{
	text-shadow: 0 2px 6px rgba(0,0,0,.5);
}

/* ==========================================================================
   Cards — generic
   ========================================================================== */

.card{
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius);
	padding: 2.25rem 1.75rem;
	text-align: center;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}

.section-light .card, .section-soft .card{
	background: var(--bg-soft);
	border: 1px solid rgba(20, 33, 61, .06);
	box-shadow: var(--shadow-sm);
}

.section-light .card:hover, .section-soft .card:hover{
	background: #fff;
}

.card:hover{
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	background-color: rgba(255,255,255,.1);
}

.card-icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background: rgba(248, 188, 44, .15);
	color: var(--gold);
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

/* Grid layouts */
.grid{
	display: grid;
	gap: 1.75rem;
}

.grid-2{ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px){
	.grid-3{ grid-template-columns: repeat(2, 1fr); }
	.grid-4{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
	.grid-3{ grid-template-columns: 1fr; }
	.grid-4{ grid-template-columns: 1fr; }
}

.grid-4 .card{
	min-height: 17.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.branch-grid{
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px){
	.branch-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
	.branch-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact band
   ========================================================================== */

.contact-band{
	text-align: left;
}

.contact-banner{
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 3rem;
	align-items: center;
}

.contact-banner-text h2{
	margin: .5rem 0 1rem;
}

.contact-banner-actions{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-action{
	display: flex;
	align-items: center;
	gap: .9rem;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, .08);
	font-weight: 600;
	color: #fff;
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-action i{
	font-size: 1.1rem;
	color: var(--gold);
	width: 1.4rem;
	text-align: center;
	flex-shrink: 0;
}

.contact-action:hover{
	background: rgba(255, 255, 255, .15);
	transform: translateY(-2px);
}

.section-soft .contact-action, .section-light .contact-action{
	background: #fff;
	color: var(--navy);
	box-shadow: var(--shadow-sm);
}

.section-soft .contact-action:hover, .section-light .contact-action:hover{
	background: #fff;
	box-shadow: var(--shadow-md);
}

@media (max-width: 800px){
	.contact-banner{
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* ==========================================================================
   Map
   ========================================================================== */

.map-frame{
	position: relative;
	width: 100%;
	height: 65vh;
	min-height: 380px;
}

.map-frame iframe{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer{
	background: var(--navy);
	color: #fff;
	padding: 4.5rem 0 0;
}

.footer-columns{
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.footer-logo{
	height: 4.5rem;
	margin-bottom: 1.25rem;
}

.footer-tagline{
	font-size: .95rem;
	color: rgba(255,255,255,.8);
	margin-bottom: 1.25rem;
}

.social-row{
	display: flex;
	gap: 1.25rem;
}

.social-icon{
	font-size: 1.9rem;
	color: #fff;
	transition: color .2s ease, transform .2s ease;
}

.social-icon:hover{
	color: var(--gold);
	transform: translateY(-3px);
}

.footer-heading{
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--gold);
	margin-bottom: 1.1rem;
}

.footer-links{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .7rem;
}

.footer-links a{
	font-size: .95rem;
	color: rgba(255,255,255,.85);
	transition: color .2s ease;
}

.footer-links a:hover, .footer-links a.active{
	color: var(--gold);
}

.footer-contact-item{
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .95rem;
	color: rgba(255,255,255,.85);
	margin-bottom: .9rem;
	transition: color .2s ease;
}

a.footer-contact-item:hover{
	color: var(--gold);
}

.footer-contact-item i{
	color: var(--gold);
	margin-top: .2rem;
	width: 1rem;
	text-align: center;
	flex-shrink: 0;
}

.footer-bottom{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .75rem;
	padding: 1.75rem 0;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: .78rem;
	color: rgba(255,255,255,.5);
}

@media (max-width: 700px){
	.footer-columns{
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-row{ justify-content: center; }

	.footer-contact-item{ justify-content: center; }

	.footer-bottom{
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   Floating WhatsApp / call button
   ========================================================================== */

#wappBtn{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 90;
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--navy);
	border: 3px solid #fff;
	box-shadow: var(--shadow-md);
	cursor: pointer;
	transition: transform .3s var(--ease), background-color .3s var(--ease);
}

#wappBtn::before{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--navy);
	border: 2px solid rgba(255, 255, 255, .8);
	z-index: -1;
	animation: wapp-echo 2.4s ease-out infinite;
}

@keyframes wapp-echo{
	0%{
		transform: scale(1);
		opacity: .55;
	}
	100%{
		transform: scale(1.4);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce){
	#wappBtn::before{
		animation: none;
		opacity: 0;
	}
}

#wappBtn:hover{
	transform: translateY(-.4rem);
	background-color: var(--gold);
}

#wappBtn:hover::before{
	background: var(--gold);
}

#wappBtn img{
	width: 2.2rem;
}

/* ==========================================================================
   Marcas (brand logos grid) — productos.html
   ========================================================================== */

.brand-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 2rem;
	align-items: center;
	justify-items: center;
}

.brand-grid-item{
	display: block;
	width: 100%;
	max-width: 15rem;
}

.brand-logo{
	width: 100%;
}

/* ==========================================================================
   Product showcase — brand tabs + grid (productos.html)
   ========================================================================== */

.product-tabs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .75rem;
	margin-bottom: 3rem;
}

.product-tab{
	padding: .8rem 1.75rem;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, .25);
	background: transparent;
	color: #fff;
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .5px;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.product-tab:hover{
	border-color: var(--gold);
	color: var(--gold);
}

.product-tab.active{
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-darker);
}

.product-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

@media (max-width: 900px){
	.product-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
	.product-grid{ grid-template-columns: 1fr; }
}

.product-card{
	background: #fff;
	border: 1px solid rgba(20, 33, 61, .08);
	border-radius: var(--radius);
	padding: 1.75rem 1.5rem 1.5rem;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.product-card:hover{
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.product-card-media{
	width: 100%;
	max-width: 170px;
	aspect-ratio: 1;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	background: var(--bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.product-card-media img{
	width: 92%;
	height: 92%;
	object-fit: contain;
}

.product-card .card-text{
	color: var(--navy);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1rem;
	margin: 0;
}

.product-weight{
	display: inline-block;
	background: rgba(248, 188, 44, .15);
	color: var(--gold-dark);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .4px;
	padding: .3rem .85rem;
	border-radius: 999px;
	margin-top: .75rem;
}

/* ==========================================================================
   Sucursales — branch cards
   ========================================================================== */

.branch-card{
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.branch-card-head{
	margin-bottom: 1.5rem;
}

.branch-card-head h3{
	margin: 0;
}

.branch-stat{
	background: rgba(255, 255, 255, .08);
	border-radius: var(--radius-sm);
	padding: 1rem 1.25rem;
	margin-bottom: 1.25rem;
}

.section-light .branch-stat, .section-soft .branch-stat{
	background: var(--bg-soft);
}

.branch-stat .stat-label{
	display: block;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .65);
	margin-bottom: .15rem;
}

.section-light .branch-stat .stat-label, .section-soft .branch-stat .stat-label{
	color: var(--text-soft);
}

.branch-stat .stat-value{
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--gold);
}

.branch-contact-row{
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	padding: .6rem 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .95rem;
	color: inherit;
}

.section-light .branch-contact-row, .section-soft .branch-contact-row{
	border-top-color: rgba(20, 33, 61, .1);
}

.branch-contact-row i{
	color: var(--gold-dark);
	width: 1.1rem;
	text-align: center;
	margin-top: .2rem;
	flex-shrink: 0;
}

.branch-address{
	margin-bottom: 1.25rem;
}

a.branch-contact-row:hover{
	color: var(--gold);
}

.branch-directions{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	margin-top: auto;
	padding: .8rem;
	margin-bottom: 0;
	flex-shrink: 0;
	border: 2px solid var(--gold);
	border-radius: var(--radius-sm);
	color: var(--gold) !important;
	background: transparent;
	font-weight: 700;
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .6px;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.branch-directions:hover{
	background: var(--gold);
	color: var(--navy-darker) !important;
	transform: translateY(-2px);
}

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */

@media (max-width: 600px){
	:root{ --nav-h: 78px; }

	.section{ padding: 3.5rem 0; }

	.page-header{ height: 38vh; min-height: 260px; }

	body{ text-align: justify; }
}
