/* ==========================================================================
   MS KUTUMBAWA GENERAL MERCHANT — MAIN STYLESHEET
   Design concept: a modern trading-house / merchant ledger.
   Kano has been a crossroads of trans-Saharan trade for centuries; this
   identity borrows the seal, the ledger rule and the catalog code of a
   merchant house and renders them in gold, black and cream.
   ========================================================================== */

/* -------------------- Design Tokens -------------------- */
:root{
  /* Brand colors (as specified) */
  --gold: #C8A44D;
  --gold-accent: #D4AF37;
  --gold-deep: #8C6B23;
  --black: #111111;
  --white: #FFFFFF;
  --cream: #FBF6EC;
  --cream-deep: #F3E9D4;

  /* Supporting neutrals */
  --ink-70: rgba(17,17,17,.7);
  --ink-50: rgba(17,17,17,.5);
  --ink-30: rgba(17,17,17,.3);
  --ink-10: rgba(17,17,17,.1);
  --paper-70: rgba(255,255,255,.7);
  --paper-50: rgba(255,255,255,.5);
  --paper-20: rgba(255,255,255,.2);
  --paper-10: rgba(255,255,255,.1);

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #E9CE8D 0%, #C8A44D 45%, #9C7A32 100%);
  --gold-gradient-soft: linear-gradient(180deg, rgba(212,175,55,.14) 0%, rgba(212,175,55,0) 100%);
  --black-gradient: linear-gradient(180deg, #191919 0%, #0A0A0A 100%);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Sizing */
  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(17,17,17,.25);
  --shadow-gold: 0 16px 40px -12px rgba(200,164,77,.45);
  --section-pad: 7rem;

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

/* -------------------- Reset -------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure{ margin: 0; }
ul{ list-style: none; padding: 0; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select{ font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

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

body{
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

section{ position: relative; }

/* -------------------- Typography -------------------- */
h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
}

h1{ font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2{ font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.7rem); }

p{ line-height: 1.75; color: var(--ink-70); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before{
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-accent);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--gold); }

.section-head{
  max-width: 640px;
  margin-bottom: 3.2rem;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ margin-top: .9rem; }
.section-head p{ margin-top: 1rem; font-size: 1.05rem; }

/* Catalog code — reads as a merchant's ledger/SKU reference,
   used to label product & service categories */
.catalog-code{
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--gold-deep);
  text-transform: uppercase;
}

/* -------------------- Buttons -------------------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .35s ease, border-color .35s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn-gold{
  background: var(--gold-gradient);
  color: var(--black);
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover{
  background: var(--black);
  color: var(--white);
  border-color: var(--gold-accent);
  transform: translateY(-3px);
}
.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1px solid var(--paper-50);
}
.btn-outline:hover{
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-dark{
  background: transparent;
  color: var(--black);
  border: 1px solid var(--ink-30);
}
.btn-outline-dark:hover{
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
  transform: translateY(-3px);
}
.btn-block{ width: 100%; }

/* Ripple */
.btn .ripple{
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .65s var(--ease);
  background: rgba(255,255,255,.5);
  pointer-events: none;
}
@keyframes ripple{ to{ transform: scale(2.6); opacity: 0; } }

/* -------------------- Scroll progress + back to top -------------------- */
#scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 1200;
}
#back-to-top{
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .4s var(--ease);
  z-index: 900;
  border: 1px solid var(--gold-deep);
}
#back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top svg{ width: 20px; height: 20px; }

/* -------------------- Navigation -------------------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all .45s var(--ease);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled{
  padding: .8rem 0;
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.5);
}
.brand{
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--white);
  letter-spacing: .02em;
}
.brand-logo{
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(212,175,55,.35);
}
.brand small{
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  letter-spacing: .2em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: .1rem;
}

/* Footer brand sits on the same dark background, logo styling shared */
.footer-brand .brand-logo{ width: 52px; height: 52px; }

.main-nav{ display: flex; align-items: center; gap: 2.4rem; }
.nav-links{ display: flex; gap: 2.1rem; }
.nav-links a{
  color: var(--paper-70);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--gold-accent);
  transition: width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }

.nav-cta{ display: flex; align-items: center; gap: 1.4rem; }
.nav-cta .btn{ padding: .78rem 1.5rem; font-size: .84rem; }

