:root {
  --bg: #faf6ee;
  --fg: #1a1a18;
  --accent: #c9922a;
  --accent-dark: #a67720;
  --green-deep: #1a3a2a;
  --green-mid: #2d5a42;
  --cream: #faf6ee;
  --cream-dark: #f0ead8;
  --warm-gray: #6b6459;
  --border: rgba(26, 58, 42, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.nav-suffix {
  color: var(--accent);
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 18, 0.92) 0%,
    rgba(15, 25, 18, 0.7) 40%,
    rgba(15, 25, 18, 0.3) 70%,
    rgba(15, 25, 18, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  font-style: italic;
  color: #e8c882;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.15);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 7rem 3rem;
  background: var(--cream);
}

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

.features-header {
  margin-bottom: 4rem;
}

.features-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.features-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.2s ease;
}

.feature-card:hover {
  background: var(--cream-dark);
}

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  padding: 7rem 3rem;
  background: var(--green-deep);
}

.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.philosophy-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 2rem;
  border: 2px solid rgba(201, 146, 42, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-mark::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.philosophy-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.philosophy-body {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3rem;
}

.philosophy-divider {
  width: 48px;
  height: 1px;
  background: rgba(201, 146, 42, 0.4);
  margin-bottom: 2.5rem;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.point-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 60px;
  flex-shrink: 0;
}

.point-val {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 8rem 3rem;
  background: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 2.5rem 3rem;
  background: var(--green-deep);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5f0e8;
  letter-spacing: -0.02em;
}

.footer-suffix { color: var(--accent); }

.footer-meta {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-link {
  color: var(--accent);
  text-decoration: none;
}

.footer-link:hover { text-decoration: underline; }

/* CONTACT */
.contact-section {
  padding: 7rem 3rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.contact-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}

.required {
  color: var(--accent);
}

.form-label-optional {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 90, 66, 0.08);
}

.form-input.input-error,
.form-textarea.input-error {
  border-color: var(--accent);
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: var(--green-deep);
  color: #f5f0e8;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
  min-width: 160px;
}

.form-submit:hover:not(:disabled) {
  background: var(--green-mid);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.form-message {
  border-radius: 4px;
  padding: 1rem 1.25rem;
}

.form-message-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--green-mid);
}

.form-message-error .form-message-inner {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  
  .hero {
    padding: 0 1.5rem 4rem;
    align-items: flex-end;
  }
  
  .hero-content { max-width: 100%; }
  
  .hero-headline { font-size: 2.25rem; }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .stat { padding: 0; }
  .stat-div { display: none; }
  
  .features { padding: 4rem 1.5rem; }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  
  .philosophy { padding: 4rem 1.5rem; }
  
  .closing { padding: 5rem 1.5rem; }
  
  .footer { padding: 2rem 1.5rem; }
  
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}