/* ── WRP SHARED STYLES ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;1,8..60,300&display=swap');

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

:root {
  --cream: #f0ebe0;
  --cream-dark: #e6dece;
  --cream-mid: #ede6d8;
  --orange: #c8621a;
  --orange-light: #e07530;
  --ink: #2a2118;
  --ink-mid: #4a3d2e;
  --ink-soft: #7a6a55;
  --rule: #c8b89a;
  --white: #faf8f4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(200,98,26,0.3);
}

.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-brand span { color: var(--orange-light); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--orange-light); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5em 1.2em !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; color: var(--white) !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.25s;
}

@media (max-width: 680px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--ink); flex-direction: column; gap: 0; padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 0.85rem 2rem; }
  .nav-toggle { display: flex; }
  .nav-cta { margin: 0.5rem 2rem !important; }
}

/* ── SHARED LAYOUT ───────────────────────────────────────────── */
.page-wrap {
  padding-top: 64px;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(200,98,26,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(200,98,26,0.45);
  color: var(--orange-light);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4em 1.1em;
  margin-bottom: 1.5rem;
  font-family: 'Source Serif 4', serif;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
  max-width: 680px;
}

.hero h1 em { color: var(--orange-light); font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: rgba(250,248,244,0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-rule {
  width: 48px; height: 2px;
  background: var(--orange);
  margin-bottom: 2rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 2.2em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-light); }

.btn-ghost {
  background: transparent;
  color: rgba(250,248,244,0.75);
  border: 1px solid rgba(250,248,244,0.25);
  margin-left: 1rem;
}
.btn-ghost:hover { border-color: var(--orange-light); color: var(--orange-light); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-alt { background: var(--cream-mid); }
.section-dark { background: var(--ink); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-heading-light {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-rule {
  width: 40px; height: 2px;
  background: var(--orange);
  margin-bottom: 2rem;
}

.body-text {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.body-text-light {
  font-size: 17px;
  color: rgba(250,248,244,0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ── RULE DIVIDER ────────────────────────────────────────────── */
.rule-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(200,98,26,0.2);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--orange-light); font-style: italic; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-legal {
  font-size: 12px;
  color: rgba(250,248,244,0.3);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }

/* ── FORMS ───────────────────────────────────────────────────── */
.field-group { margin-bottom: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field-label .req { color: var(--orange); margin-left: 2px; }

input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-size: 16px;
  padding: 0.8rem 1rem;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a55' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field-hint { font-size: 12px; color: var(--ink-soft); margin-top: 0.35rem; font-style: italic; }

/* Nav JS */