.hamburger{
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--paper-20);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--paper-10);
}
.hamburger span{
  width: 20px; height: 1.5px;
  background: var(--white);
  transition: all .35s var(--ease);
  display: block;
}
.hamburger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer{
  position: fixed;
  inset: 0;
  background: var(--black-gradient);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: all .45s var(--ease);
}
.mobile-drawer.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-drawer a{
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
}
.mobile-drawer a.active{ color: var(--gold); }

/* -------------------- Hero -------------------- */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding-top: 6rem;
}
.hero-bg{
  position: absolute; inset: 0;
  background: url('../images/hero-banner.jpg') center 30%/cover no-repeat;
  opacity: .5;
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.78) 55%, rgba(10,10,10,.96) 100%),
    linear-gradient(100deg, rgba(10,10,10,.9) 10%, rgba(10,10,10,.35) 60%);
}
.hero-shapes{ position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-shape{
  position: absolute;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}
.hero-shape.s1{ width: 220px; height: 220px; top: 12%; right: 8%; animation-duration: 14s; }
.hero-shape.s2{ width: 120px; height: 120px; bottom: 18%; right: 22%; animation-duration: 10s; animation-delay: -3s; }
.hero-shape.s3{ width: 60px; height: 60px; top: 40%; right: 30%; background: rgba(212,175,55,.08); animation-duration: 9s; animation-delay: -1s; }
.hero-shape.s4{ width: 340px; height: 340px; top: -10%; left: -12%; border-color: rgba(212,175,55,.14); animation-duration: 18s; }
@keyframes float{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(-14px, 20px); }
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow{ opacity: 0; animation: fadeUp .9s var(--ease) .1s forwards; }
.hero h1{ margin-top: 1.1rem; opacity: 0; animation: fadeUp .9s var(--ease) .3s forwards; }
.hero .hero-sub{
  margin-top: 1.6rem;
  font-size: 1.12rem;
  color: var(--paper-70);
  max-width: 600px;
  opacity: 0; animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-actions{
  margin-top: 2.6rem;
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-meta{
  margin-top: 4rem;
  display: flex;
  gap: 2.6rem;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-meta div{ border-left: 1px solid rgba(212,175,55,.35); padding-left: 1rem; }
.hero-meta strong{ display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.hero-meta span{ font-size: .78rem; color: var(--paper-50); letter-spacing: .05em; text-transform: uppercase; }

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(26px); }
  to{ opacity: 1; transform: translateY(0); }
}

.scroll-cue{
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--paper-50);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue .line{ width: 1px; height: 34px; background: linear-gradient(var(--gold-accent), transparent); animation: pulseLine 2s ease-in-out infinite; }
@keyframes pulseLine{ 0%,100%{ opacity:.3;} 50%{ opacity:1; } }

/* -------------------- Reveal on scroll -------------------- */
[data-reveal]{
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal="up"]{ transform: translateY(48px); }
[data-reveal="left"]{ transform: translateX(-48px); }
[data-reveal="right"]{ transform: translateX(48px); }
[data-reveal="zoom"]{ transform: scale(.92); }
[data-reveal].revealed{ opacity: 1; transform: none; }

/* -------------------- About Section -------------------- */
.about-split{
  padding: var(--section-pad) 0;
  background: var(--white);
}
.split-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.split-grid.reverse .split-media{ order: 2; }
.split-media{ position: relative; }
.split-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.split-media .seal-float{
  position: absolute;
  bottom: -30px; left: -30px;
  width: 130px; height: 130px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--cream-deep);
}
.seal-float .seal-inner{
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid var(--gold-accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
}
.seal-inner strong{ font-size: 1.5rem; color: var(--black); line-height: 1; }
.seal-inner span{ font-size: .58rem; letter-spacing: .12em; color: var(--gold-deep); text-transform: uppercase; margin-top: .2rem; }

.values-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.value-item{
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  transition: border-color .3s ease, transform .3s ease;
}
.value-item:hover{ border-color: var(--gold-accent); transform: translateY(-4px); }
.value-item h4{ font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.value-item h4 span{ color: var(--gold-deep); margin-right: .5rem; font-family: var(--font-display); }
.value-item p{ font-size: .88rem; margin-top: .3rem; }

/* -------------------- Product / Service Cards -------------------- */
.products-section{
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card-grid.services{ grid-template-columns: repeat(4, 1fr); }
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(17,17,17,.25);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.product-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.product-media{ position: relative; overflow: hidden; aspect-ratio: 4/3; }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-media::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.product-card:hover .product-media::after{ opacity: 1; }
.product-body{ padding: 1.4rem 1.5rem 1.7rem; }
.product-body .catalog-code{ display: block; margin-bottom: .4rem; }
.product-body h3{ font-size: 1.15rem; }
.product-body p{ font-size: .87rem; margin-top: .5rem; }

/* -------------------- Why Choose Us -------------------- */
.why-section{ padding: var(--section-pad) 0; background: var(--white); }
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card{
  padding: 2.2rem 1.7rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: transform .4s var(--ease), background .4s ease;
  border: 1px solid transparent;
}
.why-card:hover{
  transform: translateY(-8px);
  background: var(--black);
  color: var(--white);
}
.why-card:hover p{ color: var(--paper-70); }
.why-card:hover .why-icon{ background: var(--gold-gradient); color: var(--black); }
.why-icon{
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  transition: all .4s ease;
  color: var(--gold-deep);
}
.why-icon svg{ width: 24px; height: 24px; }
.why-card h4{ font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; }
.why-card p{ font-size: .87rem; margin-top: .5rem; }

/* -------------------- Statistics -------------------- */
.stats-section{
  padding: 5.5rem 0;
  background: var(--black-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-section::before{
  content:'';
  position:absolute; inset:0;
  background: var(--gold-gradient-soft);
  opacity: .5;
}
.stats-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item strong{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold);
}
.stat-item span{
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper-70);
}
.stat-item{ border-right: 1px solid var(--paper-10); }
.stat-item:last-child{ border-right: none; }

/* -------------------- Team -------------------- */
.team-section{ padding: var(--section-pad) 0; background: var(--cream); }
.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(17,17,17,.25);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.team-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.team-photo{ aspect-ratio: 3/4; overflow: hidden; position: relative; }
.team-photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img{ transform: scale(1.06); }
.team-social{
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; gap: .6rem;
  opacity: 0; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.team-card:hover .team-social{ opacity: 1; transform: translateY(0); }
.team-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, color .3s ease;
}
.team-social a:hover{ background: var(--gold-accent); color: var(--black); }
.team-social svg{ width: 16px; height: 16px; }
.team-body{ padding: 1.6rem 1.6rem 1.9rem; }
.team-body .catalog-code{ color: var(--gold-deep); }
.team-body h3{ margin-top: .5rem; font-size: 1.2rem; }
.team-body .role{ font-size: .85rem; color: var(--gold-deep); font-weight: 600; margin-top: .1rem; display:block; }
.team-body p{ font-size: .88rem; margin-top: .8rem; }
.team-phone{
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem; font-size: .85rem; font-weight: 500;
  border-top: 1px solid var(--cream-deep); padding-top: 1rem; width: 100%;
}
.team-phone svg{ width: 15px; height: 15px; color: var(--gold-deep); }

/* -------------------- Testimonials -------------------- */
.testimonial-section{
  padding: var(--section-pad) 0;
  background: var(--white);
}
.testimonial-slider{
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  min-height: 260px;
}
.testimonial-slide{
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .6s var(--ease);
}
.testimonial-slide.active{ opacity: 1; visibility: visible; transform: none; position: relative; }
.testimonial-quote-mark{ font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-accent); line-height: 1; }
.testimonial-slide p{ font-size: 1.2rem; font-family: var(--font-display); font-style: italic; color: var(--black); line-height: 1.6; }
.testimonial-author{ margin-top: 1.4rem; }
.testimonial-author strong{ display: block; font-size: .95rem; }
.testimonial-author span{ font-size: .8rem; color: var(--ink-50); }
.slider-dots{ display: flex; justify-content: center; gap: .6rem; margin-top: 2.2rem; }
.slider-dots button{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cream-deep);
  transition: all .35s ease;
}
.slider-dots button.active{ background: var(--gold-accent); width: 26px; border-radius: 5px; }

/* -------------------- CTA -------------------- */
.cta-section{
  padding: 6rem 0;
  background: var(--gold-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2{ color: var(--black); }
.cta-section p{ color: rgba(17,17,17,.75); max-width: 560px; margin: 1rem auto 0; }
.cta-actions{ margin-top: 2.2rem; display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }
.cta-section .btn-outline{ color: var(--black); border-color: rgba(17,17,17,.3); }
.cta-section .btn-outline:hover{ background: var(--black); color: var(--gold); border-color: var(--black); }
.cta-section .btn-gold{ background: var(--black); color: var(--gold); box-shadow: 0 16px 40px -12px rgba(0,0,0,.4); }
.cta-section .btn-gold:hover{ background: var(--white); color: var(--black); }

/* -------------------- Page Header (inner pages) -------------------- */
.page-header{
  padding: 10rem 0 4.5rem;
  background: var(--black-gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before{
  content:'';
  position: absolute; inset: 0;
  background: var(--gold-gradient-soft);
}
.page-header .eyebrow{ justify-content: center; }
.breadcrumb{
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--paper-50);
}
.breadcrumb a{ color: var(--gold); }

/* -------------------- Footer -------------------- */
.site-footer{
  background: var(--black);
  color: var(--paper-70);
  padding-top: 5rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--paper-10);
}
.footer-brand p{ margin-top: 1.2rem; font-size: .88rem; color: var(--paper-50); max-width: 300px; }
.footer-social{ display: flex; gap: .8rem; margin-top: 1.6rem; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--paper-20);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.footer-social a:hover{ background: var(--gold-accent); border-color: var(--gold-accent); color: var(--black); }
.footer-social svg{ width: 16px; height: 16px; }
.footer-col h4{
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer-col ul li{ margin-bottom: .8rem; font-size: .9rem; }
.footer-col ul li a:hover{ color: var(--gold); }
.footer-col address{ font-style: normal; font-size: .9rem; line-height: 1.8; }
.footer-newsletter form{ display: flex; margin-top: 1rem; border-radius: 999px; overflow: hidden; border: 1px solid var(--paper-20); }
.footer-newsletter input{
  flex: 1; background: transparent; border: none;
  padding: .8rem 1.1rem; color: var(--white); font-size: .85rem;
}
.footer-newsletter input::placeholder{ color: var(--paper-50); }
.footer-newsletter button{
  background: var(--gold-gradient); color: var(--black);
  padding: 0 1.3rem; font-size: .82rem; font-weight: 600;
}
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0; font-size: .8rem; color: var(--paper-50); flex-wrap: wrap; gap: .8rem;
}
.footer-bottom a{ color: var(--paper-50); }
.footer-bottom a:hover{ color: var(--gold); }

/* -------------------- Contact Page -------------------- */
.contact-section{ padding: var(--section-pad) 0; background: var(--white); }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-item{
  display: flex; gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-deep);
}
.contact-info-item .icon{
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-deep);
}
.contact-info-item .icon svg{ width: 20px; height: 20px; }
.contact-info-item h4{ font-family: var(--font-body); font-weight: 600; font-size: .95rem; }
.contact-info-item p{ font-size: .9rem; margin-top: .3rem; }
.map-embed{
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; }

.contact-form-wrap{
  background: var(--cream);
  padding: 2.6rem;
  border-radius: var(--radius-lg);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field{ margin-bottom: 1.3rem; }
.field label{
  display: block; font-size: .82rem; font-weight: 500; margin-bottom: .5rem;
}
.field input, .field textarea{
  width: 100%;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-deep);
  background: var(--white);
  font-size: .92rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field input:focus, .field textarea:focus{
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
.field.error input, .field.error textarea{ border-color: #C0392B; }
.field-error-msg{ font-size: .76rem; color: #C0392B; margin-top: .4rem; display: none; }
.field.error .field-error-msg{ display: block; }
.form-success{
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(46,139,87,.12);
  color: #2E7D32;
  font-size: .88rem;
  margin-bottom: 1.2rem;
}
.form-success.visible{ display: block; }

/* -------------------- Business hours table (contact) -------------------- */
.hours-list{ margin-top: 1.4rem; }
.hours-list li{
  display: flex; justify-content: space-between;
  padding: .6rem 0; font-size: .88rem;
  border-bottom: 1px dashed var(--cream-deep);
}
.hours-list li span:last-child{ font-weight: 600; }

/* -------------------- Generic page content blocks (about/team pages) --- */
.content-block{ padding: var(--section-pad) 0; }
.content-block.alt{ background: var(--cream); }

/* Ledger-line divider — signature detail echoing a merchant's account book */
.ledger-divider{
  display: flex; align-items: center; gap: 1rem;
  margin: 4.5rem 0;
  color: var(--gold-deep);
}
.ledger-divider::before, .ledger-divider::after{
  content:''; flex: 1; height: 1px; background: var(--cream-deep);
}
.ledger-divider span{ font-family: var(--font-display); font-style: italic; font-size: 1rem; }
