:root {
  --cream: #F5F2EC;
  --cream-dark: #EFECE5;
  --cream-darker: #E8E4DC;
  --ink: #1A1A1A;
  --ink-light: #444444;
  --ink-faint: #888;
  --green: #2E7D5E;
  --green-light: #6EC9A4;
  --green-pale: #E8F5EF;
  --border: rgba(0,0,0,0.1);
  --border-light: rgba(0,0,0,0.06);
  --white-faint: rgba(255,255,255,0.06);
  --white-dim: rgba(255,255,255,0.5);
  --white-soft: rgba(255,255,255,0.7);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 48px; display: flex; justify-content: space-between;
  align-items: center; transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(245,242,236,0.96); backdrop-filter: blur(12px);
  padding: 16px 48px; border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links button, .nav-links a {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink); opacity: 0.6;
  transition: opacity 0.2s; background: none; border: none; cursor: pointer;
}
.nav-links button:hover, .nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--ink); color: var(--cream); font-family: var(--font-body);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; border: none; cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--green); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu-link {
  font-family: var(--font-display); font-size: 36px; font-weight: 300;
  color: white; letter-spacing: 2px; cursor: pointer; background: none; border: none;
}
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white; font-size: 32px; cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 40px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  background: var(--cream);
}
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-body); font-size: 12px; color: var(--ink-faint); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-family: var(--font-body); font-size: 12px; color: #aaa; }

/* SHARED SECTION UTILITIES */
.section-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px;
}
.section-label.light { color: var(--green-light); }
.display-heading {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px);
  font-weight: 300; line-height: 1.1;
}
.display-heading em { font-style: italic; color: var(--green); }
.display-heading.light em { color: var(--green-light); }
.body-text { font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: var(--ink-light); }
.body-text.light { color: rgba(255,255,255,0.6); }

/* CONTACT PAGE */
.contact-page {
  padding: 160px 48px 120px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: start;
}
.contact-panel {
  background: var(--ink);
  color: white;
  padding: 40px;
  position: sticky;
  top: 120px;
}
.contact-panel .section-label {
  color: var(--green-light);
}
.contact-panel .display-heading em {
  color: var(--green-light);
}
.contact-panel-copy {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-top: 20px;
  max-width: 34ch;
}
.contact-points {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: rgba(255,255,255,0.12);
}
.contact-point {
  background: rgba(255,255,255,0.04);
  padding: 18px 20px;
}
.contact-point-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.contact-point-value,
.contact-point-value a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: white;
}
.contact-point-note {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.contact-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-form-intro p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 50ch;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field.full {
  grid-column: 1 / -1;
}
.contact-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  border-radius: 0;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--green);
  background: white;
}
.contact-textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contact-note {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-faint);
}
.contact-note a {
  color: var(--green);
}
.contact-back {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.32);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 3px;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: pointer;
}
.contact-back:hover {
  opacity: 1;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: pointer;
  margin-bottom: 16px;
  background: none;
  border: none;
}
.back-link:hover {
  opacity: 1;
}
.contact-honeypot {
  display: none;
}
.contact-error {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #b42318;
  margin-top: 8px;
}
.btn-primary {
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover {
  background: var(--green-light);
}
.btn-primary:disabled {
  background: var(--ink-faint);
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
    padding: 128px 24px 80px;
  }
  .contact-panel {
    position: static;
  }
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .contact-panel {
    padding: 28px 24px;
  }
  .contact-actions {
    align-items: stretch;
  }
}
