:root {
  --navy: #1b2a4a;
  --navy-dark: #131f38;
  --gold: #b08d57;
  --ink: #23262d;
  --muted: #5b6472;
  --paper: #ffffff;
  --wash: #f6f4ef;
  --line: #e4e0d7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 720px; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: var(--navy); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--navy);
}

.brand span { color: var(--gold); }

.nav nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav nav a:hover { color: var(--navy); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 110px 0 120px;
}

.hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 0 32px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}

.btn:hover { background: #9c7a48; }
.btn:active { transform: translateY(1px); }

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: var(--wash); }

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.section p { color: var(--muted); font-size: 1.05rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p { margin: 0; font-size: 1rem; }

/* Contact */
.contact-intro { margin-bottom: 32px; }

#contact-form { display: grid; gap: 20px; }

.field { display: grid; gap: 6px; }

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

#contact-form .btn { justify-self: start; }

.form-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
}

.form-status.success { color: #1f7a3d; }
.form-status.error { color: #b0322b; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer p { margin: 0; font-size: 0.9rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .nav nav a { margin-left: 16px; }
  .hero { padding: 80px 0 90px; }
  .section { padding: 60px 0; }
}
