/* ============================================================
   CPG LAND, LLC — style.css
   Light warm sand-cream theme with caramel-tan accents.
   Palette:
     sand-cream  #FAF4EC  (page background)
     pale cream  #F3E9DA  (light section bands)
     sand        #EADCC6  (light panels and chips)
     caramel     #B07A44  (buttons, fills, links, accents)
     deep caramel #8F6530 (hover states)
     ink         #2B241D  (primary text)
   All text colors are solid hex values with strong contrast.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2B241D;
  background-color: #FAF4EC;
  overflow-x: hidden;
}

h1, h2, h3, .brand-word {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  color: #2B241D;
}

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

a:hover {
  color: #8F6530;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------
   Parcel glyphs — small skewed quadrilaterals like survey plots
   ------------------------------------------------------------ */
.parcel-glyph {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #B07A44;
  background: transparent;
  transform: skewX(-18deg) skewY(4deg);
  flex: 0 0 auto;
}

.parcel-glyph.is-filled {
  background: #B07A44;
  border-color: #B07A44;
}

/* ------------------------------------------------------------
   PLOT NAV — slim sticky strip
   ------------------------------------------------------------ */
.plot-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 32px;
  background: #FAF4EC;
  border-bottom: 2px solid #B07A44;
  transition: box-shadow 0.3s ease;
}

.plot-nav.is-scrolled {
  box-shadow: 0 6px 18px rgba(176, 122, 68, 0.18);
}

.plot-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2B241D;
}

.plot-nav .brand-glyph {
  width: 20px;
  height: 20px;
  background: #B07A44;
  border: none;
  transform: skewX(-14deg) skewY(4deg);
  flex: 0 0 auto;
}

.plot-nav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.plot-nav .brand-word {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2B241D;
}

.plot-nav .brand-caption {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #B07A44;
  font-weight: 600;
}

.plot-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.plot-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2B241D;
  white-space: nowrap;
}

.plot-nav .nav-link:hover {
  color: #B07A44;
}

.plot-nav .nav-link.is-active {
  color: #B07A44;
}

.plot-nav .nav-link.is-active .parcel-glyph {
  background: #B07A44;
  border-color: #B07A44;
}

.plot-nav .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid #B07A44;
  border-radius: 4px;
  cursor: pointer;
}

.plot-nav .nav-toggle-bar {
  display: block;
  height: 2px;
  background: #B07A44;
  width: 100%;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #B07A44;
  color: #FFFFFF;
  border: 2px solid #B07A44;
}

.btn-primary:hover {
  background: #8F6530;
  border-color: #8F6530;
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background: #B07A44;
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   ACRE HERO
   ------------------------------------------------------------ */
.acre-hero {
  background: #FAF4EC;
  padding: 76px 0 0;
}

.hero-eyebrow {
  display: inline-block;
  background: #B07A44;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2B241D;
  margin-bottom: 26px;
  max-width: 860px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #2B241D;
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* Land-parcel graphic below the hero text */
.parcel-graphic {
  border-top: 1px solid #B07A44;
  padding: 46px 0 40px;
}

.parcel-graphic-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.parcel-graphic-inner::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: #B07A44;
}

.plot-item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding-top: 10px;
}

.plot-shape {
  display: block;
  width: 52px;
  height: 46px;
  margin: 0 auto;
  border: 1px solid #B07A44;
  background: transparent;
  transform: skewX(-16deg) skewY(4deg);
}

.plot-item.is-middle .plot-shape {
  background: #B07A44;
  border-color: #B07A44;
}

.plot-caption {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B07A44;
}

/* ------------------------------------------------------------
   Scope note band
   ------------------------------------------------------------ */
.scope-note {
  background: #F3E9DA;
  padding: 66px 0;
  border-top: 1px solid #EADCC6;
  border-bottom: 1px solid #EADCC6;
}

.scope-note .container {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 980px;
}

.scope-note .parcel-glyph {
  margin-top: 8px;
}

.scope-text {
  flex: 1;
}

.scope-text .scope-copy + .scope-copy {
  margin-top: 16px;
}

.scope-copy {
  font-size: 18px;
  line-height: 1.8;
  color: #2B241D;
  max-width: 840px;
}

/* ------------------------------------------------------------
   Section headers
   ------------------------------------------------------------ */
.section-head {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: #2B241D;
}

