:root{
  --sand:#FAF3EC;
  --rust:#B5543A;
  --ink:#2B1F18;
  --pale:#F0DCC8;
  --line:#E2CFBA;
  --white:#FFFFFF;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background-color:#FAF3EC;
  color:#2B1F18;
  font-size:16px;
  font-family:"Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.75;
  overflow-x:hidden;
}

h1,h2,h3,h4{
  font-family:Georgia, "Times New Roman", serif;
  color:#2B1F18;
  line-height:1.2;
  margin:0 0 16px;
  font-weight:700;
}

p{
  margin:0 0 16px;
}

a{
  color:#B5543A;
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
}

.fade-up{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}

.fade-up.visible{
  opacity:1;
  transform:none;
}

/* ============ CENTERED WORDMARK NAVIGATION ============ */

.center-nav{
  position:sticky;
  top:0;
  z-index:200;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  background-color:#FAF3EC;
  border-bottom:3px solid #B5543A;
  padding:14px 28px;
  transition:box-shadow .3s ease;
}

.center-nav.scrolled{
  box-shadow:0 3px 12px rgba(181,84,58,0.22);
}

.brand-wordmark{
  grid-column:2;
  justify-self:center;
  font-family:Georgia, "Times New Roman", serif;
  font-size:27px;
  font-weight:700;
  letter-spacing:3px;
  color:#2B1F18;
  white-space:nowrap;
}

.brand-wordmark:hover{
  text-decoration:none;
  color:#B5543A;
}

.nav-group{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-left{
  grid-column:1;
  justify-self:start;
}

.nav-right{
  grid-column:3;
  justify-self:end;
}

.nav-link{
  color:#2B1F18;
  font-weight:600;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
  padding-bottom:4px;
}

.nav-link::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:8px;
  background-color:#B5543A;
  vertical-align:middle;
}

.nav-link:hover{
  text-decoration:none;
  color:#B5543A;
}

.nav-link.active{
  border-bottom:3px solid #B5543A;
  color:#B5543A;
}

.nav-toggle{
  display:none;
  grid-column:1;
  justify-self:start;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px 4px;
}

.nav-toggle .bar{
  display:block;
  width:26px;
  height:3px;
  margin:5px 0;
  background-color:#2B1F18;
}

/* ============ THREE COLUMN HERO ============ */

.trio-hero{
  background-color:#FAF3EC;
  border-bottom:1px solid #E2CFBA;
}

.trio-grid{
  display:grid;
  grid-template-columns:25% 50% 25%;
  gap:28px;
  align-items:center;
  padding:84px 0 88px;
}

.trio-graphic{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:340px;
}

.trio-main{
  text-align:center;
}

.eyebrow-chip{
  display:inline-block;
  background-color:#B5543A;
  color:#FFFFFF;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:8px 18px;
  margin-bottom:26px;
}

.trio-main h1{
  font-size:52px;
  color:#2B1F18;
  margin-bottom:26px;
}

.trio-sub{
  font-size:18px;
  color:#2B1F18;
  max-width:660px;
  margin:0 auto 14px;
}

.trio-note{
  font-size:15px;
  color:#2B1F18;
  max-width:620px;
  margin:0 auto 34px;
  font-weight:600;
}

.cta-row{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:15px 34px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.btn-rust{
  background-color:#B5543A;
  color:#FFFFFF;
}

.btn-rust:hover{
  background-color:#2B1F18;
  color:#FFFFFF;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #2B1F18;
  color:#2B1F18;
}

.btn-outline:hover{
  background-color:#2B1F18;
  color:#FFFFFF;
  text-decoration:none;
}

.btn-ink{
  background-color:#2B1F18;
  color:#FFFFFF;
  border:2px solid #2B1F18;
}

.btn-ink:hover{
  background-color:#FFFFFF;
  color:#2B1F18;
  border-color:#FFFFFF;
  text-decoration:none;
}

/* Cactus graphic */
.cactus{
  position:relative;
  width:56px;
  height:230px;
  border-radius:28px;
  background-color:#B5543A;
}

.cactus::before{
  content:"";
  position:absolute;
  width:22px;
  height:92px;
  border-radius:11px;
  background-color:#B5543A;
  top:44px;
  right:-20px;
}

.cactus::after{
  content:"";
  position:absolute;
  width:22px;
  height:64px;
  border-radius:11px;
  background-color:#B5543A;
  top:88px;
  left:-20px;
}

/* Western sun graphic */
.western-sun{
  position:relative;
  width:230px;
  height:115px;
  border-radius:230px 230px 0 0;
  background-color:#B5543A;
}

.western-sun::before,
.western-sun::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:5px;
  background-color:#F0DCC8;
}

