/* ========================================
   ABOUT PAGE STYLES - FranzBuilt
   ======================================== */
/* ===== HEADER & NAVIGATION ===== */
:root { --logo-size: 67px; }
.site-header {
    background: #FDFBF0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
	isolation: isolate; /* VERY important */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.logo {
    font-family: "Sansation";
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover { opacity: 0.8; }

.logo-img {
    height: var(--logo-size);
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--brand);
    font-size: 17px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.nav a:hover,
.nav a:focus {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.nav a.active {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    color: var(--brand-800);
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.has-dropdown .dropdown {
    position: absolute;
	right:0;
    left: auto;
    top: 100%;
    min-width: 250px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    display: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { padding: 0; }
.dropdown a { 
	display: block; 
	padding: 10px 14px; 
	color: var(--brand); 
	font-weight: 700; 
	line-height: 1.5; 
	white-space: normal; 
	text-decoration: none;
}
.dropdown a:hover { 
	background: #FDFBF0; 
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Mobile */
@media (max-width: 720px) {
	.nav ul {
		display: none;
		position: absolute;
		right: 20px;
		top: 64px;
		background: #FDFBF0; 
		padding: 14px;
		border: 1px solid #e5e5df;
		border-radius: 6px;
		flex-direction: column;
		gap: 12px;
	}
	.nav ul.open { display: flex; }
	.mobile-nav-toggle {
		display: inline-block;
		background: transparent;
		border: 0;
		font-size: 22px;
	}
}

/* ===== HERO ===== */
.about-hero {
	position: relative;
    height: 60svh; /* match Services hero height */
    display: flex;
    align-items: center; /* center content vertically */
    justify-content: center;
	color: #FDFBF0;
	overflow: hidden;
    margin-bottom: 0; /* remove extra gap beneath hero */
	padding-top: 0;
    padding-bottom: 0; /* centered layout, no extra vertical padding */
}

/* Add a subtle dark overlay for readability, matching Services */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(70, 89, 64, 0.55);
    z-index: 0;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	background: url('assets/images/MissionVisionBG.png') center center / cover no-repeat;
	z-index: 0; /* sit beneath overlay */
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    max-width: 1120px; /* allow headline to be wider */
}

.about-hero-content h1 {
	font-family: 'Amagro';
	letter-spacing: 2px;
	font-size: clamp(28px, 5vw, 64px);
	margin: 0 0 8px 0;
}

.about-hero-content p { opacity: 0.9; margin: 0; }

/* Centered hero for About */
.about-hero { justify-content: center; }
.about-tagline { max-width: 800px; margin: 10px auto 0 auto; }

/* ===== STORY ===== */
.story { background: #465940; color: #FDFBF0; }
.story-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	align-items: center;
}
.story-media img { width: 100%; height: auto; border-radius: 12px; }
.story-content h2 { font-family: 'Amagro'; margin: 0 0 12px 0; }
.story-content p { line-height: 1.8; opacity: 0.92; }

/* ===== MISSION & VISION ===== */
/* Full-bleed background with left/right overlay text */
.mission-vision {
    position: relative;
    color: #FDFBF0;
    padding: 64px 0;
    background: url('assets/images/MissionVisionBG.png') center/cover no-repeat;
    background-position: center 40%; /* adjust focal point if needed */
}
.mission-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.mission-vision .container { position: relative; z-index: 1; padding-inline: 12px; }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* mission | vision */
    gap: 24px;
    align-items: start;
}
.mv-card {
    background: transparent;
    border: 0;
    padding: 0;
    max-width: 640px; /* limit line length for readability */
}
.mv-card h3 { 
    font-family: 'Amagro'; 
    margin: 0 0 8px 0; 
    font-size: 17px; 
    letter-spacing: 1.6px; 
}
.mv-card p { 
    margin: 0; 
    font-size: 20px; 
    line-height: 1.3; 
}
/* Right column mirrors screenshot with right-aligned text */
.mv-card:nth-child(2) { text-align: right; margin-left: auto; }
/* Slight vertical nudges to mimic screenshot */
.mv-card:first-child { margin-top: 8px; }
.mv-card:nth-child(2) { margin-top: -6px; }
/* Optional: make the Vision text slightly larger */
.mv-card:nth-child(2) p { font-size: 20px; }

/* Semantic hooks for per-block tuning */
.mv-card.mission { margin-top: 20px; max-width: 900px; }
.mv-card.vision  { margin-top: 150px; text-align: right; margin-left: auto; max-width: 900px; }
/* Vision text size */
.mv-card.vision p { font-size: 20px; }


@media (max-width: 960px) {
    .mv-grid { grid-template-columns: 1fr; gap: 20px; }
    .mv-card { max-width: none; }
    .mv-card.mission { margin-top: 0; }
    .mv-card.vision { text-align: left; margin-left: 0; margin-top: 0; }
    .mv-card p { font-size: clamp(18px, 4.6vw, 28px); line-height: 1.35; }
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .mission-vision { padding: 48px 0; }
    .mv-grid { grid-template-columns: 1fr; gap: 20px; }
    .mv-card { max-width: none; }
    .mv-card:nth-child(2) { text-align: left; margin-left: 0; margin-top: 0; }
}

/* ===== TIMELINE ===== */
.timeline { background: #465940; color: #FDFBF0; }
.timeline h2 { font-family: 'Amagro'; margin-top: 0; }
.timeline-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.timeline-item {
	border-left: 4px solid #4c8fff;
	background: rgba(76, 143, 255, 0.08);
	padding: 16px 16px 16px 20px;
	border-radius: 10px;
	transition: background 200ms ease;
}
.timeline-item:hover { background: rgba(76, 143, 255, 0.14); }
.timeline-item h4 { margin: 0 0 8px 0; }

/* ===== UTILITIES ===== */
.section { padding: 56px 0; }

/* Page-scoped container width so we don't affect global .container behavior on other pages */
.about-hero .container,
.history-intro .container,
.history-timeline .container,
.mission-vision .container,
.proud-member .container,
.site-footer .container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* Mobile container adjustments - matching Services page responsive behavior */
@media (max-width: 900px) {
	.about-hero .container,
	.history-intro .container,
	.history-timeline .container,
	.mission-vision .container,
	.proud-member .container {
		width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}
}
/* ===== PROUD MEMBER OF (Affiliations) ===== */
.proud-member { 
    text-align: center; 
    padding: 40px 0 30px 0; 
    color: #465940; 
    overflow: hidden; /* clip sliding row */
}
.pm-eyebrow { 
    margin: 0; 
    font-size: 14px; 
    letter-spacing: 1.6px; 
}
.pm-title { 
    font-family: 'Amagro'; 
    margin: 6px 0 6px 0; 
    letter-spacing: 1.2px; 
    font-size: clamp(26px, 4vw, 36px); 
}
.pm-underline { 
    display: block; 
    width: 120px; 
    height: 2px; 
    background: rgba(70,89,64,.5); 
    margin: 8px auto 14px auto; 
}

/* Static row layout (when not using slider) */
.pm-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px; 
    margin-top: 10px;
    animation: pm-scroll 24s linear infinite; /* right-to-left marquee */
}
.pm-logo img {
    display: block;
    max-height: 110px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease; /* hover zoom */
}
.pm-logo:hover img { transform: scale(1.08); }
.pm-row:hover { animation-play-state: paused; }
.pm-pcab img { max-height: 140px; }

/* Logo Slider Animation (reused from homepage) */
.pm-slider { 
    position: relative; 
    overflow: hidden; 
    margin: 10px auto 0 auto; 
    max-width: 1120px; 
}
.pm-slider .logo-track { 
    display: flex; 
    gap: 48px; 
    align-items: center; 
    width: max-content; 
    animation: slide-logos 22s linear infinite; 
}
.pm-slider .logo-item { 
    flex: 0 0 auto; 
    display: grid; 
    place-items: center; 
    padding: 8px 0; 
}
.pm-slider .logo-item img { 
    display: block; 
    max-height: 110px; 
    max-width: 220px; 
    width: auto; 
    height: auto; 
    object-fit: contain; 
    filter: none; 
    opacity: 1; 
    transition: transform 0.3s ease;
}
/* note: duplicated selector above for row usage; keep for slider parity */
.pm-pcab img { max-height: 140px; }

/* Hover zoom effect */
.pm-slider .logo-item:hover img { 
    transform: scale(1.1); 
}

/* Pause animation on hover */
.pm-slider:hover .logo-track { 
    animation-play-state: paused; 
}

@keyframes slide-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Marquee animation for static row */
@keyframes pm-scroll {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
    .pm-row { animation: none; }
}

@media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid > .team-card.featured { grid-column: 1 / -1; justify-self: center; }
}
@media (max-width: 560px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
	.story-grid { grid-template-columns: 1fr; }
	.mv-grid { grid-template-columns: 1fr; }
	.timeline-items { grid-template-columns: 1fr; }
}

/* Mobile responsive adjustments - matching Services page */
@media (max-width: 900px) {
	.history-grid { grid-template-columns: 1fr; }
	.history-grid::before { display: block; }
	.left-item::after, .right-item::before { display: none; }
	.left-item p, .right-item p { margin: 0; }
	.history-year { font-size: clamp(32px, 8vw, 48px); }
	.history-intro .container,
	.history-timeline .container,
	.mission-vision .container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.history-item p { font-size: clamp(15px, 4vw, 18px); line-height: 1.6; }
	.history-title { font-size: clamp(32px, 8vw, 48px); }
	.section { padding: 40px 0; }
}

@media (max-width: 560px) {
	.history-year { font-size: clamp(28px, 7vw, 36px); }
	.history-title { font-size: clamp(28px, 7vw, 36px); }
	.history-item p { font-size: 15px; }
}

/* ===== NEW HISTORY LAYOUT ===== */
/* History section tuning knobs: adjust these selectors*/
/* Year size/letter-spacing => .history-year */
/* Horizontal line thickness/color => .history-line */
/* Center divider thickness/color => .history-grid::before */
/* Space between entries => .history-col (gap) */
/* Content distance from divider => .left-item p / .right-item p (margins) */
.history-intro { background: #FDFBF0; color: #465940; padding-top: 24px; }
.history-title { font-family: 'Amagro'; text-align: center; margin: 0; font-size: clamp(40px, 6vw, 64px); letter-spacing: 1px; }
.history-subtitle { text-align: center; opacity: 0.8; margin-top: 8px; letter-spacing: .2px; font-size: 18px; }

.history-timeline { background: #FDFBF0; color: #465940; position: relative; }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
/* Center divider */
.history-grid::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #465940; transform: translateX(-50%); opacity: 0.85; }
.history-col { display: flex; flex-direction: column; gap: 44px; } /* vertical spacing between entries */
.history-item { position: relative; }
.history-head { display: flex; align-items: center; gap: 12px; width: 100%; } /* gap between year and horizontal line; stretch so line reaches divider */
/* Per-item vertical positioning via CSS variable */
.history-item { --head-offset: 0px; }
.history-head { margin-top: var(--head-offset); }
.left .history-head { justify-content: flex-start; }
.right .history-head { justify-content: flex-end; flex-direction: row-reverse; } /* place line on the left of the year */
.history-year { font-family: 'Amagro'; font-size: 60px; margin: 0; letter-spacing: 1.8px; } /* year typography */
.history-line { flex: 1 1 auto; height: 2px; background: #465940; opacity: .9; } /* horizontal rule beside year */
/* Connector lines to the center divider (gap is 40px, so half is 20px) */
.right-item .history-year { text-align: right; }
.history-item p { line-height: 1.6; opacity: 0.9; max-width: 520px; }

.history-footnote { margin-top: -8px; opacity: 0.9; }

/* Footnote precise positioning like timeline items */
#footnote {
	max-width: 520px;
	margin-top: 150px;   /* adjust up/down */
	margin-left: 0;     /* adjust left offset */
	text-align: left;
}
/* ===== HISTORY PER-ITEM OVERRIDES (targeted by data-year) ===== */
/* 2000s */
.history-item[data-year="2000s"] { --head-offset: -20px; }
.history-item[data-year="2000s"] .history-head { gap: 18px; }
.history-item[data-year="2000s"] .history-year { margin-right: 4px; letter-spacing: 2.5px; }
.history-item[data-year="2000s"] .history-line { height: 3px; }

/* 2004 */
.history-item[data-year="2004"] { --head-offset: 220px; }
.history-item[data-year="2004"] .history-head { gap: 16px; }
.history-item[data-year="2004"] .history-year { margin-left: 10px; }
.history-item[data-year="2004"] .history-line { height: 4px; max-width: 340px; }


/* 2016 */
.history-item[data-year="2016"] { --head-offset: 130px; }
.history-item[data-year="2016"] .history-head { gap: 8px; }
.history-item[data-year="2016"] .history-year { margin-right: 12px; }
.history-item[data-year="2016"] .history-line { height: 4px; max-width: 370px; }


/* PRESENT */
.history-item[data-year="present"] { --head-offset: 100px; }
.history-item[data-year="present"] .history-head { gap: 6px; }
.history-item[data-year="present"] .history-year { margin-left: 2px; }
.history-item[data-year="present"] .history-line { height: 4px; max-width: 540px; }


/* Optional: item-specific vertical spacing overrides */
.history-item[data-year="2000s"] { margin-bottom: 30px; }
.history-item[data-year="2016"] { margin-top: 10px; }
.history-item[data-year="2004"] { margin-bottom: 20px; }
.history-item[data-year="present"] { margin-top: 14px; }

/* ===== ABOUT HERO TWEAKS (headline size) ===== */

.about-hero-content h1 {
    /* Fluid, responsive headline sizing */
    font-size: clamp(28px, 4.8vw, 56px);
    line-height: 1.08;
    font-family: "Amagro";
    letter-spacing: 0.1px;
    text-wrap: balance;
    text-align: center;
}

/* Zoom and focus the background image without changing the image asset */
/* Remove zoom so full background shows */
.about-hero-bg {
    background-size: cover;
    background-position: center center;
}

/* Hero content paragraph (under H1): size, color, spacing */
.about-hero-content h1 { margin: 0 0 12px 0; }
.about-tagline {
    font-size: clamp(14px, 2.6vw, 18px);
    color: #FDFBF0;
    opacity: 0.95;
    margin-top: 12px;
	text-align: center;
}

/* Ensure the about hero paragraph is fully centered regardless of other rules */
.about-hero .about-tagline {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile-safe hero behavior - matching Services page */
@media (max-width: 900px) {
    .about-hero {
        height: auto; /* remove fixed viewport height */
        min-height: unset; /* allow content to dictate height */
        overflow: visible; /* ensure content isn't clipped */
        padding: 90px 0 90px; /* breathing room below sticky header - matching Services */
        justify-content: center;
    }
    .about-hero-content h1 { 
        font-size: clamp(28px, 7vw, 40px); 
        line-height: 1.18; 
        letter-spacing: 0.2px; /* keep minimal tracking on narrow screens */
    }
}

/* Extra-small screens: match Services' compact scale */
@media (max-width: 560px) {
	.about-hero { padding: 88px 0 28px; }
    .about-hero-content h1 { font-size: clamp(24px, 7vw, 34px); line-height: 1.16; }
    .about-tagline { font-size: 15px; }
	/* add side padding so text doesn't touch edges on small screens */
	.about-hero-content { padding-left: 16px; padding-right: 16px;}
	.about-tagline { padding-left: 16px; padding-right: 16px;}
}

@media (max-width: 420px) {
    .about-hero { padding: 88px 0 28px; }
	.about-hero-content h1 { font-size: clamp(22px, 8vw, 30px); letter-spacing: 1.2px; }
	.about-tagline { font-size: 14px; }
}

/* ===== MODAL STYLES ===== */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	position: relative;
	background-color: #FDFBF0;
	margin: 2% auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
	height: 90vh;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	overflow: hidden;
}

.modal-sidebar {
	width: 25%;
	background-color: #465940;
	color: #FDFBF0;
	padding: 30px 20px;
	overflow-y: auto;
}

.modal-main {
	width: 75%;
	background-color: #FDFBF0;
	padding: 40px;
	overflow-y: auto;
	position: relative;
}

.modal-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: none;
	pointer-events: none;
}

.back-link {
	color: #FDFBF0;
	text-decoration: none;
	font-size: 16px;
	margin-bottom: 30px;
	display: block;
	transition: color 0.3s ease;
}

.back-link:hover {
	color: #FDFBF0;
	text-decoration: underline;
}

.modal-nav ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-nav li {
	margin-bottom: 15px;
}

.modal-nav a {
	color: #FDFBF0;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.modal-nav a:hover {
	color: #FDFBF0;
	text-decoration: underline;
}

.modal-main h1 {
	font-size: 32px;
	font-weight: bold;
	color: #465940;
	margin: 0 0 30px 0;
	text-align: center;
	font-family: 'Sansation';
}

.modal-main h2 {
	font-size: 20px;
	font-weight: bold;
	color: #465940;
	margin: 30px 0 15px 0;
	font-family: 'Sansation';
}

.modal-main p {
	font-size: 16px;
	line-height: 1.6;
	color: #465940;
	margin-bottom: 15px;
}

.modal-main ul {
	margin: 15px 0;
	padding-left: 20px;
}

.modal-main li {
	font-size: 16px;
	line-height: 1.6;
	color: #465940;
	margin-bottom: 8px;
}

.modal-main a {
	color: #465940;
	text-decoration: underline;
}

.modal-main a:hover {
	color: #465940;
}

.modal-intro {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #465940;
}

section {
	margin-bottom: 25px;
}

/* Close button */
.close {
	color: #465940;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 15px;
	right: 20px;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: #465940;
	text-decoration: none;
}

/* Responsive modal */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		height: 95vh;
		margin: 2.5% auto;
		flex-direction: column;
	}
	
	.modal-sidebar {
		width: 100%;
		height: auto;
		max-height: 200px;
		padding: 20px;
	}
	
	.modal-main {
		width: 100%;
		padding: 20px;
	}
	
	.modal-main h1 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.modal-main h2 {
		font-size: 18px;
		margin: 20px 0 10px 0;
	}
	
	.modal-nav ol {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.modal-nav li {
		margin-bottom: 0;
	}
	
	.modal-nav a {
		font-size: 12px;
		padding: 5px 10px;
		background-color: rgba(70, 89, 64, 0.1);
		border-radius: 4px;
		display: block;
	}
}

@media (max-width: 480px) {
	.modal-content {
		width: 98%;
		height: 98vh;
		margin: 1% auto;
	}
	
	.modal-sidebar {
		padding: 15px;
	}
	
	.modal-main {
		padding: 15px;
	}
	
	.modal-main h1 {
		font-size: 20px;
	}
	
	.modal-main h2 {
		font-size: 16px;
	}
	
	.modal-main p,
	.modal-main li {
		font-size: 14px;
	}
}
.left-item p {
  padding-right: 34px;
}

.right-item p {
  padding-left: 34px;
}

/* Year-specific fine tuning */
.history-item[data-year="2000s"] p { padding-right: 50px; }
.history-item[data-year="2004"] p { padding-left: 40px; }
.history-item[data-year="2016"] p { padding-right: 24px; }
.history-item[data-year="present"] p { padding-left: 20px; }


html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===== MOBILE HORIZONTAL TIMELINE SCROLL ===== */
@media (max-width: 900px) {

  .history-timeline {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .history-grid {
    min-width: 900px; /* forces horizontal scroll */
  }

}
@media (max-width: 900px) {

  .history-grid::before {
    display: none;
  }

  .left-item p,
  .right-item p {
    margin: 0;
    padding: 0;
  }

}
@media (max-width: 900px) {

  .history-timeline::after {
    content: "← Swipe →";
    display: block;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
  }

}
.footer-address a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: #C8A04A; /* or your brand accent */
}

.location-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-top: 2px;
  flex-shrink: 0;
}
.history-head {
  min-width: 240px;
}

.history-line {
  flex: 1 0 auto;
  min-width: 120px;
}

.history-item[data-year="present"] .history-line {
  min-width: 160px;
}
