:root {
  --cream: #F3EEE4;
  --burgundy: #572F3A;
  --green: #C7D7D3;
  --apricot: #D88661;
  --muted: #746C68;
  --rule: #D9D0C7;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--burgundy); font-family: Arial, sans-serif; }
.page { width: 100%; max-width: 1240px; margin: 0 auto; padding: 30px 48px 24px; }
.masthead { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
p { margin: 0; }
.location { font-size: 13px; letter-spacing: .04em; }
.demo-notice { max-width: 350px; font-size: 12px; line-height: 1.6; }
h1 { margin: 46px 0 38px; text-align: center; font-family: Georgia, serif; font-weight: 400; }
.heading-small { display: block; font-size: 25px; line-height: 1.4; }
.heading-large { display: block; font-size: 120px; line-height: 1.04; letter-spacing: -.055em; }
a { color: inherit; }
.phone-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 32px; background: var(--burgundy); color: var(--cream); text-decoration: none; }
.phone-label { font-size: 16px; line-height: 1.5; }
.phone-end { display: flex; align-items: center; gap: 34px; font-size: 32px; line-height: 1.3; white-space: nowrap; }
.arrow { font-size: 36px; line-height: 1; }
.phone-strip:hover .phone-label { text-decoration: underline; text-underline-offset: 5px; }
a:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 5px; }
.illustration { height: 260px; margin-top: 16px; background: var(--green); display: flex; justify-content: center; }
.illustration svg { display: block; width: 100%; max-width: 600px; height: 260px; }
.hanging-line, .ring, .tag-line { fill: none; stroke: var(--burgundy); stroke-width: 2; }
.burgundy-tag { fill: var(--burgundy); }
.apricot-tag { fill: var(--apricot); }
.cutout { fill: var(--green); }
.c-cutout { fill: none; stroke: var(--green); stroke-width: 13; stroke-linecap: round; }
.tag-line { stroke-width: 1; }
footer { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding-top: 22px; margin-top: 24px; border-top: 1px solid var(--rule); font-size: 13px; line-height: 1.5; }
footer > span { color: var(--muted); }
footer a { text-underline-offset: 4px; }
@media (max-width: 600px) {
  .page { padding: 22px 18px; }
  .masthead { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 18px; }
  .demo-notice { font-size: 12px; }
  h1 { margin: 32px 0 28px; }
  .heading-small { font-size: 21px; }
  .heading-large { font-size: 72px; }
  .phone-strip { align-items: stretch; flex-direction: column; gap: 12px; padding: 20px; }
  .phone-label { font-size: 15px; }
  .phone-end { justify-content: space-between; gap: 10px; font-size: 25px; }
  .arrow { font-size: 28px; }
  footer { flex-direction: column; gap: 8px; margin-top: 20px; padding-top: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
