/* ====== Colors ====== */
/*

  pale yellow: #F2E1AE; rgba(242, 225, 174, 0.85);
  gold: #d58936;
  orange: #a44200;
  red: #69140e;
  brown: #3c1518;

*/



:root {
  --white: #FFF;
  --pale: #F2E1AE;
  --pale-rgb: 242, 225, 174;
  --gold: #d58936;
  --orange: #a44200;
  --red: #69140e;
  --brown: #3c1518;
}

p {
  font-size: 1.8rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #f2f3ae;
  background: #F2E1AE;
  background: rgba(242, 225, 174, 0.85);
}

.logo-wrapper {
  position: absolute;
  left: 32px;
  bottom: 14px;
  font-family: 'Geometos';


  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.nav-logo {
  width: auto;
  height: 54px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  pointer-events: none;
}

.logo-text {
  font-weight: 600;
  font-size: 1.9rem;
  color: #3c1518;
  line-height: 18px;
}

.logo-text .cap {
  font-size: 2.3rem;
}

.logo-subtext {
  font-size: 1.35rem;
  color: #69140e;
  line-height: 14px;
  margin-bottom: -1px;
}



footer .logo-wrapper {
  bottom: 32px;
}

footer .logo-text,
footer .logo-subtext {
  color: #fff;
}




.nav-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.footer-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.nav-bar-1 {
  height: 16px;
  background: #d58936;
}

.nav-bar-2 {
  height: 12px;
  background: #a44200;
}

.nav-bar-3 {
  height: 8px;
  background: #69140e;
}

.nav-bar-4 {
  height: 4px;
  background: #3c1518;
}

.nav ul {
  position: absolute;
  right: 0;
  bottom: 10px;
  margin: 0;
  padding-inline-start:  0;
  text-align: right;
  padding-right: 32px;
}

.nav ul li {
  position: relative;
  display: inline-block;
  margin-left: 32px;
}

.nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0 24px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 40px;
  transition: color 0.35s;
}

.nav ul li a:link,
.nav ul li a:visited {
  color: #3c1518;
}

.nav ul li a:hover,
.nav ul li a:active {
  color: #a44200;
}

.nav ul li a.nav-cta {
  line-height: 36px;
  background-color: #69140e;
  padding-top: 4px;
  border-radius: 20px;
}

.nav ul li a.nav-cta:link,
.nav ul li a.nav-cta:visited,
.nav ul li a.nav-cta:hover,
.nav ul li a.nav-cta:active {
  color: #fff;
  text-decoration: none;
}

.nav ul li a.nav-cta:link,
.nav ul li a.nav-cta:visited {
  color: #F2E1AE;
}

.nav ul li a.nav-cta:hover,
.nav ul li a.nav-cta:active {
  background-color: #a44200;
  color: #fff;
}


.nav ul li a.nav-cta {
  outline: 2px solid;
  outline-color: rgba(105, 20, 14, .5);
  outline-offset: -2px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav ul li a.nav-cta:hover {
  outline-color: rgba(105, 20, 14, 0);
  outline-offset: 15px;
}

.landing {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  background: url(./20250912_141140.jpg) no-repeat center / cover;
}

.below-the-fold {
  position: relative;
  display: block;
  width: 100%;
  background: #F2E1AE;
  padding: 160px 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 2rem;
  text-align: center;
}

.service-item h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #a44200;
  transition: color 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item p {
  color: #555;
  max-width: 260px;
  margin: 0 auto;
  color: #3c1518;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  transition: transform 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item:hover .service-icon {
  transform: scale(1.15);
}

.service-item:hover h2 {
  color: #d58936;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 24px;
  line-height: 1.6;
  color: #333;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  /*border-radius: 6px;*/

  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /*box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;*/
}

.service-icon {
  height: 96px;
  width: auto;
}

.service-icon path {
  fill: #3c1518;
}

.tally-form {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
}

footer {
  position: relative;
  display: block;
  padding: 16px 32px;
  min-height: 128px;
  background: #d58936;
}

h1 {
  text-transform: uppercase;
  margin-bottom: 36px;
  font-size: 4.2rem;
  text-align: center;
  color: #3c1518;
}

footer .copyright {
  position: absolute;
  right: 32px;
  bottom: 16px;
  text-align: right;
  color: #fff;
  font-size: 1.3rem;
}

/* ====== FAQ ====== */

.section-intro {
  text-align: center;
  margin-bottom: 48px;
  color: var(--brown);
}

.faq-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 840px;
}

