/* ==========================================================================
   RiverReach Construction — About Us
   Replica of https://riverreachconstruction.com/about-us/
   ========================================================================== */

/* ---------- Fonts (Work Sans, self-hosted) ---------- */
@font-face{font-family:'Work Sans';font-style:normal;font-weight:100 900;font-display:swap;
  src:url(../fonts/worksans-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Work Sans';font-style:normal;font-weight:100 900;font-display:swap;
  src:url(../fonts/worksans-latin-ext.woff2) format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Work Sans';font-style:italic;font-weight:100 900;font-display:swap;
  src:url(../fonts/worksans-italic-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Work Sans';font-style:italic;font-weight:100 900;font-display:swap;
  src:url(../fonts/worksans-italic-latin-ext.woff2) format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}

/* ---------- Tokens ---------- */
:root{
  --primary:#183d4d;
  --green:#8db74b;
  --green-hover:#7ba543;
  --menu-hover:#86c5d1;
  --body-bg:#d7d6d6;
  --content-bg:#ffffff;
  --header-bg:rgba(24,61,77,.9);
  --sub-bg:#f2efef;
  --sub-sep:#dcdadb;
  --sidenav-border:#bbc8ce;
  --footer-bg:#183d4d;
  --footer-text:#9dadbe;
  --copyright-bg:#0f2f3d;
  --mobile-menu-border:#104b60;
  --font:"Work Sans",Arial,Helvetica,sans-serif;
  --site-width:1230px;
  --row-inner:1279.2px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;background:var(--body-bg);color:var(--primary);
  font-family:var(--font);font-size:16px;font-weight:400;line-height:1.7;letter-spacing:0;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;border:0;display:block;}
a{color:var(--primary);text-decoration:none;transition:color .2s ease-in-out;}
h1,h2,h3,h4,h5,h6{margin:0;font-weight:400;color:var(--primary);}
p{margin:0 0 20px;}
p:last-child{margin-bottom:0;}
ul{margin:0;padding:0;list-style:none;}
ol{margin:0;padding:0;list-style:none;}
button{font:inherit;color:inherit;background:none;border:0;padding:0;cursor:pointer;}

#wrapper{background:var(--content-bg);position:relative;overflow:hidden;}

.row{max-width:var(--site-width);margin:0 auto;}

.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.skip-link{position:absolute;left:-9999px;top:0;z-index:100000;background:#fff;padding:10px 16px;}
.skip-link:focus{left:0;}

/* ---------- Header ---------- */
.site-header-wrapper{position:absolute;top:0;left:0;width:100%;z-index:10000;}
.site-header{background:var(--header-bg);margin-top:30px;padding:0 30px;}
.header-row{display:flex;align-items:center;justify-content:space-between;}
.site-logo{margin:31px 0;}
.site-logo img{max-height:64px;width:271px;height:auto;}

.main-menu>ul{display:flex;align-items:center;justify-content:flex-end;}
.main-menu>ul>li{position:relative;padding-right:45px;}
.main-menu>ul>li:last-child{padding-right:0;}
.main-menu>ul>li>a{
  display:flex;align-items:center;height:126px;
  font-size:16px;font-weight:500;line-height:16px;color:#fff;
}
.main-menu>ul>li>a:hover,
.main-menu>ul>li.current-menu-item>a{color:var(--menu-hover);}
.main-menu>ul>li.menu-item-phone>a{font-size:24px;font-weight:700;color:var(--green);}
.main-menu>ul>li.menu-item-phone>a:hover{color:var(--green);}

/* dropdown */
.main-menu .sub-menu{
  position:absolute;top:126px;left:0;width:250px;
  background:var(--sub-bg);box-shadow:1px 1px 30px 0 rgba(0,0,0,.06);
  visibility:hidden;opacity:0;transition:opacity .2s ease-in;z-index:100;
}
.main-menu>ul>li:hover>.sub-menu,
.main-menu>ul>li:focus-within>.sub-menu{visibility:visible;opacity:1;}
.main-menu .sub-menu li+li{border-top:1px solid var(--sub-sep);}
.main-menu .sub-menu a{
  display:block;padding:7px 20px;font-size:15px;font-weight:400;line-height:1.7;color:var(--primary);
}
.main-menu .sub-menu a:hover{background:#f8f8f8;color:var(--primary);}

/* mobile toggle */
.mobile-menu-icons{display:none;}
.mobile-menu-toggle{width:21px;height:21px;position:relative;color:#dadada;}
.mobile-menu-toggle .bars,
.mobile-menu-toggle .bars::before,
.mobile-menu-toggle .bars::after{
  position:absolute;left:0;width:21px;height:2px;background:currentColor;content:"";
}
.mobile-menu-toggle .bars{top:10px;}
.mobile-menu-toggle .bars::before{top:-6px;}
.mobile-menu-toggle .bars::after{top:6px;}

/* mobile nav */
.mobile-nav-holder{display:none;background:var(--primary);}
.mobile-nav-holder .mobile-menu a{
  display:flex;align-items:center;height:35px;padding:0 12px 0 30px;
  font-size:16px;font-weight:500;line-height:35px;color:#fff;
  border-bottom:1px solid var(--mobile-menu-border);
}
.mobile-nav-holder .mobile-menu .sub a{padding-left:45px;}
.mobile-nav-holder .mobile-menu a:hover,
.mobile-nav-holder .mobile-menu .current-menu-item>a{background:var(--mobile-menu-border);color:var(--footer-text);}

/* ---------- Page title bar (hero) ---------- */
.page-titlebar{
  height:492px;margin-top:-1px;padding:0 30px;border-bottom:1px solid var(--primary);
  background-color:var(--primary);
  background-image:url(../img/stream-river-restoration-2.jpg);
  background-position:50% 50%;background-size:cover;background-repeat:no-repeat;
  background-blend-mode:soft-light;filter:saturate(.9);
}
.page-title-row{height:100%;}
.page-title-wrapper{
  display:flex;flex-direction:row;align-items:flex-end;justify-content:space-between;
  height:100%;padding:0 0 50px;
}
.entry-title{font-size:45px;font-weight:700;line-height:normal;color:#fff;margin:0;}
.breadcrumbs{font-size:13px;line-height:1.7;color:#fff;}
.breadcrumb-list{display:flex;flex-wrap:wrap;}
.breadcrumb-list a,.breadcrumb-list span{color:#fff;}
.breadcrumb-list a:hover{color:var(--menu-hover);}
.breadcrumb-sep::after{content:" / ";white-space:pre;}

/* ---------- Main / builder layout ---------- */
#main{padding:55px 0 0;}

.fullwidth-box{display:flex;justify-content:center;padding:30px 30px 70px;}
.row-inner{
  display:flex;flex-wrap:wrap;align-items:flex-start;
  flex:1 1 0%;max-width:var(--row-inner);
  margin-left:calc(-4% / 2);margin-right:calc(-4% / 2);
}
.col{display:flex;flex-direction:column;}
.col-2-3{width:66.666666666667%;}
.col-1-3{width:33.333333333333%;}
.col-1-1{width:100%;}
.col-wrapper{display:flex;flex-direction:column;justify-content:flex-start;width:100%;}
.col-2-3>.col-wrapper{padding-left:2.88%;padding-right:3.84%;}
.col-1-3>.col-wrapper{padding-left:3.84%;padding-right:5.76%;}
.col-1-1>.col-wrapper{padding-left:1.92%;padding-right:1.92%;}

/* ---------- Titles / text ---------- */
.title{margin:0 0 15px;}
.title .title-heading{margin:0;}
.title-size-two .title-heading{font-size:36px;font-weight:700;line-height:1.4;}
.title-size-four .title-heading{font-size:22px;font-weight:600;line-height:1.4;}
.title-center,.title-center .title-heading{text-align:center;}

.text p{font-size:16px;line-height:1.7;color:var(--primary);margin:0 0 20px;}

.separator{width:100%;margin-top:35px;height:0;align-self:center;}

/* ---------- Buttons ---------- */
.button{
  display:inline-block;padding:17px 40px;border-radius:3px;border:0;
  background:var(--green);color:var(--primary);
  font-family:var(--font);font-size:18px;font-weight:500;line-height:21px;
  text-transform:uppercase;text-decoration:none;
  transition:color .2s,background-color .2s,border-color .2s,box-shadow .2s,opacity .2s,transform .2s;
}
.button:hover,.button:focus{background:var(--green-hover);color:var(--primary);}

/* ---------- Sidebar widget ---------- */
.widget-area .widget{margin-bottom:45px;}
.widget-area .widget-title{font-size:32px;font-weight:600;line-height:1.4;color:var(--primary);margin:0 0 26px;}
.vertical-menu-widget .menu li{border-bottom:1px solid var(--sidenav-border);}
.vertical-menu-widget .menu li a{
  display:block;padding:8px 10px 8px 0;
  font-size:18px;font-weight:500;line-height:1.7;color:var(--primary);
  border-bottom:1px solid transparent;
}
.vertical-menu-widget .menu li a:hover{color:var(--primary);opacity:.7;}

/* ---------- CTA section ---------- */
.section-cta{
  padding:100px 30px;
  background-image:url(../img/dam-removal-company-1.jpg);
  background-position:50% 50%;background-size:cover;background-repeat:no-repeat;
}
.section-cta .title{margin:0 0 50px;}
.section-cta .title-heading{color:#fff;}

/* ---------- Footer ---------- */
.footer-widget-area{background:var(--footer-bg);color:var(--footer-text);padding:43px 30px 40px;}
.footer-columns{display:flex;flex-wrap:wrap;align-items:flex-start;margin:0 -15px;}
.footer-column{width:25%;padding:0 15px;}
.footer-widget h4.widget-title{font-size:21px;font-weight:600;line-height:1.5;color:#fff;margin:0 0 28px;}
.footer-widget p{font-size:16px;line-height:1.7;color:var(--footer-text);margin:0 0 16px;}
.footer-widget p:last-child{margin-bottom:0;}
.footer-widget a{color:var(--footer-text);}
.footer-widget a:hover{color:#fff;}
.footer-widget img{max-width:100%;height:auto;width:271px;}
.footer-menu .menu li{border-bottom:0;}
.footer-menu .menu li a{
  display:block;padding:8px 10px 8px 0;font-size:16px;font-weight:400;line-height:1.7;
  color:var(--footer-text);border-bottom:1px solid transparent;
}
.footer-menu .menu li a:hover{color:#fff;opacity:1;}

.copyright-area{background:var(--copyright-bg);padding:18px 30px 16px;}
.copyright-notice{text-align:center;font-size:16px;line-height:1.7;color:var(--footer-text);}
.copyright-notice a{color:var(--footer-text);}
.copyright-notice a:hover{color:#fff;}

/* ---------- Donate ---------- */
.section-donate{padding:0 30px 70px;background:var(--content-bg);}
.section-donate .title{margin:0 0 15px;}
.donate-intro{max-width:760px;margin:0 auto 30px;text-align:center;}
.donate-intro p{margin:0;}

.donate-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin:0 0 45px;}
.button-gofundme{background:#02a95c;color:#fff;}
.button-gofundme:hover,.button-gofundme:focus{background:#01914f;color:#fff;}
.button-paypal{background:#0070ba;color:#fff;}
.button-paypal:hover,.button-paypal:focus{background:#005ea6;color:#fff;}

.wallet-grid{display:flex;flex-wrap:wrap;margin:0 -15px;}
.wallet-card{
  width:33.333333%;padding:0 15px;display:flex;flex-direction:column;margin-bottom:30px;
}
.wallet-head{display:flex;align-items:center;margin:0 0 14px;}
.wallet-name{font-size:22px;font-weight:600;line-height:1.4;color:var(--primary);margin:0;}
.wallet-address{
  flex:1 1 auto;margin:0 0 16px;padding:14px 16px;
  background:#f6f8f9;border:1px solid var(--sidenav-border);border-radius:3px;
  font-family:"SFMono-Regular",Menlo,Consolas,"Liberation Mono",monospace;
  font-size:13px;line-height:1.6;color:var(--primary);word-break:break-all;
}
.wallet-copy{
  align-self:flex-start;padding:10px 22px;border-radius:3px;
  background:var(--primary);color:#fff;
  font-family:var(--font);font-size:14px;font-weight:500;line-height:21px;text-transform:uppercase;
  transition:background-color .2s,color .2s;
}
.wallet-copy:hover,.wallet-copy:focus{background:#0f2f3d;color:#fff;}
.wallet-copy.copied{background:var(--green);color:var(--primary);}

@media only screen and (max-width:1024px){
  .wallet-card{width:100%;}
}
@media only screen and (max-width:640px){
  .donate-buttons{gap:15px;}
  .donate-buttons .button{width:100%;text-align:center;}
}

/* ---------- Back to top ---------- */
.to-top-container{position:fixed;right:75px;bottom:0;z-index:9999;}
#toTop{
  display:block;width:48px;height:35px;background:#333;border-radius:4px 4px 0 0;
  opacity:0;visibility:hidden;transition:opacity .2s ease-in-out,background-color .2s;
}
#toTop.visible{opacity:1;visibility:visible;}
#toTop::before{
  content:"";position:absolute;top:50%;left:50%;width:10px;height:10px;
  margin:-2px 0 0 -5px;border-left:2px solid #fff;border-top:2px solid #fff;
  transform:translateY(-50%) rotate(45deg);
}
#toTop:hover{background:var(--primary);}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile menu breakpoint */
@media only screen and (max-width:1160px){
  .site-header-wrapper{position:relative;}
  .site-header{margin-top:30px;padding:20px 30px 20px;}
  .site-logo{margin:0;}
  .main-menu{display:none;}
  .mobile-menu-icons{display:block;}
  .mobile-nav-holder{display:none;margin:20px -30px -20px;}
  .mobile-nav-holder.is-open{display:block;}
}

/* Medium */
@media only screen and (max-width:1024px){
  .site-header{margin-top:0;}
}

/* Small — footer stacks, hero shortens */
@media only screen and (max-width:800px){
  .page-titlebar{height:252px;padding:5px 30px;}
  .page-title-row{display:flex;align-items:center;}
  .page-title-wrapper{height:auto;width:100%;padding:0 0 20px;}
  .page-title-secondary{display:none;}
  .footer-column{width:100%;margin-bottom:50px;}
  .footer-column:last-child{margin-bottom:0;}
}

/* Extra small — content columns stack */
@media only screen and (max-width:640px){
  .col-2-3,.col-1-3{width:100%;}
  .footer-column:last-child{margin-bottom:50px;}
  .col-2-3>.col-wrapper,
  .col-1-3>.col-wrapper,
  .col-1-1>.col-wrapper{padding-left:1.92%;padding-right:1.92%;}
  .title{margin:0 0 20px;}
  .section-cta .title{margin:0 0 35px;}
  .to-top-container{right:25px;}
}

/* ==========================================================================
   Multi-page components
   ========================================================================== */

/* Title size 3 / 5 */
.title-size-three .title-heading{font-size:24px;font-weight:600;line-height:1.4;}
.title-size-five .title-heading{font-size:20px;font-weight:600;line-height:1.4;text-transform:none;}
.text-center{text-align:center;}

/* Content image in sidebar / column */
.content-image{margin:0 0 20px;}
.content-image img{width:100%;height:auto;display:block;border-radius:2px;}
.separator-visible{border-top:1px solid var(--sep,#e0dede);height:0;margin:30px 0;}

/* Checklist */
.checklist{margin:6px 0 0;padding:0;list-style:none;}
.check-item{display:flex;align-items:flex-start;gap:10px;font-size:18px;line-height:1.4;color:var(--primary);padding:0 0 6.3px;}
.check-icon{flex:0 0 auto;margin-top:3px;width:16px;height:16px;position:relative;}
.check-icon::before{content:"";position:absolute;left:2px;top:0;width:6px;height:11px;border:solid var(--green);border-width:0 3px 3px 0;transform:rotate(45deg);}
.check-text{flex:1 1 auto;}

/* Portfolio / project gallery */
.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;}
.portfolio-tile{position:relative;display:block;overflow:hidden;background:var(--primary);aspect-ratio:300/214;}
.portfolio-tile img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease,opacity .3s ease;}
.portfolio-rollover{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:20px;
  background:rgba(24,61,77,.85);opacity:0;transition:opacity .3s ease;text-align:center;}
.portfolio-tile:hover .portfolio-rollover{opacity:1;}
.portfolio-tile:hover img{transform:scale(1.04);}
.portfolio-rollover-title{color:#fff;font-size:22px;font-weight:600;line-height:1.3;}

/* Sections */
.section-related,.section-projects{padding:30px;}
.section-related .title,.section-projects .title{margin-bottom:30px;}

/* Contact / Careers */
.section-contact{padding:55px 30px 70px;align-items:flex-start;}
.form-embed{margin-top:10px;}
.form-embed iframe{width:100%;min-height:600px;border:0;background:#fff;}
.social-links{display:flex;gap:10px;margin:0 0 6px;}
.social-link{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:2px;
  background:var(--primary);color:#fff;font-weight:700;font-size:18px;line-height:1;transition:background-color .2s;}
.social-link:hover{background:var(--green);color:var(--primary);}
.social-ig span{font-size:20px;}

/* ==========================================================================
   Home page
   ========================================================================== */
.home-hero{position:relative;min-height:520px;display:flex;align-items:center;
  background:linear-gradient(rgba(24,61,77,.55),rgba(24,61,77,.55)),url(../img/stream-river-restoration-2.jpg) center/cover no-repeat;
  border-bottom:1px solid var(--primary);}
.home-hero-inner{max-width:var(--site-width);margin:0 auto;padding:120px 30px 90px;width:100%;}
.home-hero-eyebrow{color:#fff;font-size:20px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin:0 0 10px;}
.home-hero-title{color:#fff;font-size:54px;font-weight:700;line-height:1.1;margin:0 0 28px;}
.home-hero-btns .button{font-size:18px;}

.section-band{padding:70px 30px;background:var(--primary);}
.section-band .band-eyebrow{color:#8db74b;text-transform:none;font-weight:600;font-size:20px;margin:0 0 8px;}
.section-band .title-heading{color:#fff;}

.section-services{padding:70px 30px;}
.section-services>.row-inner>.col>.col-wrapper>.title{margin-bottom:45px;}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 30px;}
.service-box{text-align:center;}
.service-box a{display:block;color:var(--primary);}
.service-box img{width:90px;height:90px;object-fit:contain;margin:0 auto 18px;display:block;}
.service-title{font-size:20px;font-weight:600;line-height:1.3;color:var(--primary);transition:color .2s;}
.service-box a:hover .service-title{color:var(--green-hover);}

.section-closing{padding:70px 30px 80px;}
.section-closing .title-size-five .title-heading{color:var(--primary);}
.section-closing .text p{font-size:18px;}

/* Home responsive */
@media only screen and (max-width:800px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .portfolio-grid{grid-template-columns:repeat(2,1fr);}
  .home-hero-title{font-size:40px;}
  .section-contact{padding:40px 30px 55px;}
}
@media only screen and (max-width:640px){
  .services-grid{grid-template-columns:1fr;}
  .portfolio-grid{grid-template-columns:1fr;}
  .home-hero{min-height:380px;}
  .home-hero-inner{padding:90px 30px 60px;}
  .home-hero-title{font-size:32px;}
}