/* ------------------------------------------------------------
   PARCEL ROWS
   ------------------------------------------------------------ */
.parcel-rows {
  background: #FAF4EC;
  padding: 72px 0;
}

.parcel-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid #B07A44;
}

.parcel-row:first-of-type {
  border-top: 1px solid #B07A44;
}

.parcel-row .parcel-glyph {
  width: 18px;
  height: 18px;
  margin-top: 8px;
}

.parcel-row-body {
  flex: 1;
}

.parcel-row-title {
  font-size: 24px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 10px;
}

.parcel-row-copy {
  font-size: 16px;
  line-height: 1.8;
  color: #2B241D;
  max-width: 760px;
}

.chip {
  display: inline-block;
  background: #B07A44;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 4px;
}

/* ------------------------------------------------------------
   HOLDINGS STRIP
   ------------------------------------------------------------ */
.holdings-strip {
  background: #F3E9DA;
  padding: 72px 0;
  border-top: 1px solid #EADCC6;
  border-bottom: 1px solid #EADCC6;
}

.holdings-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.holding-tile {
  background: #EADCC6;
  border: 1px solid #B07A44;
  padding: 26px 22px;
  transform: skewX(-2deg);
  text-align: left;
}

.holding-tile .tile-shape {
  display: block;
  width: 24px;
  height: 22px;
  border: 1px solid #B07A44;
  background: #B07A44;
  transform: skewX(-16deg) skewY(4deg);
  margin-bottom: 18px;
}

.tile-name {
  font-size: 19px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 8px;
}

.tile-line {
  font-size: 14px;
  line-height: 1.6;
  color: #2B241D;
}

.strip-note {
  margin-top: 34px;
  font-size: 16px;
  line-height: 1.8;
  color: #2B241D;
  max-width: 860px;
  padding-left: 18px;
  border-left: 3px solid #B07A44;
}

/* ------------------------------------------------------------
   TENURE ROWS
   ------------------------------------------------------------ */
.tenure-rows {
  background: #FAF4EC;
  padding: 72px 0;
}

.tenure-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid #B07A44;
}

.tenure-row:first-of-type {
  border-top: 1px solid #B07A44;
}

.tenure-row .parcel-glyph {
  width: 18px;
  height: 18px;
  margin-top: 8px;
}

.tenure-row-body {
  flex: 1;
}

.tenure-row-title {
  font-size: 24px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 10px;
}

.tenure-row-copy {
  font-size: 16px;
  line-height: 1.8;
  color: #2B241D;
  max-width: 760px;
}

/* ------------------------------------------------------------
   CTA BAND
   ------------------------------------------------------------ */
.cta-band {
  background: #B07A44;
  padding: 72px 0;
  border-top: 2px solid #8F6530;
}

.cta-inner {
  text-align: center;
  max-width: 760px;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-copy {
  font-size: 17px;
  line-height: 1.75;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.cta-band .btn-primary {
  background: #2B241D;
  border-color: #2B241D;
  color: #FAF4EC;
}

.cta-band .btn-primary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #2B241D;
}

/* ------------------------------------------------------------
   PLOT FOOTER
   ------------------------------------------------------------ */
.plot-footer {
  background: #FAF4EC;
  border-top: 2px solid #B07A44;
  padding: 34px 0 26px;
}

.footer-row-1 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-row-1 .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.footer-row-1 .brand-glyph {
  width: 16px;
  height: 16px;
  background: #B07A44;
  transform: skewX(-14deg) skewY(4deg);
}

.footer-row-1 .brand-word {
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2B241D;
}

.footer-row-1 .brand-caption {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B07A44;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-self: center;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2B241D;
}

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

.footer-contact {
  justify-self: end;
  font-size: 14px;
  font-weight: 600;
  color: #2B241D;
  text-align: right;
}

.footer-row-2 {
  position: relative;
  border-top: 1px solid #EADCC6;
  padding-top: 18px;
  text-align: center;
}

.footer-row-2 .parcel-glyph {
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
}

.footer-legal {
  font-size: 13px;
  color: #2B241D;
  line-height: 1.8;
}

.footer-legal a {
  color: #B07A44;
  font-weight: 600;
}

/* ------------------------------------------------------------
   Shared secondary page hero (services / contact)
   ------------------------------------------------------------ */
.page-hero {
  background: #FAF4EC;
  padding: 64px 0 40px;
  border-bottom: 1px solid #EADCC6;
}

.page-eyebrow {
  display: inline-block;
  background: #B07A44;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.page-title {
  font-size: 46px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 18px;
  max-width: 860px;
}

.page-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #2B241D;
  max-width: 760px;
}

