/* ============================================================
   AUSTA PROPERTIES — "Hearth & Home" Design System
   Colors: Deep Forest Green (#1B3A1B), Gold (#D4C07A),
           Warm Linen (#F7F3ED), Charcoal (#2C2C2C)
   Fonts:  Playfair Display (headings), Lato (body)
   ============================================================ */

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

:root {
  --green: #1B3A1B;
  --gold: #D4C07A;
  --linen: #F7F3ED;
  --charcoal: #2C2C2C;
  --sage: #7A8B6F;
  --light-bg: #F0EDE5;
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--charcoal);
  background-color: var(--linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: var(--green);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.nav-brand img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--linen);
  letter-spacing: 0.05em;
}
.nav-brand-sub {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  font-weight: 700;
}
.nav-cta {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--green);
  background-color: var(--gold);
  padding: 10px 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  display: inline-block;
}
.nav-cta:hover { opacity: 0.85; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--linen); }
.nav-mobile {
  display: none;
  padding: 0 24px 24px;
  background-color: var(--green);
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212,192,122,0.15);
}
.nav-mobile a.active { color: var(--gold); font-weight: 700; }
.nav-mobile .nav-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile.open { display: block; }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27,58,27,0.65);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  max-width: 900px;
}
.hero-ornament {
  width: 220px;
  opacity: 0.85;
  margin: 0 auto 24px;
  pointer-events: none;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--linen);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.hero .tagline {
  font-family: var(--heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero .divider {
  width: 96px;
  height: 2px;
  background-color: var(--gold);
  margin: 0 auto 32px;
}
.hero .subtitle {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(247,243,237,0.85);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background-color: var(--gold);
  transition: opacity 0.3s;
}
.btn-gold:hover { opacity: 0.85; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--linen);
  border: 1px solid rgba(212,192,122,0.5);
  background: transparent;
  transition: all 0.3s;
}
.btn-outline:hover {
  background-color: rgba(212,192,122,0.15);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--linen);
  background-color: var(--green);
  transition: opacity 0.3s;
}
.btn-dark:hover { opacity: 0.85; }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-lg { padding: 128px 0; }

.section-linen {
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663060640653/Enj84rdYoreJak6yjtthmD/texture_linen-oXWepMYDzRgwWHBd6huFMY.webp');
  background-size: 400px 400px;
}
.section-green { background-color: var(--green); }
.section-light { background-color: var(--light-bg); }

.section-label {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}
.section-heading.light { color: var(--linen); }
.section-heading.large { font-size: clamp(1.875rem, 4vw, 3rem); }
.section-heading.medium { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.section-divider {
  width: 64px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 32px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }
.section-text {
  font-family: var(--body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.9;
}
.section-text.light {
  color: rgba(247,243,237,0.85);
}

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.feature-item {
  border-top: 2px solid var(--gold);
  padding-top: 32px;
}
.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.feature-desc {
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---- Transformation Grid ---- */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.transform-item { text-align: center; }
.transform-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 16px;
}
.transform-label {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247,243,237,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .transform-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Quote Section ---- */
.quote-section {
  position: relative;
  overflow: hidden;
}
.quote-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
  pointer-events: none;
}
.quote-watermark img { width: 600px; object-fit: contain; }
.quote-mark {
  font-family: var(--heading);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.quote-text {
  font-family: var(--heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ---- About Page ---- */
.page-header {
  padding-top: 128px;
  padding-bottom: 80px;
  background-color: var(--green);
  text-align: center;
}
.profile-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}
.profile-grid.reversed {
  grid-template-columns: 3fr 2fr;
}
.profile-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.profile-role {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.profile-name {
  font-family: var(--heading);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.profile-subtitle {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 8px;
}
.profile-divider {
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 32px;
}
.profile-text {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 20px;
}
.profile-text strong { font-weight: 700; }

.personal-quote {
  padding: 40px 32px;
  border-left: 3px solid var(--gold);
  background-color: rgba(212,192,122,0.06);
  margin-top: 64px;
}
.personal-quote p {
  font-family: var(--heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-item { border-top: 2px solid var(--gold); padding-top: 16px; }
.stat-num {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .profile-grid, .profile-grid.reversed {
    grid-template-columns: 1fr;
  }
  .profile-img { max-width: 320px; }
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.contact-label {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--green);
}

.book-call-box {
  background-color: var(--green);
  padding: 32px;
  margin-top: 48px;
}
.book-call-box h3 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: 16px;
}
.book-call-box p {
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,243,237,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Form */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background-color: rgba(255,255,255,0.7);
  border: 1px solid rgba(27,58,27,0.15);
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: none; }
.form-hint {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--sage);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.footer { background-color: var(--green); }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 64px 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-brand img { height: 64px; width: 64px; object-fit: contain; }
.footer-brand-name {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--linen);
  letter-spacing: 0.05em;
}
.footer-brand-sub {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-desc {
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,243,237,0.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer-heading {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-link {
  display: block;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(247,243,237,0.6);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,192,122,0.15);
  padding: 32px 0;
  text-align: center;
}
.footer-copy {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(247,243,237,0.35);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- SVG Icons (inline) ---- */
.icon { display: inline-block; vertical-align: middle; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.w-full { width: 100%; }
