/* Colorado City Lots LLC — Desert Editorial Style */

:root {
  --terracotta: #c4623a;
  --sand: #d4b896;
  --sage: #7a8c6e;
  --deep-brown: #3d2c1f;
  --warm-white: #faf6f0;
  --light-sand: #f0e8dc;
  --text-dark: #2a1f16;
  --text-muted: #6b5c4e;
  --accent-gold: #b8944e;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--deep-brown);
  line-height: 1.25;
}

h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5em; }

p { margin-bottom: 1em; }

a {
  color: var(--terracotta);
  text-decoration: none;
}
a:hover {
  color: var(--deep-brown);
  text-decoration: underline;
}

/* ── Navigation ── */
nav {
  background: var(--deep-brown);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

nav .logo {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav .logo span {
  color: var(--terracotta);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--sand);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
  text-decoration: none;
}

nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
nav .hamburger span {
  width: 26px;
  height: 2px;
  background: var(--sand);
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero h1 {
  color: var(--warm-white);
  font-size: 3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 0.5em;
}

.hero p {
  color: var(--sand);
  font-size: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  max-width: 600px;
  margin-bottom: 1.8em;
}

.hero-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--warm-white);
  font-family: 'Georgia', serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--warm-white);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--deep-brown);
  color: var(--warm-white);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--warm-white);
  text-decoration: none;
}

/* ── Page wrapper ── */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.page-header {
  border-bottom: 2px solid var(--sand);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.page-header .breadcrumb {
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.page-header .breadcrumb a {
  color: var(--terracotta);
}

.page-header h1 {
  color: var(--deep-brown);
}

.page-header .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  max-width: 680px;
}

/* ── Sections ── */
.section {
  margin-bottom: 3.5rem;
}

.section-alt {
  background: var(--light-sand);
  padding: 3.5rem 2rem;
  border-radius: 4px;
}

.section-sage {
  background: var(--sage);
  color: var(--warm-white);
  padding: 3.5rem 2rem;
  border-radius: 4px;
}

.section-sage h2,
.section-sage h3 {
  color: var(--warm-white);
}

.section-sage p {
  color: var(--warm-white);
  opacity: 0.92;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 1.8rem;
}

.card h3 {
  color: var(--terracotta);
  font-size: 1.15rem;
  margin-bottom: 0.6em;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.icon-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.icon-heading .icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── AdSense zone ── */
.adzone {
  background: var(--light-sand);
  border: 1px dashed var(--sand);
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-family: 'Georgia', serif;
  font-size: 0.8rem;
  margin: 2rem 0;
  border-radius: 3px;
}

/* ── Lot info badge ── */
.lot-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 3px;
  margin: 4px 4px 4px 0;
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--sand);
  border-radius: 3px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
}

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

.form-group-submit {
  margin-top: 1.5rem;
}

/* ── Info table ── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: 'Georgia', serif;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--sand);
}

.info-table th {
  background: var(--deep-brown);
  color: var(--sand);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.info-table tr:nth-child(even) td {
  background: var(--light-sand);
}

/* ── Pull quote ── */
blockquote {
  border-left: 4px solid var(--terracotta);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--light-sand);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--deep-brown);
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ── Footer ── */
footer {
  background: var(--deep-brown);
  color: var(--sand);
  padding: 2.5rem 2rem;
  margin-top: 0;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

footer .footer-brand {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--sand);
}

footer .footer-brand a {
  color: var(--terracotta);
  text-decoration: none;
}

footer .footer-links {
  display: flex;
  gap: 1.5rem;
}

footer .footer-links a {
  color: var(--sand);
  font-family: 'Georgia', serif;
  font-size: 0.88rem;
  opacity: 0.8;
  text-decoration: none;
}

footer .footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }

  .hero h1 { font-size: 2.2rem; }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero { height: 380px; }
  .hero h1 { font-size: 1.8rem; }

  .three-col {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--deep-brown);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }

  nav ul.open { display: flex; }

  nav .hamburger { display: flex; }

  .page-wrapper { padding: 2rem 1.25rem; }

  footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
