* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #161310;
  color: #F3EEE6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

a:hover {
  color: #E8C98F;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0 0 18px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background-color: #C9893B;
  color: #0E0B09;
}

.btn-primary:hover {
  background-color: #E8C98F;
  color: #0E0B09;
}

.btn-outline {
  background-color: transparent;
  color: #E8C98F;
  border: 2px solid #E8C98F;
}

.btn-outline:hover {
  background-color: #E8C98F;
  color: #0E0B09;
}

.btn-dark {
  background-color: #C9893B;
  color: #0E0B09;
}

.btn-dark:hover {
  background-color: #161310;
  color: #E8C98F;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  background-color: #221C16;
  border-right: 2px solid #C9893B;
  display: flex;
  flex-direction: column;
  padding: 34px 22px 28px;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.side-nav.scrolled {
  box-shadow: 4px 0 18px #0E0B09;
}

.side-nav-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 5px;
  color: #E8C98F;
  margin: 0 0 46px 6px;
}

.side-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: #F3EEE6;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.side-nav-link:hover {
  color: #E8C98F;
  background-color: #2B241C;
}

.side-nav-link.active {
  color: #E8C98F;
  border-left-color: #C9893B;
  background-color: #2B241C;
}

.nav-diamond {
  width: 9px;
  height: 9px;
  background-color: #C9893B;
  transform: rotate(45deg);
  flex: none;
}

.side-nav-link:hover .nav-diamond,
.side-nav-link.active .nav-diamond {
  background-color: #E8C98F;
}

.side-nav-foot {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #3A3128;
}

.side-nav-foot a {
  color: #E8C98F;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 120;
  width: 46px;
  height: 46px;
  background-color: #221C16;
  border: 2px solid #C9893B;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #E8C98F;
  border-radius: 2px;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0E0B09;
  z-index: 95;
}

.nav-overlay.open {
  display: block;
}

.site-main {
  margin-left: 240px;
}

.center-hero {
  text-align: center;
  padding: 104px 32px 76px;
}

.hero-chip {
  display: inline-block;
  background-color: #C9893B;
  color: #0E0B09;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 52px;
  color: #F3EEE6;
  max-width: 1040px;
  margin: 0 auto 26px;
}

.hero-sub {
  font-size: 19px;
  color: #F3EEE6;
  max-width: 780px;
  margin: 0 auto 38px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.jade-disc {
  position: relative;
  width: 96px;
  height: 96px;
  background-color: #C9893B;
  border-radius: 50%;
  margin: 62px auto 0;
}

.jade-disc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  background-color: #161310;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.jade-notch {
  position: absolute;
  top: -7px;
  width: 14px;
  height: 14px;
  background-color: #E8C98F;
  transform: rotate(45deg);
}

.jade-notch-left {
  left: 20px;
}

.jade-notch-right {
  right: 20px;
}

.card-section {
  padding: 30px 32px 90px;
}

.section-head {
  text-align: center;
  margin-bottom: 54px;
}

.section-eyebrow {
  display: inline-block;
  color: #E8C98F;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  color: #F3EEE6;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 18px;
  color: #F3EEE6;
  max-width: 800px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background-color: #221C16;
  border-top: 3px solid #C9893B;
  padding: 34px 30px 30px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  background-color: #2B241C;
  transform: translateY(-4px);
}

.card-icon {
  display: block;
  width: 14px;
  height: 14px;
  background-color: #C9893B;
  transform: rotate(45deg);
  margin-bottom: 22px;
}

.card-title {
  font-size: 23px;
  color: #E8C98F;
  margin-bottom: 12px;
}

.card p {
  color: #F3EEE6;
  margin: 0;
  font-size: 16px;
}

.metric-band {
  display: flex;
  background-color: #C9893B;
  border-top: 3px solid #E8C98F;
  border-bottom: 3px solid #E8C98F;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 44px 18px 40px;
}

.metric + .metric {
  border-left: 1px solid #0E0B09;
}

.metric-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: bold;
  color: #0E0B09;
}

.metric-suffix {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: bold;
  color: #0E0B09;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0E0B09;
}

