@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,600,200|Instrument+Sans:700|Inter:500&display=fallback');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root{--bg:#ffffff;--text:#01205c;--text-strong:#010e29;--muted:#6b7280;--brand:#0057ff;--brand-dark:#003db7;--surface:#f6fbff;--radius:20px;--container:1200px;--navy:#010e29}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Roboto Condensed',sans-serif;font-weight:300;background:var(--bg);color:var(--text);line-height:1.6;font-size:18px}
img,video{max-width:100%;height:auto;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
@media (max-width:921px){.container{padding-left:32px;padding-right:32px}}
@media (max-width:544px){.container{padding-left:24px;padding-right:24px}}
.section{padding:56px 0}
@media (max-width:921px){.section{padding:48px 0}}
@media (max-width:544px){.section{padding:40px 0}}
/* add top margin to section headings */
.section > .container > h2{margin-top:20px}

/* Typography */
h1,h2,h3{color:var(--text-strong)}
h1{font-size:44px;line-height:1.25;font-weight:600}
h2{font-size:37px;line-height:1.2;font-weight:600}
h3{font-size:23px;line-height:1.25;font-weight:300}

/* Standard Section Template */
.section-template {
	background-color: #ffffff;
	padding: 56px 0;
}

.section-template .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-template h2 {
	text-align: center;
	margin-bottom: 20px;
}

.section-template p {
	text-align: center;
	margin: 0 0 32px 0;
	color: var(--muted);
	font-size: 1.1em;
}

/* Responsive styles for section template */
@media (max-width: 921px) {
	.section-template {
		padding: 48px 0;
	}
	
	.section-template .container {
		padding: 0 32px;
	}
}

@media (max-width: 544px) {
	.section-template {
		padding: 40px 0;
	}
	
	.section-template .container {
		padding: 0 24px;
	}
}

/* Map Section Styles */
.map-section {
	background-color: #ffffff;
	padding: 56px 0;
}

.map-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.map-container {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-top: 40px;
}

.map-image {
	flex: 1;
	max-width: 60%;
}

.map-image img {
	width: 100%;
	height: auto;
	display: block;
}

.map-stats {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.map-stat-item {
	text-align: left;
}

.map-stat-number {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 8px;
}

.map-stat-since {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--navy);
}

.map-stat-year {
	font-size: 3rem;
	font-weight: 600;
	color: var(--navy);
}

.map-stat-description {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.4;
}

/* Responsive styles for map section */
@media (max-width: 921px) {
	.map-section {
		padding: 48px 0;
	}
	
	.map-section .container {
		padding: 0 32px;
	}
	
	.map-container {
		flex-direction: column;
		gap: 40px;
	}
	
	.map-image {
		max-width: 100%;
	}
	
	.map-stats {
		width: 100%;
	}
}

@media (max-width: 544px) {
	.map-section {
		padding: 40px 0;
	}
	
	.map-section .container {
		padding: 0 24px;
	}
	
	.map-container {
		gap: 30px;
	}
	
	.map-stat-number {
		font-size: 2rem;
	}
	
	.map-stat-year {
		font-size: 2.5rem;
	}
	
	.map-stat-since {
		font-size: 1.2rem;
	}
}

/* CTA Section Styles */
.cta-title {
	white-space: pre-line;
	text-align: center;
	margin-bottom: 20px;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-strong);
	line-height: 1.2;
}

.cta-description {
	text-align: center;
	margin: 0 0 40px 0;
	color: var(--muted);
	font-size: 1.2rem;
	line-height: 1.5;
	white-space: pre-line;
}

.cta-button-container {
	text-align: center;
}

.cta-button {
	display: inline-block;
	background-color: var(--brand);
	color: #ffffff;
	text-decoration: none;
	padding: 18px 40px;
	border-radius: 30px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	border: 2px solid var(--brand);
}