.western-sun::before{
  top:132px;
}

.western-sun::after{
  top:152px;
}

.sun-line{
  position:absolute;
  left:0;
  right:0;
  top:172px;
  height:5px;
  background-color:#F0DCC8;
}

/* ============ ALTERNATING MAGAZINE BLOCKS ============ */

.magazine-section{
  background-color:#FAF3EC;
  padding:88px 0 96px;
}

.section-head{
  max-width:780px;
  margin:0 auto 60px;
  text-align:center;
}

.section-kicker{
  color:#B5543A;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}

.section-head h2{
  font-size:40px;
  color:#2B1F18;
  margin-bottom:16px;
}

.section-head p{
  font-size:17px;
  color:#2B1F18;
}

.magazine-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
  padding:44px 0;
  border-top:1px solid #E2CFBA;
}

.magazine-block.graphic-first .magazine-graphic{
  order:-1;
}

.magazine-text h3{
  font-size:28px;
  color:#2B1F18;
  margin-bottom:14px;
}

.magazine-text p{
  font-size:17px;
  color:#2B1F18;
  margin:0 0 14px;
}

.magazine-graphic{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:290px;
  background-color:#F0DCC8;
  border-radius:16px;
}

/* Horseshoe graphic */
.horseshoe{
  position:relative;
  width:170px;
  height:168px;
  border:18px solid #B5543A;
  border-top:none;
  border-radius:0 0 120px 120px;
}

.horseshoe::before,
.horseshoe::after{
  content:"";
  position:absolute;
  top:-10px;
  width:20px;
  height:20px;
  border-radius:50%;
  background-color:#B5543A;
}

.horseshoe::before{
  left:-30px;
}

.horseshoe::after{
  right:-30px;
}

/* Wagon wheel graphic */
.wagon-wheel{
  position:relative;
  width:168px;
  height:168px;
  border:15px solid #B5543A;
  border-radius:50%;
}

.wagon-wheel::before,
.wagon-wheel::after,
.wagon-spoke{
  position:absolute;
  background-color:#B5543A;
}

.wagon-wheel::before{
  content:"";
  width:5px;
  height:168px;
  left:76px;
  top:0;
}

.wagon-wheel::after{
  content:"";
  width:168px;
  height:5px;
  left:0;
  top:76px;
}

.wagon-spoke{
  width:5px;
  height:168px;
  left:76px;
  top:0;
}

.wagon-spoke.one{
  transform:rotate(45deg);
}

.wagon-spoke.two{
  transform:rotate(135deg);
}

/* Cowboy hat graphic */
.cowboy-hat{
  position:relative;
  width:216px;
  height:84px;
}

.cowboy-hat::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:38px;
  border-radius:16px;
  background-color:#B5543A;
}

.cowboy-hat::after{
  content:"";
  position:absolute;
  left:42px;
  right:42px;
  top:0;
  height:74px;
  border-radius:44px 44px 8px 8px;
  background-color:#B5543A;
}

/* ============ METRIC BAND ============ */

.metric-band{
  background-color:#F0DCC8;
  padding:66px 0;
}

.metrics-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.metric-item{
  text-align:center;
  padding:10px 18px;
}

.metric-item + .metric-item{
  border-left:2px solid #B5543A;
}

.metric-num{
  display:block;
  color:#B5543A;
  font-family:Georgia, "Times New Roman", serif;
  font-size:48px;
  font-weight:700;
  line-height:1.1;
}