.faq-item {
  border-bottom: 1px solid var(--brown);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  color: var(--red);
  cursor: pointer;
  position: relative;
  font-size: 2.1rem;
}
.faq-question:hover {
  color: var(--orange);
}

/* plus/minus indicator */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: 0.2s;
}

.faq-item.active .faq-question::after {
  content: '–';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0 0 16px;
  color: var(--brown);
  opacity: 0.9;
}

/* open state */
.faq-item.active {
  background-color: rgba(255,255,255,0.25);
}
.faq-item.active .faq-question {
  color: var(--orange);
  max-height: 300px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.below-the-fold#quote {
  background:
    linear-gradient(rgba(var(--pale-rgb), 0.5), rgba(var(--pale-rgb), 0.5)),
    url('./img/bg-01.jpg') no-repeat center / cover;
}
.quote-wrapper-outer {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--pale);
  max-width: 768px;
}
.quote-wrapper-inner-1 {
  position: relative;
  display: block;
  border: 4px solid var(--brown);
}
.quote-wrapper-inner-2 {
  position: relative;
  display: block;
  border: 4px solid var(--red);
}
.quote-wrapper-inner-3 {
  position: relative;
  display: block;
  border: 4px solid var(--orange);
}
.quote-wrapper-inner-4 {
  position: relative;
  display: block;
  border: 4px solid var(--gold);
  padding: 48px;
}

/* ====== FORM ====== */

/* form container */
.estimate-form {
  margin: 0 auto;
}

/* grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr; /* everything stacked */
  gap: 16px;
}

/* all fields full width by default */
.field,
.field.full,
.col-1,
.col-2,
.col-3,
.col-6 {
  grid-column: span 1;
}

.field {
  position: relative;
}

/* inputs */
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 8px 8px;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown);
  outline: none;
  font: inherit;
}

/* remove select arrow default styling */
.field select {
  appearance: none;
}

/* floating labels */
.field label {
  position: absolute;
  left: 8px;
  top: 14px;
  color: var(--brown);
  pointer-events: none;
  transition: 0.2s ease;
  background: var(--pale);
  padding: 0 4px;
}

/* ===== FLOAT STATES ===== */

.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label,

.field input.has-value + label,
.field textarea.has-value + label,
.field select.has-value + label,

.field input:-webkit-autofill + label {
  top: -6px;
  font-size: 1.3rem;
  color: var(--orange);
}

/* focus styling */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

/* ===== AUTOFILL FIX (Chrome garbage override) ===== */

.field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--pale) inset !important;
  -webkit-text-fill-color: var(--brown) !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* button */
.submit-btn {
  margin-top: 1.5rem;
  padding: 4px 16px 0;
  line-height: 54px;
  border: none;
  background: var(--red);
  color: var(--pale);
  font-weight: 700;
  font-size: 2.1rem;
  cursor: pointer;
  width: 100%;

  outline: 2px solid;
  outline-color: rgba(105, 20, 14, .5);
  outline-offset: -2px;
  text-shadow: none;

  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.submit-btn:hover {
  background: var(--orange);
  color: var(--white);

  outline-color: rgba(105, 20, 14, 0);
  outline-offset: 15px;
}

/* disabled state */
.submit-btn:disabled {
  background: #a58f88; /* muted brown */
  color: #f2e1ae;
  cursor: not-allowed;
  opacity: 0.7;
}

/* optional: remove hover effect when disabled */
.submit-btn:disabled:hover {
  background: #a58f88;
}

.form-success {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* checkmark circle */
.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
}

/* checkmark stroke */
.success-icon::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 11px;
  width: 14px;
  height: 28px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.3s ease 0.35s;
}

/* animate checkmark */
.form-success.show .success-icon::after {
  transform: rotate(45deg) scale(1);
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #d00;
  border-width: 2px;

  padding: 14px 6px 6px;
}

.error-msg {
  font-size: 1.2rem;
  color: #d00;
  font-weight: 700;
  margin-top: 1px;
  margin-bottom: 2px;
  min-height: 14px;
}

.form-success {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  text-align: center;
  padding: 24px 96px 36px;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.form-fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.25s ease;
}

/* mobile */
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-1 { grid-column: span 1; }
  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }
  .col-6 { grid-column: span 6; }

  .field.full {
    grid-column: span 6;
  }
}



/* responsive fallback */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
  }
}