:root {
  --ink: #2f2929;
  --muted: #706665;
  --rose: #bf5f6d;
  --rose-dark: #984655;
  --blush: #f8e8e5;
  --cream: #fffaf6;
  --gold: #c7955c;
  --line: #eadbd7;
  --white: #fff;
  --shadow: 0 18px 55px rgba(92, 55, 58, .12);
  --radius: 26px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(121, 74, 78, .09);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark { color: var(--rose); font-family: Georgia, serif; font-size: 3rem; line-height: 1; }
.brand-copy strong { display: block; font-family: Georgia, serif; letter-spacing: .045em; font-size: 1.15rem; }
.brand-copy small { color: var(--rose); text-transform: uppercase; letter-spacing: .18em; font-size: .66rem; }
.main-nav { display: flex; gap: 1.5rem; font-size: .92rem; font-weight: 700; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--rose); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { background: url('../images/hero-brollop.jpg') center / cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(38, 30, 30, .74) 0%, rgba(38, 30, 30, .54) 38%, rgba(38, 30, 30, .06) 70%); }
.hero-content { position: relative; z-index: 1; color: var(--white); padding-block: 7rem; }
.eyebrow { margin: 0 0 .85rem; color: #f9d6d8; text-transform: uppercase; letter-spacing: .2em; font-size: .74rem; font-weight: 800; }
.eyebrow.dark { color: var(--rose); }
.hero h1 { max-width: 720px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.5vw, 6rem); line-height: .98; font-weight: 500; }
.hero h1 em { color: #f4c6c8; font-weight: 400; }
.lead { max-width: 630px; margin: 1.65rem 0 0; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .85rem 1.35rem; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--rose); color: white; }
.button.primary:hover { background: var(--rose-dark); }
.button.ghost { border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.09); color: white; }
.quick-points { position: relative; z-index: 2; margin-top: -42px; }
.point-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.point-grid article { padding: 1.55rem; border-right: 1px solid var(--line); }
.point-grid article:last-child { border-right: 0; }
.point-grid span { color: var(--rose); font-family: Georgia, serif; font-size: 1.35rem; }
.point-grid h2 { margin: .3rem 0 .35rem; font-family: Georgia, serif; font-size: 1.12rem; }
.point-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.section { padding: 6rem 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.image-card { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: white; }
.image-card.large img { min-height: 430px; object-fit: cover; }
.copy-block h2, .section-heading h2, .feature-copy h2 { margin: .15rem 0 1.1rem; font-family: Georgia, serif; font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.08; }
.copy-block p, .section-heading p, .feature-copy p { color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: .05rem; color: white; background: var(--rose); width: 1.2rem; height: 1.2rem; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 900; }
.soft { background: linear-gradient(180deg, #fffaf8, #f8e8e5); }
.section-heading { max-width: 760px; margin: 0 auto 2.8rem; text-align: center; }
.section-heading.compact { margin-bottom: 2.1rem; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.info-card { background: rgba(255,255,255,.88); border: 1px solid rgba(191,95,109,.12); border-radius: 22px; padding: 2rem; box-shadow: 0 12px 35px rgba(92,55,58,.08); }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--blush); color: var(--rose); font-family: Georgia, serif; font-size: 1.8rem; }
.info-card h3 { margin: 1rem 0 .55rem; font-family: Georgia, serif; font-size: 1.35rem; }
.info-card p { margin: 0; color: var(--muted); }
.feature-band { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center; }
.image-card.journey img { min-height: 350px; object-fit: cover; image-rendering: auto; }
.links-section { padding: 5.5rem 0; background: #fff; border-top: 1px solid var(--line); }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.partner-grid a { min-height: 265px; padding: 1.45rem; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.partner-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-symbol { color: var(--rose); font-family: Georgia, serif; font-size: 2rem; }
.partner-grid strong { margin-top: .6rem; font-family: Georgia, serif; font-size: 1.05rem; }
.partner-grid p { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.partner-grid em { margin-top: auto; color: var(--rose); font-style: normal; font-weight: 800; font-size: .88rem; }
.site-footer { padding: 2.8rem 0; color: white; background: linear-gradient(110deg, #9f4f5b, #d08389); }
.footer-inner { text-align: center; }
.footer-inner strong { display: block; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 500; }
.footer-inner p { margin: .55rem 0 0; }
.footer-inner a { color: white; text-decoration: underline; text-underline-offset: 4px; font-weight: 800; }
.footer-heart { display: inline-block; margin-bottom: .35rem; font-size: 2rem; }
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .point-grid { grid-template-columns: repeat(2, 1fr); }
  .point-grid article:nth-child(2) { border-right: 0; }
  .point-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .feature-band { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards.three { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .container { width: min(var(--container), calc(100% - 1.2rem)); }
  .header-inner { min-height: 68px; }
  .brand-mark { font-size: 2.3rem; }
  .brand-copy strong { font-size: .98rem; }
  .hero { min-height: 620px; align-items: end; }
  .hero-image { background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(38,30,30,.88) 0%, rgba(38,30,30,.38) 75%, rgba(38,30,30,.08)); }
  .hero-content { padding: 10rem 0 4rem; }
  .hero h1 { font-size: 3.05rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .quick-points { margin-top: 0; padding-top: 1rem; }
  .point-grid { grid-template-columns: 1fr; }
  .point-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .point-grid article:last-child { border-bottom: 0; }
  .section { padding: 4.5rem 0; }
  .image-card.large img, .image-card.journey img { min-height: 280px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-grid a { min-height: 220px; }
}