.cta-button:hover {
	background-color: var(--brand-dark);
	border-color: var(--brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

/* Responsive styles for CTA section */
@media (max-width: 921px) {
	.cta-title {
		font-size: 2rem;
	}
	
	.cta-description {
		font-size: 1.1rem;
	}
	
	.cta-button {
		padding: 16px 32px;
		font-size: 15px;
	}
}

@media (max-width: 544px) {
	.cta-title {
		font-size: 1.8rem;
	}
	
	.cta-description {
		font-size: 1rem;
		margin-bottom: 30px;
	}
	
	.cta-button {
		padding: 14px 28px;
		font-size: 14px;
		width: 100%;
		max-width: 300px;
	}
}
@media (max-width:921px){
	h1{font-size:35px}
	h2{font-size:30px}
	h3{font-size:20px}
}
@media (max-width:544px){
	h1{font-size:30px}
	h2{font-size:24px}
	h3{font-size:18px}
}

/* Links & buttons */
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand-dark)}
.button{display:inline-block;background:var(--brand);color:#fff;text-decoration:none;padding:13px 28px;border-radius:20px;border:2px solid var(--brand);font-family:'Inter',sans-serif;font-weight:500;font-size:16px;line-height:1.5;text-transform:uppercase;transition:.2s}
.button:hover{background:#fff;color:var(--brand);border-color:var(--brand-dark)}

/* Header */
.header{position:sticky;top:0;background:var(--navy);border-bottom:1px solid #0b1a3d;z-index:1002}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:80px;padding-left:40px;padding-right:40px}
@media (max-width:921px){.header-inner{padding-left:32px;padding-right:32px;height:80px}}
@media (max-width:544px){.header-inner{padding-left:24px;padding-right:24px;height:80px}}
.brand{font-weight:700;letter-spacing:.3px;color:#fff}
/* nav with dropdown */
.nav{flex:1;display:flex;align-items:center;justify-content:center}
.nav ul{list-style:none;display:flex;gap:18px;margin:0;padding:0;justify-content:center}
.nav li{position:relative}
.nav a{color:#cfd5db;text-decoration:none;padding:8px 4px;display:inline-block}

/* Mobile Navigation */
.mobile-nav-container {
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 1005;
  position: relative;
}

.mobile-language-switcher {
  display: flex;
  align-items: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1007;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  padding: 80px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: #000000;
  z-index: 1003;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #01205c;
}

.mobile-nav-link svg {
  color: #666666;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover svg {
  color: #01205c;
}

/* Mobile CTA Section */
.mobile-cta-section {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-cta-text {
  margin-bottom: 25px;
}

.mobile-cta-text p {
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-cta-button {
  display: block;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-cta-button.primary {
  background: #000000;
  color: #ffffff;
}

.mobile-cta-button.primary:hover {
  background: #01205c;
}

.mobile-cta-button.secondary {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.mobile-cta-button.secondary:hover {
  background: #000000;
  color: #ffffff;
}

/* Mobile Footer Links */
.mobile-footer-links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-footer-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #666666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.mobile-footer-link:hover {
  color: #01205c;
}

.mobile-footer-link svg {
  color: #666666;
  transition: color 0.3s ease;
}

.mobile-footer-link:hover svg {
  color: #01205c;
}

/* Language switcher */
.language-switcher {
  position: relative;
  margin-left: 20px;
}

.language-switcher-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(207, 213, 219, 0.3);
  border-radius: 6px;
  padding: 8px;
  color: #cfd5db;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-family: inherit;
}

.language-switcher-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(207, 213, 219, 0.5);
  color: #fff;
}

.language-switcher-button:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.current-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.current-code {
  font-weight: 500;
  text-transform: uppercase;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.language-switcher.is-active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--navy);
  border: 1px solid #0b1a3d;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 60px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.language-switcher.is-active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #cfd5db;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(11, 26, 61, 0.5);
  min-height: 44px;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.language-option:focus {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.language-option .flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile nav */
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav-container {
    display: flex;
  }
  
  /* Adjust header for mobile */
  .header-inner {
    justify-content: space-between;
  }
  
  /* Ensure proper spacing for mobile content - removed global margin-top */
  
  /* Fix section positioning on mobile */
  .section {
    position: relative;
    z-index: 1;
  }
  
  /* Fix language dropdown positioning on mobile */
  .language-dropdown {
    position: fixed !important;
    top: 60px !important;
    right: 20px !important;
    z-index: 1006 !important;
  }
  
  /* Ensure hamburger menu is below mobile overlay when menu is open */
  .hamburger {
    z-index: 1006 !important;
  }
  
  .mobile-menu-overlay {
    z-index: 1007 !important;
  }
  
  .language-switcher {
    margin-left: 10px;
  }
  
  .language-switcher-button {
    padding: 6px;
    font-size: 13px;
  }
  
  .language-dropdown {
    min-width: 50px;
  }
  
  .language-option {
    padding: 10px;
    min-height: 40px;
  }
  
  .language-option .flag {
    width: 20px;
    height: 15px;
  }
}
.nav a:hover{color:#ffffff}
.nav .submenu{position:absolute;left:0;top:100%;background:var(--navy);border:1px solid #0b1a3d;border-radius:8px;min-width:200px;padding:8px 0;display:none}
.nav .submenu a{padding:8px 12px;display:block}
.nav li:hover > .submenu{display:block}

/* Hero */
.hero{min-height:60vh;display:flex;align-items:flex-end;background:var(--surface) url('../images/scarves.webp') center/cover no-repeat}
.hero .container{width:100%;padding-top:24px;padding-bottom:40px}
.hero h1,.hero p{color:#ffffff;text-shadow:0 2px 16px rgba(0,0,0,.35)}
@media (max-width:921px){.hero{min-height:60vh}.hero .container{padding-bottom:32px}}
@media (max-width:544px){.hero{min-height:60vh}.hero .container{padding-bottom:24px}}
.hero p{margin:0 0 22px}

/* Cards grid */
.grid{display:grid;gap:20px}
.grid.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:921px){.grid.cols-4{grid-template-columns:repeat(2,minmax(0,1fr))}.grid.cols-2{grid-template-columns:1fr}}
@media (max-width:544px){.grid.cols-4{grid-template-columns:1fr}.grid.cols-2{grid-template-columns:1fr}}
.product-grid{width:90vw;max-width:90vw;margin-left:calc(50% - 45vw)}

/* Product cards */
.product-card{position:relative;border:2px solid #111;border-radius:20px;overflow:hidden;min-height:55vh;padding:40px;transition:transform .4s ease, box-shadow .4s ease}
.product-card::before{content:"";position:absolute;inset:0;background-image:var(--bg-url);background-size:cover;background-position:center;background-repeat:no-repeat;transform:scale(1);transition:transform .4s ease}
.product-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,0) 100%);z-index:1}
.product-card:hover{transform:scale(1.02);box-shadow:0 0 25px rgba(76,110,245,.6)}
.product-card:hover::before{transform:scale(1.06)}
.product-card .content{position:absolute;left:40px;right:40px;bottom:calc(8% - 30px);display:flex;flex-direction:column;gap:5px;z-index:2}
.product-card .title{color:#fff;margin:0}
.product-card .desc{color:#fff}
.product-card .buttons .button{background:#fff;color:#000;border-radius:25px;padding:10px 22px}
.product-card .buttons .button:hover{background:#4c6ef5;color:#fff}
.product-card .desc,.product-card .buttons{max-height:0;opacity:0;overflow:hidden;transform:translateY(10px);transition:max-height .5s ease, opacity .5s ease, transform .5s ease}
.product-card:hover .desc,.product-card:hover .buttons{max-height:200px;opacity:1;transform:none}
.product-card .stretched{position:absolute;inset:0;z-index:3}
.product-card.scarves{--bg-url: url('../images/scarves-main.webp')}
.product-card.headwear{--bg-url: url('../images/headwear-main.webp')}
.product-card.tshirts{--bg-url: url('../images/tshirts-main.webp')}
.product-card.hoodies{--bg-url: url('../images/sweatshirts-main.webp')}
.product-card.customers-fanclubs{--bg-url: url('../images/customers-football-club-1.webp')}
.product-card.customers-agency{--bg-url: url('../images/customers-agency.webp')}

/* Scrolling banner */
.scroller{overflow:hidden;background:#fff;padding:56px 0;border-top:1px solid #eee;border-bottom:1px solid #eee;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:15px 0}
.scroller-track{display:flex;gap:4vw;white-space:nowrap;will-change:transform;transform:translateZ(0)}
.scroller h2{font-family:'Anton',sans-serif;font-size:5vw;margin:0;font-weight:800;letter-spacing:.5px;color:#0d0d0d;text-transform:uppercase}
.oval{display:inline-block;border:2px solid #0d0d0d;background:#0d0d0d;color:#fff;padding:10px 18px;border-radius:30px;font-weight:700;font-size:2vw;vertical-align:middle;margin:0 2vw;transition:.2s;text-transform:uppercase;letter-spacing:.03em}
.oval:hover{background:transparent;color:#0d0d0d}

/* Media sections */
.split{display:grid;gap:0;grid-template-columns:1fr 1fr;align-items:center}
.split.reverse{grid-template-columns:1fr 1fr}
@media (max-width:921px){.split,.split.reverse{grid-template-columns:1fr}}
.split p{margin:0;color:var(--muted)}
.media{border-radius:14px;overflow:hidden;border:1px solid #eee}
.split .media{margin:0;padding:0}
.split .media img{width:100%;height:auto;display:block}
.split > :not(.media){padding:24px}

/* Numbers section */
.numbers-section{background:#f8fafc;padding:56px 0}
.numbers-section h2,.numbers-section h3{color:#000}
.numbers-split{display:grid;grid-template-columns:1fr 1fr;align-items:start}
@media (max-width:921px){.numbers-split{grid-template-columns:1fr;row-gap:16px}}
.numbers-title{padding:24px}
.numbers-list{display:flex;flex-direction:column;gap:16px;padding:24px}
.numbers-row{font-size:37px;font-weight:600;color:#000}
.numbers-sub{font-size:1rem;color:var(--muted)}
.numbers-row.right{text-align:right}
.numbers-row.center{text-align:center}
.numbers-row.left{text-align:left}
.numbers-sub.right{text-align:right}
.numbers-sub.center{text-align:center}
.numbers-sub.left{text-align:left}
@media (max-width:921px){.numbers-row{font-size:30px}}
@media (max-width:544px){.numbers-row{font-size:24px}}

/* Clients section */
.clients-section h2{margin:20px 0 10px;text-align:center}
.clients-section p.section-desc{margin:0 0 24px;text-align:center;color:var(--muted)}
.clients-grid{display:grid;gap:24px;grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:921px){.clients-grid{grid-template-columns:1fr}}
.client-card img{width:100%;height:auto;display:block;border-radius:10px;border:1px solid #eee}
.client-card h3{margin:10px 0 6px;color:#000}
.client-card p{margin:0;color:var(--muted)}

/* CTA */
.cta{background:var(--surface);text-align:center;border-top:1px solid #eee;border-bottom:1px solid #eee}
.cta p{margin:0 0 18px;color:#9CA3AF}

/* Footer */
.footer{border-top:1px solid #0b1a3d;padding:24px 0;background:var(--navy);color:#cfd5db}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.footer-nav a{color:#cfd5db;margin-right:14px}

/* Universal Hero Styles for All Pages */
.hero-with-bg {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/fortawear-history.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

/* Specific background for history page */
.history-hero {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/fortawear-history.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Default hero styles for all pages - can be overridden with specific classes */
.hero {
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

.hero-content {
	max-width: 800px;
	padding: 2rem;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	text-align: center;
	width: 100%;
}

.hero-description {
	font-size: 1.3rem;
	line-height: 1.6;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	text-align: center;
	max-width: 600px;
	width: 100%;
}

.hero-subtitle{font-size:1.2em;color:var(--muted);margin:16px 0 8px;font-weight:400}
.section-description{color:var(--muted);margin:0 0 32px;font-size:1.1em}

/* Timeline */
.timeline{position:relative;padding:32px 0}
.timeline::before{content:'';position:absolute;left:30px;top:0;bottom:0;width:2px;background:var(--brand)}
.timeline-item{position:relative;margin:0 0 48px 80px;padding:0 0 0 20px}
.timeline-year{position:absolute;left:-80px;top:0;width:60px;height:60px;background:var(--brand);color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:0.9em}
.timeline-content h3{margin:0 0 8px;color:var(--text-strong);font-size:1.2em}
.timeline-content p{margin:0;color:var(--muted);line-height:1.6}

/* Craft Section */
.craft-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin: 80px 0;
}

.craft-content h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-strong);
	margin: 0 0 30px;
	line-height: 1.2;
}

.craft-content h3 {
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--muted);
	margin: 0;
	line-height: 1.3;
}

.craft-description {
	font-size: 1.3rem !important;
	line-height: 1.7;
	color: var(--text);
	margin: 0;
}

.craft-description:not(:last-child) {
	margin-bottom: 20px;
}

.timeline-title {
	white-space: pre-line;
	text-align: center;
}

/* Timeline Container */
.timeline-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #ceced04a;
	border-radius: 2px;
	transform: translateX(-50%);
	z-index: 1;
}

.timeline-row {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.timeline-column {
	flex: 1;
	padding: 0 20px;
}

.timeline-left {
	text-align: right;
}

.timeline-right {
	text-align: left;
}

.timeline-center {
	width: 19px;
	height: 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.timeline-center::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 19px;
	height: 100%;
	background-color: #ceced04a;
	border-radius: 15px;
	z-index: 1;
	transition: background-color 0.3s ease;
}

.timeline-center.active::before {
	background-color: navy;
}

.timeline-year {
	background-color: transparent;
	color: navy;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	position: relative;
	z-index: 3;
}

.timeline-item-title {
	font-weight: bold;
	margin: 0 0 10px 0;
	color: var(--text);
}

.timeline-item-description {
	margin: 0;
	color: var(--text);
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.timeline-row {
		flex-direction: column;
		text-align: center;
	}

	.timeline-center {
		order: 1;
		margin: 20px 0;
	}

	.timeline-column {
		order: 2;
		width: 100%;
		padding: 0;
	}

	.timeline-left,
	.timeline-right {
		text-align: center;
	}
}

.craft-image {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.craft-image img {
	width: 90%;
	height: auto;
	object-fit: contain;
	object-position: center;
	display: block;
}

.craft-stats-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--navy);
	color: white;
	padding: 40px;
	text-align: center;
	min-width: 200px;
	border-radius: 0;
}

.stat-item {
	margin: 20px 0;
}

.stat-item:first-child {
	margin-top: 0;
}

.stat-item:last-child {
	margin-bottom: 0;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: white;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Values Grid */
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;margin:32px 0}
.value-card{padding:24px;background:var(--surface);border-radius:var(--radius);border:1px solid #e5e7eb}
.value-card h3{margin:0 0 12px;color:var(--text-strong);font-size:1.1em}
.value-card p{margin:0;color:var(--muted);line-height:1.6}

@media (max-width:768px){
.hero-with-bg {
	height: 60vh;
	background-attachment: scroll;
	padding: 1rem;
}

.hero-content {
	padding: 1rem;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-content h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	text-align: center;
	width: 100%;
}

.hero-description {
	font-size: 1.1rem;
	text-align: center;
	max-width: 100%;
	width: 100%;
}

.craft-grid {
	grid-template-columns: 1fr;
	gap: 40px;
	margin: 60px 0;
}

.craft-content h2 {
	font-size: 2rem;
	text-align: center;
}

.craft-content h3 {
	font-size: 1.4rem;
	text-align: center;
}

.craft-description {
	text-align: center;
}

.craft-image {
	height: 400px;
}

.craft-image img {
	height: 100%;
}

.craft-stats-overlay {
	padding: 30px 20px;
	min-width: 180px;
}

.stat-number {
	font-size: 2.5rem;
}

.timeline::before{left:20px}
.timeline-item{margin-left:60px}
.timeline-year{left:-60px;width:40px;height:40px;font-size:0.8em}
.values-grid{grid-template-columns:1fr;gap:16px}
}
.footer-nav a:hover{color:#ffffff}
