/* ============================================================
   Alayande Inc. — Redesigned Website Styles
   Color Palette: Dark Navy + Gold
   ============================================================ */

/* --- RESET & ROOT --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette */
  --forest: #191E36;
  --forest-mid: #232845;
  --forest-dark: #0F1225;
  --forest-card: #151A30;
  --copper: #F8A62B;
  --copper-light: #FAB94D;
  --copper-glow: rgba(248, 166, 43, 0.15);
  --ivory: #F5F5F5;
  --ivory-dark: #EAEAEA;
  --text-dark: #1a1a2a;
  --text-mid: #4a4a5a;
  --text-light: rgba(255,255,255,0.75);
  /* Fonts */
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Source Serif 4', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
address { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- LOADING SCREEN --- */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .6s, visibility .6s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo-wrap { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.loading-logo-wrap img { width: 160px; height: auto; object-fit: contain; mix-blend-mode: lighten; position: relative; z-index: 2; }
.loading-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--copper); animation: spin 1.2s linear infinite; }
.loading-ring-2 { inset: 8px; border-top-color: transparent; border-right-color: var(--copper); opacity: .5; animation-duration: 1.8s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-tagline { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.loading-dots { display: flex; gap: 6px; }
.loading-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); animation: bdot 1.2s ease-in-out infinite; }
.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes bdot { 0%,80%,100% { transform: scale(.6); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }
.loading-bar-wrap { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.08); }
.loading-bar { height: 100%; background: var(--copper); width: 0%; animation: lbar 2s ease-out forwards; }
@keyframes lbar { to { width: 100%; } }

/* --- TOP BAR --- */
.top-bar {
  background: var(--forest-dark); padding: 7px 24px;
  display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 1px; color: var(--copper);
}
.top-bar a { color: var(--copper); display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar .sep { color: rgba(255,255,255,.2); margin: 0 4px; }
@media (max-width: 640px) { .top-bar { display: none; } }

/* --- NAVIGATION --- */
#main-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest); transition: box-shadow .3s, background .3s;
}
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); background: rgba(25,30,54,0.97); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 88px;
}
.nav-logo img { height: 80px; width: auto; object-fit: contain; mix-blend-mode: lighten; transition: opacity .3s; }
.nav-logo img:hover { opacity: .85; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.8); position: relative; padding-bottom: 4px; transition: color .25s;
}
.nav-dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--copper); margin-right: 6px;
  opacity: 0; transform: scale(0); transition: opacity .2s, transform .2s;
  vertical-align: middle; position: relative; top: -1px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--copper);
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover .nav-dot, .nav-links a.active .nav-dot { opacity: 1; transform: scale(1); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--copper-light); }
.nav-links a.active::after { background: var(--copper-light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { background: var(--forest-card); max-height: 0; overflow: hidden; transition: max-height .35s, opacity .35s; opacity: 0; }
.mobile-menu.open { max-height: 400px; opacity: 1; }
.mobile-menu ul { list-style: none; padding: 8px 24px 20px; }
.mobile-menu a {
  display: block; padding: 12px 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative; transition: color .25s, padding-left .25s;
}
.mobile-menu a::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--copper); transition: width .25s; }
.mobile-menu a:hover::before, .mobile-menu a.active::before { width: 3px; }
.mobile-menu a:hover, .mobile-menu a.active { color: #fff; padding-left: 14px; }
.mobile-menu a.active { color: var(--copper-light); }
.mobile-menu .mobile-phone {
  display: flex; align-items: center; gap: 8px; padding: 14px 8px 0;
  font-size: 13px; color: var(--copper); border-bottom: none; letter-spacing: .5px;
}
.mobile-menu .mobile-phone:hover { color: #fff; padding-left: 8px; }
.mobile-menu .mobile-phone::before { display: none; }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* --- SHARED ELEMENTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--copper); margin-bottom: 12px;
}
.section-rule { width: 48px; height: 2px; background: var(--copper); margin: 16px 0 24px; }
.section-rule-center { margin: 16px auto 24px; }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- HERO --- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,18,37,.94) 0%, rgba(25,30,54,.82) 40%, rgba(25,30,54,.55) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; padding: 120px 24px 80px; }
.hero-inner { max-width: 640px; }
.hero-location {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--copper);
  margin-bottom: 20px; animation: fiu .7s ease both;
}
.hero-h1 {
  font-family: var(--heading); font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px;
  animation: fiu .7s .1s ease both;
}
.hero-h1 em { font-style: normal; color: var(--copper); }
.hero-rule { width: 72px; height: 2px; background: var(--copper); margin-bottom: 24px; animation: fiu .7s .2s ease both; }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.82);
  max-width: 520px; margin-bottom: 40px; animation: fiu .7s .3s ease both;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; animation: fiu .7s .4s ease both; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  animation: bsc 2s infinite; color: rgba(248,166,43,.7);
}
@keyframes bsc { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fiu { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* --- BUTTONS --- */
.btn-copper {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--copper); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background .25s, gap .25s, transform .25s;
}
.btn-copper:hover { background: var(--copper-light); gap: 12px; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; transition: background .25s, border-color .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--copper); }

