:root {
  /* Brand palette (Canva brand kit): #f4efe8 cream, #b9a09b rose, #e2c5c1 blush.
     Rosewood/ink are darkened derivatives of the rose for text contrast. */
  --cream: #f4efe8;
  --cream-dark: #e9dfd3;
  --rust: #8d655d;
  --rust-dark: #71504a;
  --gold: #b9a09b;
  --blush: #e2c5c1;
  --ink: #443733;
  --ink-soft: #7a6a64;
  --white: #fffcf9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.05rem;
}

h1, h2, h3, .brand {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

/* Script accent (Brittany-adjacent) — for interior page headings only,
   never adjacent to the logo image, which has its own script wordmark. */
.script-title {
  font-family: 'Allura', 'Snell Roundhand', cursive;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 4.6rem);
  line-height: 1.1;
}

a { color: var(--rust); }
a:hover { color: var(--rust-dark); }

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
nav a:hover, nav a[aria-current="page"] { color: var(--rust); }

.btn {
  display: inline-block;
  background: var(--rust);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--rust-dark); }
.btn.secondary {
  background: transparent;
  color: var(--rust) !important;
  border: 2px solid var(--rust);
}
.btn.secondary:hover { background: var(--rust); color: var(--white) !important; }

/* Layout */
section { padding: 4rem 1.5rem; }
.container { max-width: 62rem; margin: 0 auto; }
.narrow { max-width: 44rem; margin: 0 auto; }

/* Hero */
.hero { text-align: center; padding: 5.5rem 1.5rem 4.5rem; }
.hero .leaf { font-size: 2.6rem; display: block; margin-bottom: 0.8rem; }
.hero .logo { max-width: min(26rem, 85vw); height: auto; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--rust); }
.hero .tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 1.2rem auto 2rem;
}
.hero .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.rule {
  width: 4.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem auto;
  border: 0;
}
.rule.left { margin: 1.2rem 0; }

/* Alternating sections */
.band { background: var(--white); }
.band-dark { background: var(--ink); color: var(--cream); }
.band-dark h2 { color: var(--cream); }
.band-dark a { color: var(--gold); }

h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 0.4rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--rust); }
.section-intro { color: var(--ink-soft); max-width: 40rem; }

p + p { margin-top: 1rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 4px solid var(--blush);
  border-radius: 10px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}
.band .card { background: var(--cream); }
.card p { flex: 1; color: var(--ink-soft); font-size: 0.98rem; }
.card a { margin-top: 1.2rem; align-self: flex-start; max-width: 100%; overflow-wrap: anywhere; font-weight: 600; text-decoration: none; }

/* Lists */
ul.checklist { list-style: none; margin-top: 1rem; }
ul.checklist li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.55rem;
}
ul.checklist li::before {
  content: "🌸";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  top: 0.15rem;
}

/* Testimonial */
blockquote {
  border-left: 4px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 1.6rem;
}
blockquote footer {
  margin-top: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
}

/* Page footer */
body > footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.95rem;
}
body > footer a { color: var(--gold); }
body > footer .foot-links { margin-bottom: 0.8rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
body > footer .fine { opacity: 0.7; }

@media (max-width: 40rem) {
  section { padding: 2.8rem 1.2rem; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
}
