/* ============================================
   Abundant Land Group — Shared Styles
   Palette & typography modeled on reference:
   #fafafa body, #36403a deep green, Cormorant Garamond + Manrope
   ============================================ */

:root {
  --green: #36403a;              /* deep green-gray section color */
  --green-overlay: rgba(54, 64, 58, 0.75);
  --bg: #fafafa;
  --white: #ffffff;
  --cream: #faf9f5;              /* button background */
  --ink: #141413;                /* near-black text on buttons */
  --gray: #666666;               /* serif heading gray */
  --gray-body: #5c5c5c;          /* body text */
  --border: #e4e4e0;
  --radius: 12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--gray-body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

/* ---------- Header ---------- */
header.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eeeeea;
}
.header-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 20px;
  color: #333;
  letter-spacing: 0.02em;
}
.logo svg { width: 42px; height: 42px; }

nav.main-nav { display: flex; align-items: center; gap: 8px; }
nav.main-nav a.nav-link {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 8px 18px;
}
nav.main-nav a.nav-link:hover { opacity: 0.6; }

.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid #b9b9b2;
  border-radius: var(--radius);
  padding: 12px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: #f1efe6; transform: translateY(-1px); }
.btn .arrow { display: inline-block; margin-left: 8px; }
.btn-solid { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-solid:hover { background: #47544c; }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: #333; cursor: pointer; }

/* ---------- Home hero (video) ---------- */
.hero-video {
  position: relative;
  height: 92vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-video h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero-video h1 em { font-style: italic; }

/* ---------- Page hero (image, inner pages) ---------- */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.page-hero.center .hero-content { justify-content: center; align-items: center; text-align: center; }
.page-hero .hero-sub {
  font-family: var(--sans);
  font-size: 19px;
  max-width: 460px;
  margin-top: 18px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--gray);
  text-align: center;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray-body);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

/* ---------- Feature cards (home) ---------- */
.features-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.feature-card .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d8d5c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-body);
  margin-bottom: 8px;
}
.feature-card p { font-size: 15px; color: var(--gray-body); }

/* ---------- Image overlay panels ---------- */
.overlay-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.overlay-panel .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-panel .tint {
  position: absolute;
  inset: 0;
  background: var(--green-overlay);
}
.overlay-panel .panel-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 44px;
}
.overlay-panel h2, .overlay-panel h4 {
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--white);
  margin-bottom: 18px;
}
.overlay-panel p { font-size: 17px; margin-bottom: 24px; max-width: 700px; }

/* Full-width band version */
.overlay-band { border-radius: var(--radius); }

/* ---------- Sell / Buy cards ---------- */
.duo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.duo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
}
.duo-card h3 { font-size: 32px; color: var(--gray); margin-bottom: 14px; }
.duo-card p { font-size: 16px; margin-bottom: 26px; }

/* ---------- CTA ---------- */
.cta-section { text-align: center; padding: 90px 0; }
.cta-section h2 { font-size: clamp(32px, 4vw, 44px); color: var(--gray); margin-bottom: 14px; }
.cta-section p { font-size: 17px; margin-bottom: 28px; }

/* ---------- Process timeline (land page) ---------- */
.process-intro {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  margin-bottom: 70px;
}
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #d4d4cd;
}
.step {
  position: relative;
  padding-left: 84px;
  margin-bottom: 52px;
}
.step:last-child { margin-bottom: 0; }
.step .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
}
.step h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-body);
  margin-bottom: 8px;
}
.step p { font-size: 16px; }

/* ---------- Services panel ---------- */
.services-panel .panel-content { padding: 64px 56px; }
.services-panel .service-block { margin-bottom: 36px; }
.services-panel .service-block:last-child { margin-bottom: 0; }
.services-panel .service-block h3 {
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.services-panel .service-block p { font-size: 17px; margin-bottom: 0; max-width: 1000px; }

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 17px; margin-bottom: 22px; }

/* ---------- Contact ---------- */
.contact-band {
  background: var(--green);
  color: #e8e8e2;
  padding: 100px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.contact-card {
  background: #f8f8f8;
  border-radius: 18px;
  padding: 40px 36px;
  color: var(--ink);
}
.contact-card label {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-card .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card input:not([type="checkbox"]), .contact-card textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  background: #ececec;
  border: none;
  border-radius: 10px;
  padding: 15px 16px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--sans);
  color: #333;
}
.contact-card ::placeholder { color: #8f8f8a; opacity: 1; }
.contact-card input:focus, .contact-card textarea:focus { outline: 2px solid var(--green); }
.contact-card textarea { resize: vertical; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 24px;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #5c5c5c !important;
}
.form-check input { width: 17px; height: 17px; accent-color: var(--green); }
.btn-dark {
  background: var(--green);
  color: #fff;
  border: none;
  width: 100%;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 19px;
}
.btn-dark:hover { background: #2c342f; }
.contact-details { font-size: 22px; }
.contact-details p { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 22px; }
.contact-details svg { width: 26px; height: 26px; flex-shrink: 0; }
.contact-details a { color: #eeeee8; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.form-success {
  background: #e6ede7;
  color: #36403a;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 620px) {
  .contact-card { padding: 28px 22px; }
  .contact-card .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--green);
  color: #cfcfc7;
  padding: 64px 0 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand svg { width: 40px; height: 40px; }
footer h4 { font-size: 24px; color: var(--white); margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: #cfcfc7; text-decoration: none; font-size: 15px; }
footer a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  color: #a5a59c;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features-layout, .duo-cards, .about-layout { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 32px 26px;
    border-bottom: 1px solid #e5e5e0;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .feature-cards { grid-template-columns: 1fr; }
  .services-panel .panel-content { padding: 40px 26px; }
  .step { padding-left: 70px; }
}
