:root{
  --color-deep:#BBA109;
  --color-deep-text:#1C1700;
  --color-gold:#BFA409;
  --color-gold-dark:#9A8407;
  --color-gold-bright:#FDD401;
  --color-cream:#F8F5EE;
  --color-clay:#C97B53;
  --color-stone:#8B8478;
  --font-display:'Libre Baskerville', serif;
  --font-body:'Work Sans', sans-serif;
}

html, body{
  overflow-x: hidden;
}
body{
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-deep-text);
  background: #fff;
}

h1,h2,h3,h4,.font-display{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-deep-text);
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--color-gold);
}

.btn-sage{
  background: var(--color-deep);
  border-color: var(--color-deep);
  color: #fff;
  border-radius: 50px;
  padding: .55rem 1.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
}
.btn-sage:hover{
  background: #9A8607;
  border-color: #9A8607;
  color: #fff;
}

.btn-outline-gold{
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 50px;
  padding: .55rem 1.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  background: transparent;
}
.btn-outline-gold:hover{
  background: var(--color-gold);
  color: #fff;
}

/* Navbar */
#navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: transparent;
  padding-top: .8rem;
  padding-bottom: .8rem;
  transition: background .3s ease, box-shadow .3s ease;
}
#navbar.scrolled{
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.navbar-brand{
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff !important;
  letter-spacing: .03em;
}
#navbar.scrolled .navbar-brand{
  color: var(--color-deep-text) !important;
}
.navbar-brand .logo-white{ display: inline; }
.navbar-brand .logo-black{ display: none; }
#navbar.scrolled .navbar-brand .logo-white{ display: none; }
#navbar.scrolled .navbar-brand .logo-black{ display: inline; }
.nav-link{
  color: #fff !important;
  margin: 0 .6rem;
  padding: .5rem .2rem;
}
#navbar.scrolled .nav-link{
  color: var(--color-deep-text) !important;
}
.nav-link:hover,
.nav-link.active{
  color: var(--color-gold-bright) !important;
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active{
  color: var(--color-gold) !important;
}
.navbar-toggler{
  border-color: rgba(255,255,255,.5);
}
.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
#navbar.scrolled .navbar-toggler{
  border-color: rgba(28,23,0,.3);
}
#navbar.scrolled .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(28,23,0,.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar .btn-sage{
  background: var(--color-deep) !important;
  border-color: var(--color-deep) !important;
  color: #fff !important;
}
#navbar.scrolled .btn-sage{
  background: var(--color-deep) !important;
  border-color: var(--color-deep) !important;
  color: #fff !important;
}
@media (max-width: 991px){
  #navbar .navbar-collapse{
    background: rgba(28,23,0,.95);
    padding: 1rem;
    border-radius: 8px;
    margin-top: .5rem;
  }
  #navbar.scrolled .navbar-collapse{
    background: rgba(255,255,255,.98);
  }
  #navbar .nav-link{
    padding: .6rem 0;
  }
}

/* Dropdown menu */
#navbar .dropdown-menu{
  background: rgba(245,245,245,.95);
  border: none;
  border-radius: 8px;
  margin-top: .5rem;
}
#navbar .dropdown-item{
  color: var(--color-deep-text) !important;
  padding: .5rem 1rem;
  margin: 0;
  border-radius: 6px;
}
#navbar .dropdown-item:hover,
#navbar .dropdown-item.active{
  background: var(--color-gold) !important;
  color: var(--color-deep-text) !important;
}
#navbar.scrolled .dropdown-menu{
  background: #fff;
  border: 1px solid rgba(28,23,0,.1);
}
#navbar.scrolled .dropdown-item{
  color: var(--color-deep-text) !important;
}
#navbar.scrolled .dropdown-item:hover,
#navbar.scrolled .dropdown-item.active{
  background: var(--color-gold-bright) !important;
  color: var(--color-deep-text) !important;
}
@media (max-width: 991px){
  #navbar .dropdown-menu{
    background: transparent;
    border: none;
    padding-left: 1rem;
    margin-top: 0;
  }
  #navbar .dropdown-item{
    color: rgba(255,255,255,.8) !important;
    padding: .4rem 0;
  }
  #navbar .dropdown-item:hover{
    color: var(--color-deep-text) !important;
    background: var(--color-gold) !important;
  }
  #navbar.scrolled .dropdown-menu{
    background: transparent;
  }
  #navbar.scrolled .dropdown-item{
    color: var(--color-deep-text) !important;
  }
  #navbar.scrolled .dropdown-item:hover{
    color: var(--color-deep-text) !important;
    background: var(--color-gold-bright) !important;
  }
}

