:root {
  --sand: #FBF6F0;
  --ink: #3A2A24;
  --coral: #E2574C;
  --peach: #F2C4B4;
  --clay: #7A2E28;
  --clay-deep: #5E211D;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--sand);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--coral);
}

a:hover {
  color: var(--clay);
}

::selection {
  background-color: var(--coral);
  color: var(--white);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

.flag-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background-color: var(--sand);
  border-bottom: 3px solid var(--coral);
}

.flag-nav.scrolled {
  box-shadow: 0 6px 14px #7A2E2826;
}

.brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--coral);
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover {
  color: var(--clay);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.flag-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 8px 24px 8px 17px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.flag-link::before,
.flag-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.flag-link::before {
  background-color: var(--coral);
}

.flag-link::after {
  inset: 2px;
  background-color: var(--sand);
}

.flag-link:hover {
  color: var(--clay);
}

.flag-link.active {
  color: var(--white);
}

.flag-link.active::after {
  background-color: var(--coral);
}

.flag-link.active:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 40px;
  background: none;
  border: 2px solid var(--coral);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle .bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--ink);
}

.nav-toggle .bar:nth-child(1) {
  top: 10px;
}

.nav-toggle .bar:nth-child(2) {
  top: 18px;
}

.nav-toggle .bar:nth-child(3) {
  top: 26px;
}

.terrace-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 28px 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.terrace-graphic {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0 10px;
}

.terrace-slab {
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 7px;
  font-size: 18px;
  height: 66px;
  text-transform: uppercase;
}

.slab-bottom {
  width: 100%;
  background-color: var(--coral);
  color: var(--white);
}

.slab-mid {
  width: 72%;
  align-self: center;
  background-color: var(--peach);
  color: var(--ink);
}

.slab-top {
  width: 46%;
  align-self: center;
  background-color: var(--clay);
  color: var(--sand);
}

.terrace-caption {
  margin-top: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}

.eyebrow-chip {
  display: inline-block;
  background-color: var(--peach);
  color: var(--clay);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 22px 0 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink);
  max-width: 34em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  padding: 14px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--clay-deep);
  border-color: var(--clay-deep);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
  padding: 14px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--clay);
  color: var(--white);
}

.foundation-strip {
  background-color: var(--coral);
  color: var(--ink);
  padding: 60px 28px;
}

.foundation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.foundation-strip h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}

.foundation-line {
  font-size: 18px;
  font-weight: 500;
  max-width: 58em;
  margin-top: 14px;
}

.foundation-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
}

.foundation-item {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}

.foundation-item + .foundation-item {
  border-left: 2px solid var(--ink);
  padding-left: 24px;
}

.ledger-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 28px 72px;
}

.ledger-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
}

.ledger-lead {
  font-size: 18px;
  max-width: 46em;
  margin-top: 14px;
}

.ledger-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
}

.ledger-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ledger-col + .ledger-col {
  border-left: 2px solid var(--coral);
  padding-left: 48px;
}

.ledger-item {
  display: flex;
  gap: 18px;
}

.ledger-marker {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background-color: var(--coral);
  border-radius: 4px;
  margin-top: 8px;
}

.ledger-item h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
}

.ledger-item p {
  margin-top: 7px;
}

.ledger-note {
  margin-top: 48px;
  font-weight: 500;
  max-width: 48em;
}

.numbers-strip {
  background-color: var(--sand);
  border-top: 2px solid var(--peach);
  border-bottom: 2px solid var(--peach);
}

.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px;
}

.numbers-inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

.numbers-intro {
  max-width: 42em;
  margin: 12px auto 0;
  text-align: center;
  font-size: 17px;
}

.numbers-row {
  display: flex;
  margin-top: 40px;
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
}

.stat-cell + .stat-cell {
  border-left: 2px solid var(--coral);
}

.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.cta-band {
  background-color: var(--coral);
  color: var(--ink);
  padding: 76px 28px;
  text-align: center;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
}

.cta-band p {
  font-size: 18px;
  margin-top: 16px;
}

.btn-clay {
  display: inline-block;
  background-color: var(--clay);
  color: var(--white);
  border: 2px solid var(--clay);
  padding: 15px 36px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-top: 28px;
}

.btn-clay:hover {
  background-color: var(--clay-deep);
  border-color: var(--clay-deep);
  color: var(--white);
}

.shelf-footer-top {
  background-color: var(--coral);
  padding: 26px 28px;
}

.shelf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--clay);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-brand:hover {
  color: var(--ink);
}

.footer-brand-name {
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
}

