:root {
  color-scheme: light;
  --bg: #fcfafb;
  --ink: #32212f;
  --brand: #78206c;
  --deep: #4d1745;
  --muted: #705a6b;
  --line: #e8d6e3;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; }
p, h1, figure { margin: 0; }
.header, .hero, footer { width: min(1200px, calc(100% - 112px)); margin-inline: auto; }
.header { display: flex; align-items: center; gap: 24px; padding-block: 28px; }
.brand { color: var(--deep); font-size: 33px; font-weight: 780; letter-spacing: -.04em; text-decoration: none; white-space: nowrap; }
.brand span { font-weight: 450; }
.brand b { color: var(--brand); }
.brand:hover { color: var(--brand); }
.brand:focus-visible { outline: 3px solid #c97800; outline-offset: 8px; border-radius: 4px; }
.hero { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); grid-template-rows: auto auto; column-gap: clamp(40px, 5.5vw, 96px); row-gap: 30px; padding-block: 12px 42px; }
h1 { font-size: clamp(40px, 4.45vw, 68px); font-weight: 780; line-height: 1.02; letter-spacing: -.04em; }
.hero > h1 { grid-column: 1; grid-row: 1; align-self: end; }
h1 span { display: block; color: var(--brand); margin-top: calc(13px + .06em); }
.intro { grid-column: 1; grid-row: 2; align-self: start; }
.description { max-width: 38ch; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.65; color: var(--muted); }
.coming-soon { margin-top: 30px; color: var(--brand); font-size: 21px; line-height: 1.3; font-weight: 650; }
.photo { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.photo img { display: block; width: 100%; height: auto; aspect-ratio: 1122 / 1402; object-fit: cover; border-radius: 14px; }
footer { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-block: 23px 26px; color: var(--muted); font-size: 12px; line-height: 1.5; }
@media (max-width: 1100px) and (min-width: 801px) {
  .header, .hero, footer { width: calc(100% - 64px); }
  .hero { column-gap: 36px; }
  h1 { font-size: clamp(36px, 4.2vw, 46px); }
}
@media (max-width: 800px) {
  .header, .hero, footer { width: min(560px, calc(100% - 40px)); }
  .header { padding-block: 24px; }
  .brand { font-size: 29px; }
  .hero { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; gap: 28px; padding-block: 10px 34px; }
  .hero > h1, .photo, .intro { grid-column: auto; grid-row: auto; }
  h1 { font-size: clamp(34px, 8.8vw, 52px); }
  h1 span { margin-top: calc(10px + .06em); }
  .description { max-width: 40ch; font-size: 17px; }
  .coming-soon { margin-top: 23px; font-size: 20px; }
  footer { flex-wrap: wrap; gap: 9px; padding-block: 20px; }
}
@media (prefers-reduced-motion: no-preference) {
  .photo img { animation: arrive 850ms cubic-bezier(.16, 1, .3, 1) both; }
  @keyframes arrive { from { clip-path: inset(0 0 4% 0 round 14px); } to { clip-path: inset(0 round 14px); } }
}