/* Hero video */
#home{
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-video-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-bg::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,23,0,.3) 0%, rgba(28,23,0,.12) 40%, transparent 100%);
  z-index: 1;
}
.hero-content{
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 0 24px;
  text-align: left;
}
.hero-content .eyebrow{
  color: var(--color-gold-bright);
  font-size: .8rem;
  margin-bottom: .5rem;
}
.hero-content h1{
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
  max-width: 100%;
  margin-bottom: .6rem;
}
.hero-content .hero-lead{
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero-content .btn-sage{
  background: #fff;
  border-color: #fff;
  color: var(--color-deep-text);
  border-radius: 50px;
}
.hero-content .btn-sage:hover{
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: var(--color-deep-text);
}
.hero-content .btn-outline-gold{
  border-color: #fff;
  color: #fff;
  border-radius: 50px;
}
.hero-content .btn-outline-gold:hover{
  background: #fff;
  border-color: #fff;
  color: var(--color-deep-text);
}


/* Service boxes (replacing ticker) */
.service-boxes{
  background: #E8C820;
  padding: 2rem 0;
}
.service-box{
  background: rgba(28,23,0,.2);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.service-box:hover{
  background: rgba(28,23,0,.2);
  border-color: var(--color-gold-bright);
  transform: translateY(-3px);
}
.service-box i{
  font-size: 1.5rem;
  color: var(--color-gold-bright);
  margin-bottom: .6rem;
  display: block;
}
.service-box span{
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}

/* Section basics */
.section-pad{ padding: 6rem 0; }
.section-head{ max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2{ font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-top: .5rem; }
.section-head p{ color: var(--color-deep-text); }
.bg-soft{ background: #F1ECE2; }

/* About - offset images */
.about-img-wrap{
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.about-img-wrap img.about-main{
  width: 100%;
  border-radius: 4px;
}
.about-img-wrap img.about-accent{
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  border: 10px solid var(--color-cream);
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(28,23,0,.18);
}

.feature-list-item{
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(28,23,0,.08);
}
.feature-list-item:last-child{ border-bottom: none; }
.feature-num{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  flex: 0 0 50px;
}
.feature-list-item h5{ margin-bottom: .3rem; }
.feature-list-item p{ color: var(--color-deep-text); margin-bottom: 0; }

/* Brand rows (alternating editorial) */
.brand-row{
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
.brand-row:last-child{ margin-bottom: 0; }
.brand-row img{
  width: 100%;
  border-radius: 4px;
}
.brand-row .brand-label{
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: .75rem;
}
.brand-row .brand-label::before{
  content:'';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--color-gold);
  margin-right: .75rem;
}
.brand-row h3{ font-size: 2rem; margin-bottom: 1rem; }
.brand-row .brand-logo-inline{
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: .75rem;
  display: block;
}
.brand-row .brand-logo-inline img{
  width: 100%;
  height: auto;
  display: block;
}
.brand-row .brand-logo-inline .brand-mark{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-deep);
}
.brand-row p{ color: var(--color-deep-text); margin-bottom: 1.5rem; }
.brand-row .brand-tag{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-deep-text);
  background: var(--color-cream);
  border: 1px solid rgba(28,23,0,.1);
  border-radius: 30px;
  padding: .3rem 1.1rem;
}

/* Gallery - featured + grid */
.gallery-tabs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(28,23,0,.1);
  padding-bottom: 0;
}
.gallery-tabs .filter-btn{
  background: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  color: var(--color-deep-text);
  padding: .75rem 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.gallery-tabs .filter-btn:hover{ color: var(--color-deep-text); }
.gallery-tabs .filter-btn.active{
  color: var(--color-deep-text);
  border-bottom-color: var(--color-gold);
}
.gallery-item.hide{ display: none; }
.gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover img{ transform: scale(1.05); }
.gallery-overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(28,23,0,.85) 100%);
  color: #fff;
}
.gallery-overlay .gallery-brand{
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--color-gold-bright);
  display: block;
  margin-bottom: .25rem;
}
.gallery-overlay h5{ color: #fff; margin-bottom: 0; }
.gallery-feature .gallery-card{ height: 100%; min-height: 480px; }
.gallery-grid-item .gallery-card{ height: 100%; min-height: 230px; }

/* Inventory band */
.inventory-band{
  background: var(--color-deep);
  color: #fff;
  padding: 4rem 0;
}
.inventory-band .stat-num{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-gold-bright);
}
.inventory-band .stat-label{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: #fff;
}
.inventory-band .stat-divider{
  border-left: 1px solid rgba(255,255,255,.15);
}