.btn-forest {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; background: var(--forest); color: var(--ivory);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: background .25s, gap .25s, transform .25s;
}
.btn-forest:hover { background: var(--forest-mid); gap: 14px; transform: translateY(-2px); }

.btn-text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--forest);
  margin-top: 24px; transition: gap .25s, color .25s;
}
.btn-text-link:hover { gap: 14px; color: var(--copper); }

/* SVG arrow for buttons */
.arrow-icon { transition: transform .25s; }
.btn-copper:hover .arrow-icon,
.btn-outline:hover .arrow-icon,
.btn-forest:hover .arrow-icon,
.btn-text-link:hover .arrow-icon { transform: translateX(3px); }

/* --- MISSION SECTION --- */
.mission-section { padding: 96px 0; background: var(--ivory); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; } }
.mission-h2 {
  font-family: var(--heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 8px;
}
.mission-h2 em { font-style: normal; color: var(--copper); }
.mission-p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.mission-img-wrap { position: relative; }
.mission-img-wrap::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid rgba(248,166,43,.25); pointer-events: none;
}
.mission-img-wrap img { position: relative; width: 100%; height: 380px; object-fit: cover; }
@media (max-width: 640px) { .mission-img-wrap img { height: 260px; } }

/* --- SUBSIDIARIES --- */
.subs-section { padding: 96px 0; background: var(--forest); }
.subs-header { text-align: center; margin-bottom: 56px; }
.subs-h2 {
  font-family: var(--heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.subs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .subs-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .subs-grid { grid-template-columns: 1fr 1fr; } }

.sub-card {
  background: var(--forest-card); padding: 32px;
  border-left: 3px solid var(--copper); border-radius: 4px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.sub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -8px rgba(0,0,0,.45), 0 0 0 1px rgba(248,166,43,.3);
}
.sub-card-logo-pill {
  background: transparent; border-radius: 0; padding: 0;
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 20px; height: 60px; width: 100%; overflow: hidden;
}
.sub-card-logo-img {
  height: 100%; width: auto; max-width: 100%; object-fit: contain; display: block;
  filter: brightness(1.5) contrast(1.1) drop-shadow(0 2px 12px rgba(255,255,255,.15));
  background: rgba(255,255,255,.08); border-radius: 6px; padding: 6px 10px;
}
.sub-card-tagline {
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--copper); margin-bottom: 16px;
}
.sub-card-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 20px; }
.sub-card-services { list-style: none; margin-bottom: 24px; }
.sub-card-services li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 10.5px; color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.sub-card-services li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.sub-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--copper);
  transition: color .25s, gap .25s;
}
.sub-card-link:hover { color: var(--copper-light); gap: 10px; }

/* --- CTA SECTION --- */
.cta-section { padding: 96px 0; background: var(--ivory-dark); text-align: center; }
.cta-h2 {
  font-family: var(--heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--forest); margin-bottom: 8px;
}
.cta-p { font-size: 1rem; color: var(--text-mid); max-width: 500px; margin: 0 auto 36px; line-height: 1.8; }