.statement-band {
  text-align: center;
  padding: 110px 32px 96px;
}

.statement {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.4;
  color: #E8C98F;
  max-width: 920px;
  margin: 0 auto 32px;
}

.statement-band p:not(.statement) {
  font-size: 18px;
  color: #F3EEE6;
  max-width: 840px;
  margin: 0 auto;
}

.cta-band {
  background-color: #E8C98F;
  text-align: center;
  padding: 84px 32px;
}

.cta-band h2 {
  font-size: 40px;
  color: #0E0B09;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px;
  color: #0E0B09;
  max-width: 720px;
  margin: 0 auto 34px;
}

.stack-footer {
  background-color: #161310;
  text-align: center;
  padding: 58px 24px 50px;
  border-top: 2px solid #C9893B;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 5px;
  color: #E8C98F;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 24px 0 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #F3EEE6;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #E8C98F;
}

.footer-legal {
  color: #F3EEE6;
  font-size: 14px;
  margin: 0;
}

.footer-legal a {
  color: #E8C98F;
}

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

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

.page-hero {
  text-align: center;
  padding: 96px 32px 44px;
}

.page-title {
  font-size: 48px;
  color: #F3EEE6;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.page-lead {
  font-size: 18px;
  color: #F3EEE6;
  max-width: 820px;
  margin: 0 auto;
}

.service-block {
  max-width: 960px;
  margin: 0 auto;
  padding: 46px 32px 10px;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-diamond {
  width: 13px;
  height: 13px;
  background-color: #C9893B;
  transform: rotate(45deg);
  flex: none;
}

.service-head h2 {
  font-size: 30px;
  color: #E8C98F;
}

.service-block p {
  color: #F3EEE6;
  font-size: 16px;
}

.deliver-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deliver-list li {
  background-color: #221C16;
  border: 1px solid #C9893B;
  color: #F3EEE6;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.process-band {
  background-color: #221C16;
  border-top: 3px solid #C9893B;
  border-bottom: 3px solid #C9893B;
  padding: 80px 32px;
  margin-top: 60px;
}

.process-head {
  text-align: center;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #C9893B;
  color: #0E0B09;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 19px;
  color: #E8C98F;
  margin-bottom: 10px;
}

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

.contact-band {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 32px 40px;
}

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

.form-block h2,
.info-block h2 {
  font-size: 28px;
  color: #E8C98F;
  margin-bottom: 22px;
}

.form-block p,
.info-block p {
  color: #F3EEE6;
}

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #E8C98F;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #F3EEE6;
  background-color: #221C16;
  border: 1px solid #C9893B;
  border-radius: 6px;
}

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

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

.form-status {
  display: none;
  margin: 16px 0 0;
  color: #E8C98F;
  font-weight: 600;
}

.form-status.show {
  display: block;
}

.info-item {
  margin-bottom: 26px;
}

.info-item h3 {
  font-size: 17px;
  color: #E8C98F;
  margin-bottom: 6px;
}

.info-item p {
  color: #F3EEE6;
  margin: 0;
}

.info-item a {
  color: #C9893B;
}

.hours-note {
  border-left: 3px solid #C9893B;
  padding-left: 16px;
  margin-top: 10px;
}

.faq-band {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 32px 90px;
}

.faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #221C16;
  border: 1px solid #3A3128;
  border-top: 3px solid #C9893B;
  margin-bottom: 16px;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #E8C98F;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 24px;
  color: #C9893B;
  flex: none;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: #F3EEE6;
}

.faq-a p {
  margin: 0;
}

.faq-item.open .faq-a {
  display: block;
}

@media (max-width: 900px) {
  .side-nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .side-nav.open {
    transform: translateX(0);
  }

  .site-main {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .metric-band {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 50%;
  }

  .metric + .metric {
    border-left: none;
  }

  .metric:nth-child(even) {
    border-left: 1px solid #0E0B09;
  }

  .metric:nth-child(n+3) {
    border-top: 1px solid #0E0B09;
  }

  .statement {
    font-size: 32px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .page-title {
    font-size: 38px;
  }
}

@media (max-width: 540px) {
  .metric {
    flex: 1 1 100%;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
