:root {
  --bg: #f7f2e8;
  --bg2: #fbf8f1;
  --hero-bg: #f5edcf;
  --hero-bg-2: #fbf4dc;
  --text: #552f1e;
  --muted: #7a5a45;
  --accent: #ef7d1a;
  --accent-dark: #a24b1d;
  --line: rgba(162, 75, 29, 0.18);
  --line-soft: rgba(162, 75, 29, 0.08);
  --max: 1000px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 120, 0.05), transparent 30%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.paper-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(
      15deg,
      rgba(255, 255, 255, 0.35) 0,
      rgba(255, 255, 255, 0.35) 1px,
      transparent 1px,
      transparent 9px
    ),
    repeating-linear-gradient(
      -18deg,
      rgba(230, 198, 145, 0.14) 0,
      rgba(230, 198, 145, 0.14) 1px,
      transparent 1px,
      transparent 12px
    );
}

.page-texture {
  position: fixed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 240, 211, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  padding: 1rem 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.site-nav a,
.hero-links a,
.section-head a,
.media-copy a,
.footer-inner a {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.hero-links a:hover,
.hero-links a:focus-visible,
.section-head a:hover,
.section-head a:focus-visible,
.media-copy a:hover,
.media-copy a:focus-visible,
.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--accent-dark);
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(82vh - 74px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgb(255 249 207 / 16%), transparent 30%), linear-gradient(180deg, #fffdf5, #fff7da);
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(
      16deg,
      rgba(255, 255, 255, 0.3) 0,
      rgba(255, 255, 255, 0.3) 1px,
      transparent 1px,
      transparent 9px
    ),
    repeating-linear-gradient(
      -16deg,
      rgba(224, 192, 123, 0.16) 0,
      rgba(224, 192, 123, 0.16) 1px,
      transparent 1px,
      transparent 11px
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-logo {
  width: min(100%, 500px);
  margin: 0 auto 1.5rem;
}

.intro {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.03rem;
  color: var(--muted);
}

.hero-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.25rem;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--accent-dark);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.signup-block,
.content-section,
.site-footer {
  border-top: 1px solid var(--line-soft);
}

.signup-block {
  padding: 4rem 0;
}

.signup-inner {
  max-width: 620px;
  text-align: center;
}

.signup-inner h2,
.section-head h2,
.media-copy h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.signup-inner h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.signup-inner p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.newsletter-embed {
  margin-top: 1.5rem;
}

.signup-placeholder {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 1.25rem;
  min-height: 74px;
  display: grid;
  place-items: center;
}

.signup-placeholder-title {
  margin: 0;
  font-weight: 800;
  color: var(--accent-dark);
}

.signup-placeholder-text {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.content-section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-head a,
.media-copy a,
.footer-inner a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
}

.media-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
}

.media-row:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.media-image {
  min-height: 360px;
}

.placeholder {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 190, 110, 0.12), transparent 30%),
    rgba(255, 250, 241, 0.42);
}

.placeholder span {
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.media-copy h3 {
  font-size: 1.8rem;
}

.media-copy p {
  margin: 0.9rem 0 1rem;
  color: var(--muted);
  max-width: 28rem;
}

.coming-soon {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 2rem 0;
}

.coming-soon p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-image {
    min-height: 240px;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 2.5rem;
  }

  .hero-logo {
    width: min(100%, 440px);
  }
}