/* --- ABOUT PAGE HEADER --- */
.about-page-header {
  position: relative; background-color: var(--forest); padding: 96px 0 80px; overflow: hidden;
}
.about-page-header-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; background-repeat: no-repeat; opacity: 0.18;
}
.about-page-header::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,18,37,.85) 0%, rgba(25,30,54,.6) 100%);
  pointer-events: none;
}
.about-page-header-inner { position: relative; z-index: 1; }
.about-page-h1 {
  font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px;
}

/* --- ABOUT OVERVIEW --- */
.about-overview-section { background-color: var(--ivory); padding: 88px 0; }
.about-overview-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-overview-grid { grid-template-columns: 1fr 1fr; } }
.about-overview-img-col { order: 2; }
@media (min-width: 1024px) { .about-overview-img-col { order: 1; } }
.about-overview-text-col { order: 1; }
@media (min-width: 1024px) { .about-overview-text-col { order: 2; } }
.about-overview-img-wrap { position: relative; }
.about-overview-img-wrap::before {
  content: ''; position: absolute; top: -12px; left: -12px; width: 100%; height: 100%;
  border: 2px solid rgba(248,166,43,.25); pointer-events: none;
}
.about-overview-img {
  position: relative; width: 100%; height: 320px; object-fit: cover; display: block; border-radius: 4px;
}
@media (min-width: 768px) { .about-overview-img { height: 400px; } }
.about-overview-h2 {
  font-family: var(--heading); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 20px;
}
.about-overview-p { font-family: var(--body); font-size: 1rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.about-overview-p:last-child { margin-bottom: 0; }

/* Gold (copper) rule helpers */
.gold-rule-sm { width: 48px; height: 2px; background: var(--copper); margin-bottom: 24px; }
.gold-rule-center { width: 64px; height: 2px; background: var(--copper); margin: 0 auto 48px; }

/* --- ABOUT VALUES --- */
.about-values-section { background-color: var(--ivory-dark); padding: 88px 0; }
.about-values-header { margin-bottom: 40px; }
.about-values-h2 {
  font-family: var(--heading); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--forest); line-height: 1.2;
}
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .about-values-grid { grid-template-columns: repeat(4, 1fr); } }
.about-value-card {
  background: #fff; border: 1px solid rgba(248,166,43,.15); padding: 28px 24px; border-radius: 4px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.about-value-card:hover { box-shadow: 0 8px 24px -4px rgba(0,0,0,.1); transform: translateY(-4px); }
.about-value-icon { margin-bottom: 12px; color: var(--copper); }
.about-value-title {
  font-family: var(--sans); font-size: .875rem; font-weight: 700;
  letter-spacing: .04em; color: var(--forest); margin-bottom: 8px;
}
.about-value-desc { font-family: var(--body); font-size: .875rem; line-height: 1.7; color: var(--text-mid); }

/* --- ABOUT SUBSIDIARIES --- */
.about-subs-section { background-color: var(--forest); padding: 88px 0; }
.about-subs-header { text-align: center; margin-bottom: 0; }
.about-subs-h2 {
  font-family: var(--heading); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: #fff; margin-bottom: 20px;
}
.about-subs-list { display: flex; flex-direction: column; gap: 24px; }
.about-sub-card {
  background: var(--forest-card); border: 1px solid rgba(248,166,43,.15);
  padding: 32px; border-radius: 4px; transition: border-color .3s ease;
}
.about-sub-card:hover { border-color: rgba(248,166,43,.4); }
.about-sub-card-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .about-sub-card-grid { grid-template-columns: 220px 1fr 200px; } }

