:root {
  --cream: #fff8ec;
  --paper: #fffdf7;
  --ink: #27212c;
  --muted: #6f6272;
  --rose: #cf5d6f;
  --coral: #ef8a64;
  --gold: #f3bd4f;
  --sage: #7ea889;
  --blue: #334e83;
  --lavender: #d9c7ef;
  --shadow: 0 24px 60px rgba(39, 33, 44, 0.14);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(239,138,100,.30), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(126,168,137,.22), transparent 30%),
    linear-gradient(180deg, var(--cream), #fff3df 48%, #f9f5ef);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(16px);
  background: rgba(255,248,236,.82);
  border-bottom: 1px solid rgba(39,33,44,.08);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px 22px 14px 24px;
  background: conic-gradient(from 220deg, var(--rose), var(--gold), var(--sage), var(--blue), var(--rose));
  color: white; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800;
  box-shadow: var(--shadow);
}
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 700; }
nav a { text-decoration: none; }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--ink); color: white; }
.section, .section-grid { padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.section-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 7vw, 90px); align-items: center; }
.eyebrow { color: var(--rose); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: 12px; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; }
h1 { font-size: clamp(46px, 7vw, 86px); max-width: 880px; }
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: 24px; }
.lead, .split p, .cta-panel p { color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.hero-actions, .contact-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 22px;
  border-radius: 999px; text-decoration: none; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--rose); color: white; box-shadow: 0 12px 26px rgba(207,93,111,.25); }
.secondary { background: rgba(255,255,255,.76); border: 1px solid rgba(39,33,44,.12); }
.hero-art { min-height: 560px; position: relative; display: grid; place-items: center; }
.photo-card {
  min-height: 250px;
  border: 2px dashed rgba(39,33,44,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.55)),
    radial-gradient(circle at 25% 25%, rgba(243,189,79,.55), transparent 25%),
    radial-gradient(circle at 75% 35%, rgba(207,93,111,.42), transparent 25%),
    radial-gradient(circle at 55% 78%, rgba(126,168,137,.45), transparent 30%);
  display: grid; place-items: center;
  color: rgba(39,33,44,.48); font-weight: 800;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo-card.tall { width: min(420px, 100%); min-height: 520px; transform: rotate(2deg); }
.warm { background-color: #ffead4; }
.cool { background-color: #dfeaf6; }
.rose { background-color: #f9d7dd; }
.golden { background-color: #ffe6a7; }
.ink { background-color: #e9e3f7; }
.paint-dot { position: absolute; border-radius: 999px; filter: blur(.2px); }
.dot-a { width: 120px; height: 120px; background: var(--gold); left: 8%; top: 18%; }
.dot-b { width: 86px; height: 86px; background: var(--sage); right: 5%; bottom: 17%; }
.dot-c { width: 58px; height: 58px; background: var(--blue); right: 18%; top: 10%; }
.intro-band {
  margin: 0 clamp(20px, 5vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(39,33,44,.10); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.intro-band article { background: rgba(255,253,247,.86); padding: 28px; }
.intro-band strong { display: block; font-size: 18px; margin-bottom: 8px; }
.intro-band span { color: var(--muted); line-height: 1.55; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card, .quote-card, .cta-panel {
  background: rgba(255,253,247,.78);
  border: 1px solid rgba(39,33,44,.10);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 44px rgba(39,33,44,.08);
}
.card.featured { background: var(--ink); color: white; transform: translateY(-10px); }
.card p { color: var(--muted); line-height: 1.7; }
.card.featured p { color: rgba(255,255,255,.75); }
.card-icon { font-size: 30px; color: var(--coral); margin-bottom: 42px; }
.gallery-section { padding-top: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid .photo-card:nth-child(2), .gallery-grid .photo-card:nth-child(5) { transform: translateY(28px); }
.split { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(28px, 6vw, 70px); align-items: center; }
.portrait-frame { min-height: 420px; border-radius: 48% 52% 42% 58% / 56% 42% 58% 44%; }
.note { padding: 16px 18px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.55); border-radius: 12px; }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding-top: 0; }
.quote-card p { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 3vw, 40px); line-height: 1.2; margin: 0 0 16px; }
.quote-card span, .cta-panel small { color: var(--muted); }
.cta-panel { text-align: center; margin: clamp(20px, 5vw, 72px); }
.cta-panel .contact-grid { justify-content: center; }
.site-footer {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 30px clamp(20px, 5vw, 72px); color: var(--muted);
}
@media (max-width: 860px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .section-grid, .split, .cards, .gallery-grid, .intro-band, .testimonials { grid-template-columns: 1fr; }
  .hero-art { min-height: 380px; }
  .photo-card.tall { min-height: 360px; transform: none; }
  .gallery-grid .photo-card:nth-child(2), .gallery-grid .photo-card:nth-child(5), .card.featured { transform: none; }
}
