@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --cream: #f5efe5;
  --paper: #fffaf3;
  --orange: #d96d3a;
  --orange-dark: #a94725;
  --blue: #1f3d4b;
  --blue-soft: #dce8e9;
  --ink: #243238;
  --muted: #657277;
  --line: rgba(31, 61, 75, 0.15);
  --shadow: 0 18px 50px rgba(31, 61, 75, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.2rem, 4vw, 4.5rem);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--blue); }
.brand-text small { color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 1.3rem; }
.main-nav a { text-decoration: none; font-size: .95rem; font-weight: 600; }
.nav-cta { color: white !important; background: var(--blue); padding: .65rem 1rem; border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: center;
  gap: 3rem;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.3rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(217,109,58,.16), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--paper));
}
.hero h1, h2 {
  font-family: "Fraunces", serif;
  color: var(--blue);
  line-height: 1.1;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5.8rem); margin: .4rem 0 1.4rem; max-width: 1100px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 760px; color: #44545a; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange-dark);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-block;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary { background: var(--orange); color: white; }
.button.secondary { border: 1px solid var(--blue); color: var(--blue); }
.hero-visual { min-height: 380px; position: relative; }
.path-line {
  position: absolute; inset: 12% 20% 8% 35%;
  border-left: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  border-radius: 0 0 0 90px;
  transform: rotate(-12deg);
}
.sound-circle {
  position: absolute; border-radius: 50%; border: 2px solid var(--blue); background: rgba(255,255,255,.45);
}
.circle-1 { width: 160px; height: 160px; top: 5%; right: 8%; }
.circle-2 { width: 95px; height: 95px; top: 40%; left: 15%; background: rgba(217,109,58,.18); }
.circle-3 { width: 48px; height: 48px; bottom: 10%; right: 20%; background: var(--blue-soft); }

.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.3rem, 7vw, 8rem); }
.section.alt { background: var(--cream); }
.section.highlight { background: var(--blue); color: white; }
.section.highlight h2, .section.highlight .eyebrow { color: white; }
.section-heading { max-width: 900px; margin-bottom: 2.5rem; }
.section-heading h2 { font-size: clamp(2rem, 4.6vw, 4rem); margin: .25rem 0; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--blue);
  color: white;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.card .number { color: var(--orange); font-weight: 700; }
.card h3 { color: var(--blue); font-size: 1.25rem; }
.timeline { display: grid; gap: 1rem; padding-left: 1.4rem; max-width: 900px; }
.timeline li { padding: .6rem 0 .6rem .5rem; }
.large-text { font-family: "Fraunces", serif; font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.35; max-width: 1000px; }
.signature-line { margin-top: 2rem; font-weight: 700; color: #ffd4bf; }
.info-box { padding: 1.7rem; border-radius: 20px; background: var(--blue-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.tag-list span { padding: .7rem 1rem; border: 1px solid var(--line); background: white; border-radius: 999px; }
.contact { text-align: center; }
.contact .section-heading, .contact p { margin-left: auto; margin-right: auto; max-width: 760px; }
.note { font-size: .9rem; color: var(--muted); }
.site-footer {
  display: flex; justify-content: space-between; gap: 2rem; align-items: flex-end;
  padding: 2.5rem clamp(1.3rem, 7vw, 8rem);
  background: #182f39; color: white;
}
.site-footer p { margin: .2rem 0 0; color: #c5d2d6; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: white; }

.legal { max-width: 900px; margin: 0 auto; padding: 4rem 1.3rem 7rem; }
.legal h1, .legal h2 { font-family: "Fraunces", serif; color: var(--blue); }
.placeholder { background: #fff0c9; padding: .2rem .4rem; border-radius: 4px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 75px; left: 1rem; right: 1rem;
    flex-direction: column; align-items: stretch; padding: 1rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 250px; }
  .two-column, .cards { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