/* Why us - two column icon list */
.why-item{
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 4px;
  height: 100%;
}
.why-item .feature-icon{
  flex: 0 0 50px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(191,164,9,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.1rem;
}
.why-item .feature-icon i{ color: var(--color-gold); font-size: 1.25rem; }
.why-item h5{ margin-bottom: .35rem; }
.why-item p{ color: var(--color-deep-text); margin-bottom: 0; }

/* Process - horizontal stepper */
.process-stepper{
  position: relative;
}
.process-stepper::before{
  content: '';
  position: absolute;
  top: 27px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(28,23,0,.12);
  display: none;
}
@media (min-width: 768px){
  .process-stepper::before{ display: block; }
}
.process-step{ text-align: center; position: relative; }
.process-num{
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-deep-text);
  background: var(--color-gold-bright);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  border: 6px solid var(--color-cream);
}
.process-step h5{ margin-bottom: .5rem; }
.process-step p{ color: var(--color-deep-text); }

/* CTA */
.cta-band{
  background: var(--color-gold-bright);
  color: var(--color-deep-text);
  border-radius: 12px;
  padding: 3rem;
}
.cta-band h2{ color: var(--color-deep-text); }
.cta-band p{ color: var(--color-deep-text); }
.cta-band .btn-sage{
  background: var(--color-deep);
  color: #fff !important;
  border-color: var(--color-deep);
}
.cta-band .btn-sage:hover{
  background: #9A8607;
  border-color: #9A8607;
}

/* Contact - split panel */
.contact-split{
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.contact-info-panel{
  background: var(--color-deep);
  color: #fff;
  padding: 3rem;
  height: 100%;
}
.contact-info-panel h3{ color: #fff; }
.contact-info-panel .eyebrow{ color: var(--color-gold-bright); }
.contact-info-panel ul li{
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  color: #fff;
}
.contact-info-panel ul li i{
  color: var(--color-gold-bright);
  margin-right: .9rem;
  margin-top: .2rem;
}
.contact-form-panel{ padding: 3rem; }
.contact-form-panel .form-control{
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(28,23,0,.2);
  padding: .75rem .25rem;
  background: transparent;
}
.contact-form-panel .form-control:focus{
  box-shadow: none;
  border-color: var(--color-gold);
}

/* Footer */
.site-footer{
  background: var(--color-deep);
  color: rgba(255,255,255,.65);
}
.site-footer h5{
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.site-footer a{ color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer a:hover{ color: var(--color-gold-bright); }
.site-footer .footer-brand{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.site-footer .footer-brand span{ color: var(--color-gold-bright); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
}
.social-icon{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin-right: .6rem;
}
.social-icon:hover{ background: var(--color-gold-bright); border-color: var(--color-gold-bright); }
.social-icon:hover i{ color: var(--color-deep-text) !important; }
.social-icon i{ color: rgba(255,255,255,.75) !important; }

@media (max-width: 991px){
  #home{ min-height: 500px; }
  .hero-content{ bottom: 32px; padding: 0 20px; }
  .hero-content h1{ font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin-bottom: .8rem; }
  .hero-content .eyebrow{ font-size: .75rem; }
  .brand-row{ flex-direction: column; }
  .brand-row .row > div{ margin-bottom: 2rem; }
  .about-img-wrap{ padding-right: 0; margin-bottom: 2rem; }
  .gallery-feature .gallery-card{ min-height: 320px; }
  .contact-info-panel, .contact-form-panel{ padding: 2rem; }
}

@media (max-width: 575px){
  #home{ min-height: 460px; }
  .hero-content{ bottom: 20px; padding: 0 16px; }
  .hero-content h1{ font-size: 1.3rem; margin-bottom: .6rem; }
  .hero-content .eyebrow{ font-size: .65rem; }
  .section-pad{ padding: 3rem 0; }
  .service-box{ padding: .8rem .5rem; }
  .service-box i{ font-size: 1.2rem; }
  .service-box span{ font-size: .75rem; }
}
