@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --rose: #94636B;
  --rose-dark: #7D5259;
  --gold: #D6A962;
  --char: #696361;
  --sage: #8A9B7A;
  --cream: #FDF8F3;
  --cream-deep: #F4EADF;
  --deep: #2C2422;
  --slate: #4F6264;
  --white: #FFFDF9;
  --line: rgba(105, 99, 97, 0.18);
  --shadow: 0 18px 45px rgba(44, 36, 34, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--deep);
  font-family: 'Jost', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 243, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  line-height: 1.08;
}
.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-lockup { display: flex; flex-direction: column; }
.brand-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--rose);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--char);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  color: var(--char);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav-links a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.nav-links a:hover,
.nav-links a.active { color: var(--rose); border-color: var(--gold); }

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  min-height: 48px;
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
  cursor: pointer;
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(148, 99, 107, 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover, button:hover { transform: translateY(-1px); background: var(--rose-dark); box-shadow: 0 14px 30px rgba(148, 99, 107, 0.25); }
.button.secondary { background: transparent; color: var(--rose); border: 1px solid rgba(148, 99, 107, 0.42); box-shadow: none; }
.button.secondary:hover { background: rgba(148, 99, 107, 0.07); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 15%, rgba(148, 99, 107, 0.08), transparent 65%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(214, 169, 98, 0.13), transparent 68%),
    var(--cream);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 28px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  font-family: 'Jost', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 15px;
}
.kicker {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  color: var(--rose);
  margin-bottom: 12px;
  line-height: 1.35;
}
h1, h2, h3 { margin: 0 0 18px; color: var(--slate); }
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.85rem, 4.4vw, 3.65rem);
  line-height: 1.09;
  letter-spacing: -0.035em;
  max-width: 760px;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 3.5vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.22;
}
.lead {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.74;
  color: var(--char);
  max-width: 760px;
}
.hero-copy .lead { margin-top: 22px; }
.hero-media {
  position: relative;
  align-self: start;
  margin-top: 4px;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 490px;
  border: 1px solid rgba(105, 99, 97, 0.18);
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,248,243,0.15), rgba(253,248,243,0.20));
  pointer-events: none;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-card {
  position: relative;
  margin: -64px 30px 0;
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 14px 32px rgba(44,36,34,0.08);
}
.hero-card p { margin-bottom: 0; }
.hero-card .quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

section { padding: 72px 28px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.narrow { max-width: 900px; }
.soft-panel { background: var(--cream-deep); }
.wash-panel { background: linear-gradient(180deg, var(--cream), #FFF9F1); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(44,36,34,0.055);
}
.card.accent { border-top: 5px solid var(--gold); }
.card.rose { border-top: 5px solid var(--rose); }
.card.sage { border-top: 5px solid var(--sage); }
.card.soft { background: #fffaf2; }
.list { padding-left: 20px; margin: 18px 0 0; }
.list li { margin-bottom: 10px; }
.program-list { display: grid; gap: 22px; margin-top: 28px; }
.program-item {
  background: var(--white);
  border-left: 6px solid var(--rose);
  border-radius: 22px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta { color: var(--rose); font-weight: 700; letter-spacing: 0.03em; }
.callout {
  background: rgba(148, 99, 107, 0.07);
  border: 1px solid rgba(148, 99, 107, 0.16);
  border-radius: 24px;
  padding: 28px;
}
.callout.gold {
  background: rgba(214, 169, 98, 0.10);
  border-color: rgba(214, 169, 98, 0.24);
}

.page-hero {
  padding: 66px 28px 52px;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(148, 99, 107, 0.07), transparent 70%),
    linear-gradient(180deg, var(--cream), #FFF9F1);
}
.page-hero .section-inner { max-width: 1050px; }
.page-hero h1 { font-size: clamp(2.65rem, 4.6vw, 4.15rem); max-width: 940px; }
.page-hero .lead { max-width: 850px; }

form { margin-top: 28px; display: grid; gap: 16px; }
label { display: block; font-weight: 600; color: var(--slate); margin-bottom: 6px; font-size: 15px; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px;
  font-family: 'Jost', Arial, sans-serif; font-size: 1rem; background: var(--white); color: var(--deep);
}
textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.full { grid-column: 1 / -1; }
.note { font-size: 0.95rem; color: var(--char); }
.important-note { border-left: 4px solid var(--gold); padding-left: 18px; }
.footer { background: var(--deep); color: var(--white); padding: 40px 28px; text-align: center; }
.footer p { margin: 4px 0; color: rgba(255,253,249,0.80); }
.footer strong { color: var(--cream); }

@media (max-width: 980px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-links { flex-wrap: wrap; gap: 12px 18px; }
  .hero-inner, .grid-2, .grid-3, .form-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 50px; gap: 36px; }
  .hero-media { margin-top: 0; }
  .hero-image-wrap, .hero-image-wrap img { min-height: 420px; }
  .hero-card { margin: -54px 20px 0; }
  section { padding: 58px 22px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { padding: 12px 20px; }
  .brand { min-width: 0; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-main { font-size: 19px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.16em; }
  .hero-inner, .page-hero { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.05rem); }
  .hero-image-wrap, .hero-image-wrap img { min-height: 360px; }
  .hero-card { margin: -40px 14px 0; padding: 22px; }
  .actions { flex-direction: column; align-items: stretch; }
  .button, button { width: 100%; }
}