.about-sub-identity { display: flex; flex-direction: column; gap: 12px; }
.about-sub-icon-box {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--copper-glow); border-radius: 4px; flex-shrink: 0;
}
.about-sub-logo-wrap { display: flex; align-items: center; }
.about-sub-logo-img {
  max-width: 160px; max-height: 48px; width: auto; height: auto; object-fit: contain; display: block;
  filter: brightness(1.5) contrast(1.1) drop-shadow(0 2px 12px rgba(255,255,255,.15));
  background: rgba(255,255,255,.08); border-radius: 6px; padding: 4px 8px;
}
.about-sub-name { font-family: var(--heading); font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; }
.about-sub-tagline {
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--copper); line-height: 1.4;
}
.about-sub-focus { font-family: var(--body); font-size: .8rem; color: rgba(190,195,210,.6); line-height: 1.6; }
.about-sub-desc-col { display: flex; align-items: flex-start; }
.about-sub-desc { font-family: var(--body); font-size: .9375rem; line-height: 1.8; color: rgba(210,215,230,.8); }
.about-sub-services-col { display: flex; flex-direction: column; gap: 16px; }
.about-sub-services-label {
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--copper); margin: 0 0 4px;
}
.about-sub-services-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.about-sub-services-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--body); font-size: .8125rem; color: rgba(190,195,210,.75); line-height: 1.5;
}
.about-sub-bullet { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex-shrink: 0; margin-top: 6px; }
.about-sub-visit-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px;
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--copper);
  border: 1px solid rgba(248,166,43,.4); background: transparent;
  text-decoration: none; transition: background .25s, border-color .25s, color .25s; align-self: flex-start;
}
.about-sub-visit-btn:hover { background: rgba(248,166,43,.12); border-color: var(--copper); color: #fff; }

/* --- CONTACT PAGE --- */
.contact-page-header { padding: 96px 0 80px; background-color: var(--forest); position: relative; overflow: hidden; }
.contact-page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(to right, transparent, var(--copper), transparent);
}
.contact-page-h1 {
  font-family: var(--heading); font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.15;
}
.contact-page-h1 em { color: var(--copper); font-style: normal; }

.contact-info-section { padding: 80px 0 96px; background-color: var(--ivory); }
.contact-info-map-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact-info-map-grid { grid-template-columns: 2fr 3fr; gap: 64px; } }

