:root {
  --cream: #f6efe6;
  --cream-soft: #fbf6ec;
  --cream-dark: #ede3d2;
  --border: #d8cab8;
  --terra: #e07a47;
  --terra-dark: #a94f25;
  --sage-dark: #2f4a3a;
  --gold: #d7b58c;
  --ink: #18251d;
  --muted: #6a5e50;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(47, 74, 58, .1);
  --shadow-lg: 0 18px 54px rgba(47, 74, 58, .16);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(251, 246, 236, .78), rgba(246, 239, 230, .96) 44rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 236, .9);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  width: min(100%, 72rem);
  height: 7.75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(13.5rem, 25vw, 19rem);
  height: 5.4rem;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-content {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 9.6rem 1.5rem 5rem;
}

.prep-section {
  width: min(100%, 54rem);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: 0 0 1.35rem;
  padding: .35rem .85rem;
  border: 1px solid rgba(224, 122, 71, .28);
  border-radius: 999px;
  background: rgba(251, 246, 236, .76);
  color: var(--terra-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  width: min(100%, 42rem);
  margin: 1.55rem auto 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .9rem 1.55rem;
  border-radius: 999px;
  background: var(--terra);
  box-shadow: 0 10px 24px rgba(224, 122, 71, .25);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.primary-button:hover {
  background: var(--terra-dark);
  box-shadow: 0 14px 30px rgba(224, 122, 71, .28);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.25rem;
  background: var(--sage-dark);
  color: rgba(246, 239, 230, .7);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 5rem, rgba(215, 181, 140, .16) 5rem 5.08rem, transparent 5.08rem),
    linear-gradient(0deg, transparent 0 5rem, rgba(246, 239, 230, .1) 5rem 5.08rem, transparent 5.08rem);
  background-size: 10rem 10rem;
}

.footer-inner {
  position: relative;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.2rem;
  align-items: center;
}

.avatar-link {
  display: inline-flex;
  width: max-content;
  justify-self: start;
  padding: .5rem;
  border-radius: 1.5rem;
  background: rgba(251, 246, 236, .96);
  box-shadow: var(--shadow);
}

.avatar-link img {
  display: block;
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 1rem;
  object-fit: cover;
}

.footer-copy {
  margin: .25rem 0 .75rem;
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.6;
}

.footer-copy span {
  display: block;
}

.mail-link {
  display: flex;
  width: max-content;
  margin-top: .75rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
}

.footer-note {
  display: flex;
  width: min(100%, 39rem);
  align-items: flex-start;
  gap: .75rem;
  margin-top: 1rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(246, 239, 230, .1);
  border-radius: 1rem;
  background: rgba(246, 239, 230, .1);
  color: rgba(246, 239, 230, .74);
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.6;
}

.footer-note-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215, 181, 140, .2);
  color: var(--gold);
}

.footer-note-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.social-links a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 239, 230, .1);
  color: rgba(246, 239, 230, .72);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.social-links a:hover {
  background: rgba(215, 181, 140, .24);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.independent {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: .4rem .75rem;
  border: 1px solid rgba(246, 239, 230, .12);
  border-radius: 999px;
  background: rgba(246, 239, 230, .08);
  color: rgba(246, 239, 230, .62);
  font-family: var(--font-body);
  font-size: .76rem;
}

.copyright {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 239, 230, .1);
  color: rgba(246, 239, 230, .5);
  font-family: var(--font-body);
  font-size: .76rem;
}

@media (max-width: 900px) {
  .nav {
    height: 6.2rem;
    padding: 0 1.25rem;
  }

  .brand {
    width: 12.75rem;
    height: 4.4rem;
  }

  .main-content {
    padding-top: 8rem;
  }
}

@media (max-width: 560px) {
  .main-content {
    min-height: 88vh;
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .avatar-link {
    width: max-content;
    justify-self: start;
  }

  .footer-note {
    width: 100%;
  }
}