.metric-label{
  display:block;
  margin-top:10px;
  color:#2B1F18;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:13px;
}

/* ============ CTA BAND ============ */

.cta-band{
  background-color:#B5543A;
  color:#FFFFFF;
  padding:82px 0;
  text-align:center;
}

.cta-band h2{
  color:#FFFFFF;
  font-size:40px;
  margin-bottom:18px;
}

.cta-band p{
  color:#FFFFFF;
  max-width:640px;
  margin:0 auto 30px;
  font-size:17px;
}

/* ============ PAGE HERO (secondary pages) ============ */

.page-hero{
  background-color:#FAF3EC;
  border-bottom:1px solid #E2CFBA;
  padding:76px 0 66px;
  text-align:center;
}

.page-hero .section-kicker{
  margin-bottom:14px;
}

.page-hero h1{
  font-size:46px;
  color:#2B1F18;
  margin-bottom:18px;
}

.page-hero p{
  max-width:740px;
  margin:0 auto;
  font-size:18px;
  color:#2B1F18;
}

/* ============ SERVICES PAGE ============ */

.services-page{
  padding:66px 0 88px;
}

.services-page .section-head{
  margin-bottom:48px;
}

.service-section{
  max-width:900px;
  margin:0 auto;
  padding:42px 0;
  border-top:1px solid #E2CFBA;
}

.service-section:first-of-type{
  border-top:none;
}

.service-inner{
  padding:8px 0;
}

.service-section.panel .service-inner{
  background-color:#F0DCC8;
  border-radius:16px;
  padding:34px 38px;
}

.service-num{
  display:block;
  color:#B5543A;
  font-family:Georgia, "Times New Roman", serif;
  font-size:20px;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:8px;
}

.service-section h3{
  font-size:26px;
  color:#2B1F18;
  margin-bottom:12px;
}

.service-section p{
  font-size:16.5px;
  color:#2B1F18;
}

/* Process overview */
.process-overview{
  background-color:#F0DCC8;
  padding:74px 0;
}

.process-overview .section-head p{
  color:#2B1F18;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:28px;
}

.process-step{
  text-align:center;
}

.process-num{
  display:inline-block;
  width:54px;
  height:54px;
  line-height:54px;
  border-radius:50%;
  background-color:#B5543A;
  color:#FFFFFF;
  font-family:Georgia, "Times New Roman", serif;
  font-size:20px;
  font-weight:700;
  margin-bottom:16px;
}

.process-step h4{
  font-size:18px;
  color:#2B1F18;
  margin-bottom:8px;
}

.process-step p{
  font-size:15px;
  color:#2B1F18;
  margin:0;
}

/* ============ CONTACT PAGE ============ */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  padding:66px 0 76px;
  align-items:start;
}

.contact-form-wrap h2,
.contact-info h2{
  font-size:30px;
  color:#2B1F18;
  margin-bottom:18px;
}

.contact-form .field{
  margin-bottom:20px;
}

.contact-form label{
  display:block;
  font-weight:700;
  color:#2B1F18;
  margin-bottom:8px;
  font-size:14px;
  letter-spacing:.5px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  font-size:16px;
  color:#2B1F18;
  background-color:#FFFFFF;
  border:2px solid #D9C3AB;
  border-radius:6px;
  font-family:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#B5543A;
  outline:none;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
}

.contact-form .btn{
  border:none;
  cursor:pointer;
  margin-top:6px;
}

.contact-info{
  background-color:#F0DCC8;
  border-radius:16px;
  padding:38px;
}

.info-row{
  margin-bottom:22px;
}

.info-label{
  display:block;
  color:#B5543A;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:13px;
  margin-bottom:6px;
}

.info-row p{
  color:#2B1F18;
  margin:0;
}

.info-row a{
  color:#B5543A;
  font-weight:700;
}

/* FAQ */
.faq-section{
  padding:0 0 80px;
}

.faq-section .section-head{
  margin-bottom:40px;
}

