:root {
  color-scheme: light;
  --paper: #f6f5f0;
  --ink: #20251f;
  --muted: #62655e;
  --rule: #d6d8d0;
  --accent: #344938;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: #dce2d5; color: #162019; }
.page { min-height: 100svh; padding: 0 clamp(1.5rem, 5vw, 6rem); display: flex; flex-direction: column; }
.masthead, footer { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.masthead { padding: 1.65rem 0; border-bottom: 1px solid var(--rule); font-size: .75rem; line-height: 1.6; letter-spacing: .12em; text-transform: uppercase; }
.status { color: var(--muted); text-align: right; }
main { width: 100%; max-width: 60rem; margin: auto; padding: 2.4rem 0 3rem; text-align: center; }
.brand { position: relative; margin: 0 auto 2rem; width: clamp(15.5rem, 24vw, 19rem); }
.brand::before, .brand::after { position: absolute; content: ""; top: 50%; width: clamp(2.5rem, 9vw, 7.5rem); height: 1px; background: var(--rule); }
.brand::before { right: calc(100% + 3.5rem); }
.brand::after { left: calc(100% + 3.5rem); }
.logo { width: 100%; height: auto; display: block; }
.eyebrow { margin: 0 0 1rem; color: var(--muted); text-transform: uppercase; font-size: .75rem; line-height: 1.6; letter-spacing: .17em; }
h1 { margin: 0 0 1.4rem; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(2.6rem, 4.2vw, 4rem); line-height: 1.07; letter-spacing: -.045em; }
h1 em { font-weight: 400; }
.intro { max-width: 36rem; margin: 0 auto; color: var(--muted); font-size: 1rem; line-height: 1.8; text-wrap: pretty; }
.thanks { margin: 1rem auto 0; font-size: 1rem; line-height: 1.7; text-wrap: pretty; }
.contact { margin: 2rem auto 0; }
.contact > p { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 0 0 1.25rem; }
.actions { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.instagram { display: inline-flex; align-items: center; gap: .75rem; border-radius: 4rem; padding: 1rem 1.55rem; background: var(--ink); color: var(--paper); min-height: 3.4rem; font-size: .9375rem; transition: background-color .2s ease, transform .2s ease; }
.instagram:hover { background: var(--accent); transform: translateY(-2px); }
.instagram svg, .email svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
.email { display: inline-flex; gap: .8rem; align-items: center; padding: .8rem 0; min-height: 3rem; font-size: .9375rem; }
.email span { border-bottom: 1px solid #92978d; padding-bottom: .2rem; transition: border-color .2s ease; }
.email:hover span { border-color: var(--ink); }
footer { padding: 1.4rem 0; border-top: 1px solid var(--rule); color: var(--muted); font-size: .75rem; line-height: 1.6; }
@media (min-width: 1050px) and (min-height: 900px) {
  main { padding-top: 3rem; padding-bottom: 3.5rem; }
  .brand { width: 20rem; margin-bottom: 2.5rem; }
}
@media (max-width: 600px) {
  .page { padding-inline: 1.4rem; }
  .masthead { justify-content: center; padding: 1.25rem 0; font-size: .75rem; }
  .status { display: none; }
  main { padding: 2rem 0 2.5rem; }
  .brand { width: 15rem; max-width: 75%; margin-bottom: 1.8rem; }
  .brand::before, .brand::after { display: none; }
  h1 { font-size: clamp(2.5rem, 10vw, 3.4rem); margin-bottom: 1.3rem; }
  .intro { line-height: 1.75; }
  .contact { margin-top: 1.75rem; }
  .contact > p { max-width: 18rem; margin-inline: auto; }
  .actions { flex-direction: column; gap: .75rem; }
  .instagram { justify-content: center; min-width: 14.5rem; }
  footer { flex-direction: column; gap: .35rem; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