.contact-detail-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon-box {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; background-color: var(--copper-glow); border-radius: 4px;
}
.contact-icon-box svg { width: 16px; height: 16px; stroke: var(--copper); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-lbl {
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px;
}
.contact-detail-val { font-family: var(--body); font-size: 1rem; line-height: 1.6; color: var(--text-mid); }
.contact-detail-val a { color: var(--text-mid); text-decoration: none; transition: color .2s; }
.contact-detail-val a:hover { color: var(--forest); }

.map-container { position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; border: 1px solid rgba(248,166,43,.2); border-radius: 4px; }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.map-caption { font-family: var(--sans); font-size: .7rem; color: var(--text-mid); margin-top: 8px; }

/* Contact form */
.contact-form-section { padding: 80px 0 96px; background-color: var(--ivory-dark); }
.contact-form-inner { max-width: 672px; margin: 0 auto; }
.contact-form-box { background: white; padding: 2rem; border: 1px solid rgba(248,166,43,.15); border-radius: 4px; }
.cf-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 640px) { .cf-grid { grid-template-columns: 1fr 1fr; } }
.cf-field { margin-bottom: 20px; }
.cf-label {
  display: block; font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 6px;
}
.cf-label .req { color: #c0392b; }
.cf-label .opt { color: var(--text-mid); }
.cf-input, .cf-textarea {
  width: 100%; background-color: var(--ivory); border: 1px solid rgba(248,166,43,.2);
  color: var(--text-dark); font-family: var(--body); font-size: .95rem;
  padding: .75rem 1rem; outline: none; border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.cf-input:focus, .cf-textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(248,166,43,.12); }
.cf-input.err, .cf-textarea.err { border-color: #c0392b; }
.cf-textarea { resize: vertical; min-height: 144px; }
.cf-error { font-family: var(--sans); font-size: .7rem; color: #c0392b; margin-top: 4px; display: none; }
.cf-error.show { display: block; }

/* Math captcha */
.captcha-wrap { margin-bottom: 20px; }
.captcha-question {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--forest); color: #fff; border-radius: 4px; margin-bottom: 8px;
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
}
.captcha-question .captcha-math { color: var(--copper-light); font-size: 1.1rem; letter-spacing: 2px; }
.captcha-input { width: 100px !important; }
.captcha-err { font-family: var(--sans); font-size: .7rem; color: #c0392b; margin-top: 4px; display: none; }
.captcha-err.show { display: block; }

.cf-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background-color: var(--forest); color: #fff;
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; border: none;
  cursor: pointer; border-radius: 4px; transition: background .25s, transform .25s;
}
.cf-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.cf-submit-error { font-family: var(--sans); font-size: .8rem; color: #c0392b; margin-top: 12px; display: none; }
.cf-submit-error.show { display: block; }

.cf-success {
  display: none; text-align: center; padding: 48px 24px;
  background: white; border: 1px solid rgba(248,166,43,.15); border-radius: 4px;
}
.cf-success.show { display: block; }
.cf-success-icon { color: var(--copper); margin: 0 auto 16px; }
.cf-success-h3 { font-family: var(--heading); font-size: 1.5rem; font-weight: 700; color: var(--forest); margin-bottom: 12px; }
.cf-success-p { font-family: var(--body); font-size: 1rem; color: var(--text-mid); }

.section-num-contact {
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px;
}
.gold-rule-48 { width: 48px; height: 2px; background: var(--copper); margin-bottom: 32px; }
.gold-rule-48c { width: 48px; height: 2px; background: var(--copper); margin: 0 auto 16px; }

/* --- FOOTER --- */
footer { background: var(--forest-dark); color: rgba(255,255,255,.55); }
.footer-copper-rule { height: 3px; background: linear-gradient(to right, transparent, var(--copper), transparent); }
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 96px; width: auto; object-fit: contain; mix-blend-mode: lighten; margin-bottom: 16px; }
.footer-tagline { font-size: .875rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--copper); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--copper); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; }
.footer-contact-row svg {
  width: 14px; height: 14px; stroke: var(--copper); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px;
}
.footer-contact-row a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-row a:hover { color: var(--copper); }
.footer-contact-row span { color: rgba(255,255,255,.55); }
.footer-cta-link {
  display: inline-block; margin-top: 16px; padding: 8px 18px;
  border: 1px solid var(--copper); color: var(--copper);
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; border-radius: 4px;
  transition: background .25s;
}
.footer-cta-link:hover { background: rgba(248,166,43,.1); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-bottom a {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .5px; color: rgba(255,255,255,.3);
}
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* Footer subsidiary links */
.footer-sub-link { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.55); font-size: .875rem; transition: color .2s; }
.footer-sub-link:hover { color: var(--copper); }
.footer-sub-name { display: block; font-size: .875rem; line-height: 1.4; }
.footer-sub-desc { display: block; font-family: var(--sans); font-size: .7rem; letter-spacing: .04em; color: rgba(255,255,255,.3); margin-top: 2px; }

/* --- SCROLL TO TOP --- */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest); border: 1.5px solid var(--copper); color: var(--copper);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, background .25s, transform .25s;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--copper); color: #fff; transform: translateY(-4px); }

