* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #30302f;
  background: #fff;
}


/* ========================================
   ABOUT HEADER
   ======================================== */

.about-header {
  height: 202px;
}

.about-header-inner {
  width: 980px;
  height: 202px;
  margin: auto;
  position: relative;
}

.about-logo {
  position: absolute;
  left: 0;
  top: 36px;
}

.about-logo img {
  display: block;
  width: 375px;
  height: 131px;
  object-fit: contain;
}

.about-header-right {
  position: absolute;
  right: 0;
  top: 72px;
  width: 515px;
}

.about-nav {
  height: 45px;
  display: flex;
}

.about-nav a {
  height: 45px;
  line-height: 45px;
  padding: 0 22px;
  text-decoration: none;
  color: #9e969f;
  font-size: 14px;
  white-space: nowrap;
}

.about-nav a.active,
.about-nav a:hover {
  color: #30302f;
}


/* ========================================
   SEARCH
   ======================================== */

.about-search {
  margin-left: 126px;
  width: 300px;
  height: 45px;
  border: 1px solid #999;
  background: #f5f4f2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  font-size: 21px;
  color: #777;
}

.about-search span {
  font-size: 14px;
  color: #333;
}


/* ========================================
   ABOUT INTRO
   ======================================== */

.about-intro {
  background: #efeeea;
}

.about-copy {
  width: 780px;
  margin: auto;
  padding: 64px 0 49px;
}

.about-copy h1 {
  text-align: center;
  font-size: 40px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.about-copy p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 22px;
}


/* ========================================
   ABOUT HERO
   ======================================== */

.about-hero {
  width: 980px;
  height: 650px;
  margin: 0 auto 3px;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================================
   PROCESS
   ======================================== */

.process {
  background: #efeeea;
  padding-top: 124px;
}

.process-heading {
  width: 940px;
  margin: auto;
}

.process-heading h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.process-heading p {
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 110px;
}

.process-row {
  width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 245px);
  height: 429px;
}

.process-row.second {
  height: 420px;
}

.process-photo,
.process-text {
  width: 245px;
  height: 100%;
  overflow: hidden;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-text {
  background: #f4f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.process-text h3 {
  text-align: center;
  font-size: 23px;
  line-height: 1.41;
  margin: 0;
  font-weight: 400;
}


/* ========================================
   QUALITY GUARANTEE
   ======================================== */

.quality {
  text-align: center;
  padding: 96px 20px 90px;
}

.quality h2 {
  font-size: 40px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.quality p {
  max-width: 780px;
  margin: auto;
  font-size: 15px;
  line-height: 1.88;
}


/* ========================================
   BOTTOM CTA
   ======================================== */

.about-cta {
  min-height: 290px;
  background: #cdcbc1;
  color: #fff;

  padding: 0 20px;
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.about-cta h2 {
  margin: 0 0 22px;
  padding: 0;

  color: #fff;

  font-size: 25px;
  line-height: 1.375;
  font-weight: 700;
}

.about-cta p {
  margin: 0;
  padding: 0;

  color: #fff;

  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.about-cta a,
.about-cta a:link,
.about-cta a:visited,
.about-cta a:active {
  color: #fff;
  text-decoration: none;
}

.about-cta a:hover {
  color: #fff;
  text-decoration: underline;
}


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

.about-footer {
  height: 170px;
  text-align: center;
  padding-top: 50px;
  color: #8f8e8c;
}

.about-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.about-socials img {
  width: 30px;
  height: 30px;
}

.about-footer p {
  font-size: 12px;
}


/* ========================================
   TABLET
   ======================================== */

@media (max-width: 1000px) {

  .about-header {
    height: auto;
  }

  .about-header-inner {
    width: 100%;
    height: auto;
    padding: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-logo,
  .about-header-right {
    position: static;
  }

  .about-logo img {
    width: 260px;
    height: auto;
  }

  .about-header-right {
    width: auto;
  }

  .about-search {
    display: none;
  }

  .about-nav a {
    padding: 0 10px;
  }

  .about-copy,
  .process-heading,
  .about-hero,
  .process-row {
    width: calc(100% - 30px);
  }

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

  .process-photo,
  .process-text {
    width: auto;
  }
}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 700px) {

  .about-header-inner {
    display: block;
  }

  .about-logo img {
    margin: auto;
  }

  .about-nav {
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
  }

  .about-copy {
    padding-top: 45px;
  }

  .about-copy h1,
  .process-heading h2,
  .quality h2 {
    font-size: 34px;
  }

  .about-hero {
    height: 420px;
  }

  .process {
    padding-top: 70px;
  }

  .process-heading p {
    margin-bottom: 55px;
  }

  .process-row,
  .process-row.second {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .process-photo,
  .process-text {
    height: 280px;
  }

  .about-cta {
    min-height: 240px;
    padding: 40px 20px;
  }

  .about-cta h2 {
    font-size: 23px;
    margin-bottom: 18px;
  }

  .about-cta p {
    font-size: 17px;
  }
}


/* ========================================
   SEARCH REMOVED
   ======================================== */

.search,
.search-box,
.site-search,
input[type="search"] {
  display: none !important;
}


/* ========================================
   UNIFIED OAKWATERS HEADER
   ======================================== */

header,
.site-header,
.header {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

header {
  min-height: 225px !important;
  height: 225px !important;
  background: #fff !important;

  display: flex !important;
  align-items: center !important;
}

header > * {
  box-sizing: border-box !important;
}

header .header-inner,
header .nav-wrap,
header .container,
header > div {
  width: 100% !important;
  max-width: 1800px !important;

  margin-left: auto !important;
  margin-right: auto !important;
}


/* Search intentionally removed */

header form,
header input[type="search"],
header input[placeholder="Search..."],
header .search,
header .search-box,
header .site-search,
header [class*="search"] {
  display: none !important;
}


/* Prevent page-specific header/logo sizing */

header img {
  max-height: 190px !important;
  width: auto !important;
  object-fit: contain !important;
}


@media (max-width: 800px) {

  header {
    height: auto !important;
    min-height: 150px !important;
  }

}
