/* The Wedding Balloon Company — blush pink, soft gold, pale warm grey.
   Refined serif headings, airy and light. Deliberately distinct palette
   from every sibling site in the portfolio. */

:root {
  --bg: #fdf9f7;           /* warm white */
  --bg-soft: #f7eeeb;      /* blush tint */
  --ink: #2d2420;          /* deep warm charcoal */
  --muted: #8c7b76;
  --primary: #c9a24b;      /* soft gold */
  --accent: #e7c6c6;       /* blush pink */
  --line: #edddd6;
  --border: #edddd6;
  --card: #ffffff;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Optima", "Candara", "Gill Sans MT", "Gill Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Garamond", "EB Garamond", "Palatino Linotype", "Book Antiqua", Palatino, "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}

a { color: var(--primary); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
  font-family: "Optima", "Candara", "Segoe UI", Arial, sans-serif;
}

/* ---- Header ---- */
header {
  background: rgba(253,249,247,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Cormorant Garamond", "Garamond", Palatino, Georgia, serif;
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.brand:hover { color: var(--primary); text-decoration: none; }
.brand-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon ellipse { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: var(--ink); transition: color 0.15s ease; }
.brand-text { display: inline; }

.nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: "Optima", "Candara", "Segoe UI", Arial, sans-serif;
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: radial-gradient(110% 90% at 50% 0%, var(--bg-soft), var(--bg) 68%);
  text-align: center;
  padding: 96px 26px 76px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--primary);
  opacity: 0.55;
}
.hero::after {
  content: '';
  position: absolute;
  top: 37px;
  left: 50%;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}
.hero h1 {
  font-size: 3.1rem;
  max-width: 18ch;
  margin: 0 auto 22px;
  font-weight: 400;
  font-family: "Cormorant Garamond", "Garamond", Palatino, Georgia, serif;
}
.hero p { font-size: 1.14rem; color: var(--muted); max-width: 55ch; margin: 0 auto 30px; }
.hero .btn { margin: 0 5px 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Optima", "Candara", "Segoe UI", Arial, sans-serif;
  transition: background .15s, transform .15s;
}
.btn:hover { background: #b08d3e; transform: translateY(-1px); color: #fff; }
.btn-soft { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-soft:hover { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-blush { background: var(--accent); color: var(--ink); border: none; }
.btn-blush:hover { background: #d9b4b4; color: var(--ink); }

/* ---- Sections ---- */
section { padding: 68px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 46px; }
section h2 { font-size: 2.15rem; margin-bottom: 16px; }
section p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .ph { order: 2; }
.ph {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(45,36,32,.14);
}
.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Card grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px rgba(45,36,32,.10); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 24px 26px 28px; }
.pill {
  display: inline-block;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: "Optima", "Candara", "Segoe UI", Arial, sans-serif;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
  padding: 4px 13px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 9px; }
.card p { font-size: 0.95rem; margin: 0; color: var(--muted); }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 28px 20px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 50%, var(--bg));
  color: var(--ink);
  font-family: "Cormorant Garamond", "Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ---- Prose ---- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { font-size: 1.85rem; margin: 46px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 9px; }
.prose p, .prose li { color: #4a3e3a; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: 2px;
  padding: 20px 24px;
  margin: 30px 0;
}
.note p { margin: 0; color: var(--ink); }
.pull {
  font-family: "Cormorant Garamond", "Garamond", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.48;
  color: var(--primary);
  text-align: center;
  max-width: 32ch;
  margin: 44px auto;
}

/* ---- CTA band ---- */
.cta { background: var(--ink); color: #ede4df; text-align: center; padding: 76px 26px; }
.cta h2 { font-size: 2.15rem; margin-bottom: 14px; color: #fff; }
.cta p { color: #c0b0ab; max-width: 52ch; margin: 0 auto 28px; }
.cta .btn-soft { color: var(--primary); border-color: var(--primary); }
.cta .btn-soft:hover { background: var(--primary); color: #fff; }

/* ---- Footer ---- */
footer {
  background: var(--ink);
  color: #c0b0ab;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201,162,75,.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,162,75,.16);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  padding-right: 26px;
}
.footer-grid h4 {
  font-family: "Optima", "Candara", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid p,
.footer-grid a {
  font-size: 14px;
  color: #a09098;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.55;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  font-size: 13px;
  color: #7a6e6a;
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .ph { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero h1 { font-size: 2rem; }
}