/* --- COOKIE BANNER --- */
#cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  transform: translateY(100%); opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .45s ease;
}
#cookie-banner.cookie-visible { transform: translateY(0); opacity: 1; }
.cookie-copper-rule { height: 3px; background: linear-gradient(to right, transparent, var(--copper), transparent); }
.cookie-inner { background: var(--forest-dark); border-top: 1px solid rgba(248,166,43,.2); padding: 16px 24px; }
.cookie-body { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 768px) { .cookie-body { flex-direction: row; align-items: center; gap: 24px; } }
.cookie-text-wrap { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.cookie-icon { flex-shrink: 0; margin-top: 2px; color: var(--copper); }
.cookie-title { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .05em; color: #fff; margin-bottom: 4px; }
.cookie-desc { font-family: var(--body); font-size: 11.5px; color: rgba(210,215,225,.75); line-height: 1.6; }
.cookie-learn-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .05em; color: var(--copper); text-decoration: underline;
  padding: 0; margin-left: 4px;
}
.cookie-learn-btn:hover { color: var(--copper-light); }
.cookie-detail { display: none; font-family: var(--body); font-size: 11px; color: rgba(180,200,190,.65); line-height: 1.65; margin-top: 8px; }
.cookie-detail a { color: var(--copper); text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
@media (min-width: 480px) { .cookie-actions { flex-direction: row; } }
.cookie-btn {
  padding: 9px 18px; font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s, color .2s; white-space: nowrap; border-radius: 4px;
}
.cookie-btn-accept { background: var(--copper); color: #fff; }
.cookie-btn-accept:hover { background: var(--copper-light); }
.cookie-btn-reject, .cookie-btn-manage { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(248,166,43,.35); }
.cookie-btn-reject:hover, .cookie-btn-manage:hover { background: rgba(255,255,255,.08); color: #fff; }

/* --- COOKIE MODAL --- */
#cookie-modal {
  display: none; position: fixed; inset: 0; z-index: 10001;
  background: rgba(15,18,37,.88); align-items: center; justify-content: center; padding: 16px;
}
.cookie-modal-box { background: var(--forest); border: 1px solid rgba(248,166,43,.25); width: 100%; max-width: 520px; border-radius: 4px; overflow: hidden; }
.cookie-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid rgba(248,166,43,.15); }
.cookie-modal-title { font-family: var(--heading); font-size: 1.1rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.cookie-modal-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.5); font-size: 18px; line-height: 1; padding: 4px; transition: color .2s; }
.cookie-modal-close:hover { color: #fff; }
.cookie-modal-body { padding: 20px 24px; max-height: 65vh; overflow-y: auto; }
.cookie-modal-intro { font-family: var(--body); font-size: .875rem; color: rgba(190,195,210,.75); line-height: 1.75; margin-bottom: 20px; }
.cookie-cat { background: var(--forest-card); border: 1px solid rgba(248,166,43,.1); padding: 16px; margin-bottom: 12px; border-radius: 4px; }
.cookie-cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cookie-cat-name { font-family: var(--sans); font-size: 12px; font-weight: 700; color: #fff; }
.cookie-cat-desc { font-size: .8rem; color: rgba(170,175,190,.65); line-height: 1.6; }
.cookie-always-badge { font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .5px; padding: 3px 8px; background: var(--copper-glow); color: var(--copper); border-radius: 4px; }
.toggle-wrap { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track { position: absolute; inset: 0; border-radius: 12px; background: rgba(110,120,140,.4); transition: background .2s; cursor: pointer; }
.toggle-knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.3); transition: transform .2s; pointer-events: none; }
.cookie-toggle:checked + .toggle-track { background: var(--copper); }
.cookie-toggle:checked ~ .toggle-knob, .cookie-toggle:checked + .toggle-track + .toggle-knob { transform: translateX(20px); }
.cookie-modal-links { font-size: .75rem; color: rgba(130,135,150,.6); margin-top: 16px; }
.cookie-modal-links a { color: var(--copper); text-decoration: underline; }
.cookie-modal-footer { display: flex; flex-direction: column; gap: 10px; padding: 16px 24px; border-top: 1px solid rgba(248,166,43,.15); }
@media (min-width: 480px) { .cookie-modal-footer { flex-direction: row; } }
.cookie-modal-footer .cookie-btn { flex: 1; padding: 11px 16px; font-size: 10px; }

/* --- SPINNER ANIMATION --- */
@keyframes cfspin { to { transform: rotate(360deg); } }

/* --- SECTION NUM --- */
.section-num {
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px;
}

/* --- CONTACT INFO H2 --- */
.contact-info-h2 {
  font-family: var(--heading); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--forest); margin-bottom: 24px; line-height: 1.2;
}
.contact-form-h2 {
  font-family: var(--heading); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--forest); margin-bottom: 16px; line-height: 1.2;
}

/* --- CONTACT DETAILS GRID (responsive) --- */
@media (max-width: 640px) {
  .contact-form-inner [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