.footer-nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: var(--clay);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.footer-nav-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-contact {
  color: var(--clay);
  font-size: 14px;
  font-weight: 600;
}

.footer-contact a {
  color: var(--clay);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.shelf-footer-bottom {
  background-color: var(--clay);
  padding: 18px 24px;
  text-align: center;
}

.shelf-footer-bottom p {
  color: var(--sand);
  font-size: 14px;
}

.shelf-footer-bottom a {
  color: var(--sand);
  text-decoration: underline;
  font-weight: 600;
}

.shelf-footer-bottom a:hover {
  color: var(--peach);
}

.page-head {
  background-color: var(--coral);
  color: var(--ink);
  padding: 60px 28px 64px;
}

.page-head-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-head h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 16px;
  line-height: 1.15;
}

.page-head .lede {
  font-size: 18px;
  max-width: 46em;
  margin-top: 16px;
  font-weight: 500;
}

.page-head .breadcrumb {
  color: var(--clay);
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
}

.page-head .breadcrumb a {
  color: var(--clay);
  text-decoration: none;
}

.page-head .breadcrumb a:hover {
  text-decoration: underline;
}

.service-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 28px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--peach);
}

.service-block:last-of-type {
  border-bottom: none;
  padding-bottom: 64px;
}

.service-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.service-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.service-block h2 span {
  color: var(--clay);
  font-size: 15px;
  display: block;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-block p {
  margin-top: 10px;
}

.process-section {
  background-color: var(--peach);
  color: var(--ink);
  padding: 64px 28px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}

.process-inner > p {
  max-width: 46em;
  margin-top: 12px;
  font-size: 17px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.process-step {
  background-color: var(--sand);
  border-radius: 12px;
  padding: 24px;
  border-top: 5px solid var(--clay);
}

.process-step .step-label {
  font-weight: 800;
  color: var(--clay);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.process-step h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 8px;
}

.process-step p {
  margin-top: 8px;
  font-size: 15px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-detail h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.contact-detail > p {
  margin-top: 12px;
}

.contact-fact {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.contact-fact .fact-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background-color: var(--coral);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 15px;
}

.contact-fact .fact-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-fact .fact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 3px;
}

.contact-fact .fact-value a {
  color: var(--ink);
  text-decoration: none;
}

.contact-fact .fact-value a:hover {
  color: var(--coral);
}

.contact-form-card {
  background-color: var(--white);
  border: 2px solid var(--peach);
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 8px 20px #7A2E2826;
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.contact-form-card > p {
  margin-top: 10px;
}

.form-field {
  margin-top: 18px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--peach);
  border-radius: 9px;
  background-color: var(--sand);
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
}

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

.form-status {
  display: none;
  margin-top: 16px;
  background-color: var(--peach);
  color: var(--clay);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 9px;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
}

.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 84px;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}

.faq-item {
  border: 2px solid var(--peach);
  border-radius: 11px;
  margin-top: 18px;
  background-color: var(--white);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-q::after {
  content: "+";
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 22px 20px;
}

.faq-item.open .faq-a {
  max-height: 360px;
}

.fade-up {
  opacity: 1;
}

.fade-up.will-animate {
  opacity: 0;
  transform: translateY(26px);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up.will-animate,
  .fade-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .terrace-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
  }

  .terrace-graphic {
    order: -1;
  }

  .ledger-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ledger-col + .ledger-col {
    border-left: none;
    border-top: 2px solid var(--coral);
    padding-left: 0;
    padding-top: 40px;
  }

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

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

  .numbers-row {
    flex-wrap: wrap;
  }

  .stat-cell {
    flex: 1 1 45%;
  }

  .stat-cell:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--sand);
    border-bottom: 3px solid var(--coral);
    padding: 14px 20px 22px;
    display: none;
    box-shadow: 0 10px 18px #7A2E2826;
  }

  .nav-links.open {
    display: flex;
  }

  .flag-link {
    padding: 12px 26px 12px 18px;
    font-size: 16px;
  }

  .flag-link::before,
  .flag-link::after {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  }
}

@media (max-width: 560px) {
  .foundation-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .foundation-item + .foundation-item {
    border-left: none;
    border-top: 2px solid var(--ink);
    padding-left: 0;
    padding-top: 16px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .stat-cell {
    flex: 1 1 100%;
  }

  .stat-cell + .stat-cell {
    border-left: none;
    border-top: 2px solid var(--coral);
    padding-top: 16px;
  }

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

  .cta-band h2 {
    font-size: 28px;
  }
}
