@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
  --green:  #2B3D35;
  --mid:    #3D6B65;
  --rose:   #9B7070;
  --cream:  #EDE8DF;
  --off:    #F5F1EB;
  --text:   #3A3A3A;
  --muted:  #6B6B6B;
  --nav-h:  68px;
  --max:    1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: #fff; }
img  { display: block; width: 100%; }
a    { color: inherit; text-decoration: none; }

/* Type */
h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.15; }
h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(1.7rem, 3.5vw, 2.8rem); line-height: 1.2; }
h3 { font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; }
p  { font-weight: 300; color: var(--muted); }

.label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 1rem;
}
.label--light { color: rgba(255,255,255,0.45); }
.label--rose  { color: var(--rose); }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  transition: background 0.3s;
}
nav.on-light { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); }
nav.on-dark  { background: var(--green); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.on-light .logo { color: var(--green); }
.on-dark  .logo { color: #fff; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.2s; }
.on-light .nav-links a { color: var(--muted); }
.on-light .nav-links a:hover,
.on-light .nav-links a.active { color: var(--green); opacity: 1; }
.on-dark  .nav-links a { color: rgba(255,255,255,0.7); }
.on-dark  .nav-links a:hover,
.on-dark  .nav-links a.active { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; transition: background 0.3s; }
.on-light .nav-toggle span { background: var(--green); }
.on-dark  .nav-toggle span { background: #fff; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.22s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-light { color: #fff; }
.btn-light:hover { background: #fff; color: var(--green); }
.btn-dark  { color: var(--green); }
.btn-dark:hover  { background: var(--green); color: #fff; }

/* Divider */
.rule { width: 40px; height: 1.5px; background: var(--mid); margin: 1.5rem 0; }
.rule-rose  { background: var(--rose); }
.rule-light { background: rgba(255,255,255,0.3); }

/* Footer */
footer {
  background: var(--green);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.6rem; }
.footer-blurb { color: rgba(255,255,255,0.45); font-size: 0.85rem; font-weight: 300; max-width: 240px; }
.footer-head { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 300; margin-bottom: 0.4rem; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* Forms */
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #D8D2C8; background: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.2s; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--mid); }
.field textarea { resize: vertical; min-height: 120px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Responsive */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; padding: 2rem; gap: 1.5rem; }
  .nav-links.open { display: flex; background: var(--green); }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }
}