.faq-list{
  max-width:860px;
  margin:0 auto;
}

.faq-item{
  border:2px solid #D9C3AB;
  background-color:#FFFFFF;
  border-radius:10px;
  margin-bottom:16px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  padding:18px 24px;
  font-size:17px;
  font-weight:700;
  color:#2B1F18;
  font-family:inherit;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.faq-question::after{
  content:"+";
  color:#B5543A;
  font-size:26px;
  font-weight:700;
  line-height:1;
}

.faq-item.open .faq-question::after{
  content:"-";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 24px 20px;
  margin:0;
  color:#2B1F18;
}

.faq-item.open .faq-answer{
  max-height:520px;
}

/* ============ FOOTER ============ */

.footer-links{
  background-color:#FAF3EC;
  padding:38px 24px;
  text-align:center;
  border-top:1px solid #E2CFBA;
}

.footer-link{
  display:inline-block;
  color:#2B1F18;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:14px;
  margin:6px 18px;
}

.footer-link::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:8px;
  background-color:#B5543A;
  vertical-align:middle;
}

.footer-link:hover{
  color:#B5543A;
  text-decoration:none;
}

.footer-legal{
  background-color:#B5543A;
  color:#F7EDE3;
  padding:20px 24px;
  text-align:center;
  font-size:14px;
}

.footer-legal a{
  color:#FFFFFF;
  font-weight:700;
}

.footer-legal a:hover{
  text-decoration:underline;
}

/* ============ RESPONSIVE ============ */

@media (max-width:980px){
  .trio-main h1{
    font-size:40px;
  }

  .magazine-block{
    gap:40px;
  }

  .process-steps{
    grid-template-columns:repeat(3,1fr);
  }

  .contact-grid{
    gap:40px;
  }
}

@media (max-width:860px){
  .center-nav{
    grid-template-columns:auto 1fr auto;
    padding:12px 16px;
  }

  .nav-toggle{
    display:block;
  }

  .brand-wordmark{
    font-size:20px;
    letter-spacing:2px;
  }

  .nav-left,
  .nav-right{
    grid-column:1 / -1;
    display:none;
    flex-direction:column;
    width:100%;
    gap:14px;
    padding:16px 0 10px;
    background-color:#FAF3EC;
    border-top:1px solid #E2CFBA;
  }

  .center-nav.nav-open .nav-left,
  .center-nav.nav-open .nav-right{
    display:flex;
  }

  .trio-grid{
    grid-template-columns:1fr;
    gap:20px;
    padding:60px 0 64px;
  }

  .trio-graphic{
    min-height:0;
  }

  .trio-graphic.left-graphic{
    order:1;
  }

  .trio-main{
    order:2;
  }

  .trio-graphic.right-graphic{
    order:3;
  }

  .cactus{
    height:150px;
  }

  .western-sun{
    width:160px;
    height:80px;
    border-radius:160px 160px 0 0;
  }

  .western-sun::before{
    top:94px;
  }

  .western-sun::after{
    top:108px;
  }

  .sun-line{
    top:122px;
  }

  .magazine-block{
    grid-template-columns:1fr;
    gap:28px;
    padding:34px 0;
  }

  .magazine-block.graphic-first .magazine-graphic{
    order:0;
  }

  .magazine-graphic{
    min-height:220px;
  }

  .metrics-row{
    grid-template-columns:1fr 1fr;
    gap:0;
  }

  .metric-item:nth-child(3){
    border-left:none;
  }

  .metric-item{
    border-bottom:2px solid #B5543A;
    padding:22px 12px;
  }

  .metric-item:nth-child(3),
  .metric-item:nth-child(4){
    border-bottom:none;
  }

  .process-steps{
    grid-template-columns:1fr;
    gap:26px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:44px;
  }

  .page-hero h1{
    font-size:34px;
  }

  .trio-main h1{
    font-size:34px;
  }

  .section-head h2,
  .cta-band h2{
    font-size:31px;
  }

  .footer-link{
    margin:6px 10px;
    font-size:13px;
  }
}
