:root {
  --bg: #fff8ef;
  --ink: #231f20;
  --muted: #6f6257;
  --gold: #c99a2e;
  --red: #8f1d2c;
  --cream: #fffdf8;
  --line: rgba(35,31,32,.14);
  --shadow: 0 24px 70px rgba(35,31,32,.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff 0, var(--bg) 42%, #f3dcc1 100%);
  line-height: 1.6;
}
a { color: inherit; }
.hero {
  min-height: 92vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(35,31,32,.12), rgba(35,31,32,.30)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%23f6dcc0'/%3E%3Cpath d='M0 570 C240 480 430 620 650 530 C880 440 990 540 1200 460 L1200 800 L0 800 Z' fill='%23d6a44f' opacity='.55'/%3E%3Cpath d='M85 250 h1030 v360 H85z' fill='%23fff8ef'/%3E%3Cpath d='M130 310 h160 v210 H130zM360 310 h160 v210H360zM590 310h160v210H590zM820 310h160v210H820z' fill='%238f1d2c' opacity='.82'/%3E%3Cpath d='M95 240 h1010 l-70-80 H165z' fill='%23c99a2e'/%3E%3Ccircle cx='1010' cy='130' r='55' fill='%23fffdf8' opacity='.8'/%3E%3C/svg%3E") center/cover;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: white;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.brand { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.nav-cta { text-decoration: none; border: 1px solid rgba(255,255,255,.65); padding: 10px 16px; border-radius: 999px; backdrop-filter: blur(8px); }
.hero-content {
  max-width: 820px;
  margin: auto 0;
  color: white;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.eyebrow {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.hero .eyebrow { color: #ffe8ad; }
h1 { font-size: clamp(3rem, 9vw, 7.6rem); line-height: .9; margin: 0 0 22px; max-width: 980px; }
.lead { font-size: clamp(1.15rem, 2vw, 1.55rem); max-width: 720px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  text-decoration: none;
}
.primary { background: var(--gold); color: #221500; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.secondary { background: rgba(255,255,255,.18); color: white; border: 1px solid rgba(255,255,255,.6); }
.section { width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: 82px 0; }
.grid.two { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; align-items: center; }
h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1; margin: 0 0 18px; }
h3 { font-size: 1.45rem; margin: 0 0 14px; }
.features { list-style: none; padding: 0; margin: 26px 0 0; }
.features li { padding: 12px 0 12px 34px; border-bottom: 1px solid var(--line); position: relative; }
.features li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.card, .plan, blockquote {
  background: rgba(255,253,248,.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card { padding: 34px; }
.badge { display: inline-block; padding: 8px 12px; background: var(--red); color: white; border-radius: 999px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .82rem; font-weight: 800; margin-bottom: 22px; }
.big { font-size: 2rem; line-height: 1.1; color: var(--red); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo { min-height: 230px; border-radius: 28px; background: linear-gradient(135deg, #fffdf8, #f5d5a9); border: 1px solid var(--line); display: grid; place-items: center; font-size: 4rem; box-shadow: var(--shadow); }
.photo span { display: block; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 1rem; font-weight: 800; margin-top: 10px; }
.pricing { text-align: center; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; text-align: left; }
.plan { padding: 28px; }
.plan.featured { transform: translateY(-14px); border-color: rgba(201,154,46,.65); }
.price { font-size: 2rem; color: var(--red); margin: 10px 0; font-weight: 900; }
small { color: var(--muted); }
.testimonials blockquote { margin: 18px 0; padding: 28px; font-size: 1.2rem; }
cite { display: block; color: var(--muted); margin-top: 12px; }
.cta { text-align: center; background: var(--cream); border-radius: 34px; padding: 62px 24px; box-shadow: var(--shadow); margin-bottom: 70px; }
.cta .button { margin-top: 14px; }
.fine-print { color: var(--muted); font-size: .9rem; margin-top: 22px; }
footer { padding: 28px; text-align: center; color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }
@media (max-width: 820px) {
  .hero { min-height: 84vh; padding: 20px; }
  .grid.two, .gallery, .plans { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .section { padding: 56px 0; }
  .nav { align-items: flex-start; }
}
