/* ============================================================
   Pioneer Land Development — Preview Site
   Pine Point Digital
   Palette: deep forest green / amber-gold / warm linen
   Type: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --forest:    #1c2b1a;   /* deep forest green — anchor dark */
  --amber:     #c8882a;   /* amber-gold — earth, late afternoon light */
  --amber-lt:  #e8a84a;   /* lighter amber for hover states */
  --linen:     #f2ede3;   /* warm linen off-white — breathing room */
  --clay:      #3d2b1a;   /* dark clay brown — secondary dark ground tone */
  --linen-dk:  #e5dece;   /* slightly darker linen for section alternation */
  --green-md:  #2e4a2a;   /* mid-forest for gradient stop */
  --text-main: #1e1e1e;   /* near-black body text */
  --text-mid:  #4a4239;   /* warm medium for secondary text */
  --text-light:#7a6e60;   /* muted warm for captions / labels */
  --white:     #ffffff;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 4px rgba(28,43,26,0.10);
  --shadow-md: 0 4px 18px rgba(28,43,26,0.14);

  --hero-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=85&auto=format&fit=crop");
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--forest);
  color: var(--linen);
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Accessibility helpers ─────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ── Layout wrapper ────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce {
  background: var(--clay);
  color: var(--linen);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  line-height: 1.4;
}
.announce a {
  color: var(--amber-lt);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.announce a:hover { color: var(--white); }
.announce .sep { opacity: 0.4; }
.announce .star { color: var(--amber); }

/* ============================================================
   STICKY NAV
   ============================================================ */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--forest);
  border-bottom: 1px solid rgba(200,136,42,0.18);
  box-shadow: 0 2px 12px rgba(28,43,26,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--linen);
  letter-spacing: 0.01em;
}
.nav-logo .sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu .link {
  display: none; /* hidden on mobile */
  color: rgba(242,237,227,0.80);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-menu .link:hover,
.nav-menu .link:focus-visible { color: var(--linen); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42rem 1.0rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--amber-lt);
  color: var(--clay);
}
.nav-cta svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   HERO — full-bleed photo left, text right (desktop)
   ============================================================ */
.hero {
  background: var(--forest);
  min-height: 520px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
.hero-photo {
  min-height: 260px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 30%;
  position: relative;
  order: -1; /* photo above text on mobile */
}
/* subtle amber gradient vignette on photo */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,43,26,0.15) 0%,
    rgba(28,43,26,0.45) 100%
  );
}
.hero-text {
  padding: 2.75rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.hero-tag .rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--linen);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.hero-text h1 .em {
  color: var(--amber);
  font-style: italic;
}
.hero-text .lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(242,237,227,0.82);
  max-width: 48ch;
  margin: 0 auto 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--amber);
  color: var(--forest);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  box-shadow: 0 4px 14px rgba(200,136,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--linen);
  border-color: rgba(242,237,227,0.45);
}
.btn-outline:hover {
  border-color: var(--linen);
  background: rgba(242,237,227,0.08);
}
.btn svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--clay);
  border-top: 2px solid var(--amber);
  padding: 1.1rem 1.25rem;
}
.trust-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--linen);
}
.trust-item .icon {
  color: var(--amber);
  font-size: 0.9rem;
  line-height: 1;
}
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(242,237,227,0.25);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — WHAT WE BUILD
   ============================================================ */
.services {
  padding: 5rem 1.25rem;
  background: var(--linen);
}
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 52ch;
  margin-bottom: 3rem;
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(28,43,26,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.2s;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,136,42,0.20);
  transform: translateY(-2px);
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.1rem;
  color: var(--amber);
  flex-shrink: 0;
}
.svc-icon svg {
  width: 44px; height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.services-coda {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  padding-top: 0.5rem;
}

/* ============================================================
   ABOUT — THE LAND
   ============================================================ */
.about {
  padding: 5rem 1.25rem;
  background: var(--forest);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.about-label-col {
  /* becomes sidebar on desktop */
}
.about-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--linen);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.about-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 0;
}
.about-body p {
  font-size: 0.975rem;
  color: rgba(242,237,227,0.82);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(242,237,227,0.12);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.about-stat .desc {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.55);
}

/* ============================================================
   CONTACT — THE WORK
   ============================================================ */
.contact {
  padding: 5rem 1.25rem;
  background: var(--linen-dk);
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: var(--forest);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}
.contact-card .card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.contact-card .card-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail .det-icon {
  width: 36px; height: 36px;
  background: rgba(200,136,42,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-detail .det-icon svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail .det-body { line-height: 1.45; }
.contact-detail .det-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.45);
  margin-bottom: 0.15rem;
}
.contact-detail .det-val {
  font-size: 0.95rem;
  color: var(--linen);
  font-weight: 500;
}
.contact-detail a {
  color: var(--amber-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--white); }

/* ── Quote form ─────────────────────────────────────────── */
.quote-form-wrap {
  background: var(--white);
  border: 1px solid rgba(28,43,26,0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}
.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(28,43,26,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--linen);
  pointer-events: none;
  opacity: 0.75;
  cursor: default;
}
.form-group textarea {
  min-height: 100px;
  resize: none;
}
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--forest);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.85;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clay);
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--linen);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(242,237,227,0.50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-contact {
  font-size: 0.85rem;
  color: rgba(242,237,227,0.65);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-contact a {
  color: var(--amber-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-rule {
  width: 40px;
  height: 1px;
  background: rgba(242,237,227,0.15);
  margin: 0 auto 1.25rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(242,237,227,0.35);
  letter-spacing: 0.04em;
}
.footer-copy .ppd {
  color: rgba(242,237,227,0.25);
}

/* ============================================================
   RESPONSIVE — TABLET (720px+)
   ============================================================ */
@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 2fr;
  }

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

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  /* Nav links visible */
  .nav-menu .link { display: inline; }

  /* Hero: side-by-side */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }
  .hero-photo {
    min-height: unset;
    order: 0; /* photo left */
  }
  .hero-text {
    padding: 4rem 3.5rem;
    align-items: flex-start;
    text-align: left;
  }
  .hero-tag {
    /* left-aligned on desktop */
  }
  .hero-text .lead {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
  }

  /* Services 3-col */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