.page-main {
  background: #FAF4EC;
  padding: 56px 0 72px;
}

/* ------------------------------------------------------------
   Service blocks (services page)
   ------------------------------------------------------------ */
.service-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid #B07A44;
}

.service-block:first-of-type {
  border-top: 1px solid #B07A44;
}

.service-block .parcel-glyph {
  width: 20px;
  height: 20px;
  margin-top: 8px;
}

.service-body {
  flex: 1;
}

.service-title {
  font-size: 26px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 12px;
}

.service-copy {
  font-size: 16px;
  line-height: 1.8;
  color: #2B241D;
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #2B241D;
  margin-bottom: 8px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #B07A44;
  transform: skewX(-16deg) skewY(4deg);
}

/* Process overview */
.process-overview {
  background: #F3E9DA;
  padding: 64px 0;
  border-top: 1px solid #EADCC6;
  border-bottom: 1px solid #EADCC6;
  margin-bottom: 72px;
}

.process-list {
  list-style: none;
  padding: 0;
}

.process-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #B07A44;
}

.process-list li:first-of-type {
  border-top: 1px solid #B07A44;
}

.process-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #B07A44;
  min-width: 40px;
}

.process-name {
  font-size: 17px;
  font-weight: 700;
  color: #2B241D;
  min-width: 220px;
}

.process-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #2B241D;
}

/* ------------------------------------------------------------
   Contact page
   ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-panel h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2B241D;
  margin-bottom: 14px;
}

.contact-form {
  background: #F3E9DA;
  border: 1px solid #EADCC6;
  padding: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2B241D;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2B241D;
  background: #FFFFFF;
  border: 1px solid #B07A44;
  border-radius: 3px;
}

.form-input:focus,
.form-textarea:focus {
  outline: 2px solid #B07A44;
  outline-offset: 1px;
}

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

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #2B241D;
  background: #EADCC6;
  border-left: 4px solid #B07A44;
}

.form-status.is-visible {
  display: block;
}

.contact-info-panel {
  background: #F3E9DA;
  border: 1px solid #EADCC6;
  padding: 30px;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-line .parcel-glyph {
  width: 14px;
  height: 14px;
  margin-top: 7px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B07A44;
  margin-bottom: 4px;
}

.info-value {
  font-size: 16px;
  font-weight: 600;
  color: #2B241D;
  word-break: break-word;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #EADCC6;
  font-size: 15px;
  color: #2B241D;
}

.hours-list .hours-day {
  font-weight: 700;
}

.hours-list .hours-time {
  text-align: right;
}

/* FAQ accordion */
.faq {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid #B07A44;
}

.faq-item:first-of-type {
  border-top: 1px solid #B07A44;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #2B241D;
  cursor: pointer;
}

.faq-q::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #B07A44;
  border-bottom: 2px solid #B07A44;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
  margin-top: -4px;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

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

.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: #2B241D;
  padding-bottom: 18px;
  max-width: 720px;
}

/* ------------------------------------------------------------
   Scroll reveal (safe fallback: content visible without JS)
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .holdings-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-row-1 {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-row-1 .brand {
    justify-self: center;
  }

  .footer-links {
    justify-self: center;
  }

  .footer-contact {
    justify-self: center;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-name {
    min-width: 160px;
  }
}

@media (max-width: 760px) {
  .plot-nav {
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .plot-nav .nav-toggle {
    display: flex;
  }

  .plot-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #EADCC6;
    border-top: 1px solid #B07A44;
    padding: 10px 0;
  }

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

  .plot-nav .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }

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

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

  .parcel-graphic-inner {
    gap: 8px;
  }

  .plot-shape {
    width: 40px;
    height: 36px;
  }

  .parcel-row,
  .tenure-row,
  .service-block {
    flex-wrap: wrap;
    gap: 16px;
  }

  .chip {
    margin-left: 44px;
  }

  .scope-note .container {
    flex-direction: column;
  }

  .process-list li {
    flex-wrap: wrap;
    gap: 6px;
  }

  .process-name {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .holdings-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

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

  .section-title,
  .cta-title {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
