:root {
  --salmon: #fa8078;
  --silver: #c0c0c0;
  --paper: #faf7f2;
  --paper-2: #f0ece5;
  --ink: #151312;
  --muted: #5f5750;
  --line: rgba(21, 19, 18, 0.16);
  --line-light: rgba(255, 255, 255, 0.42);
  --glass: rgba(250, 247, 242, 0.66);
  --shadow: 0 24px 70px rgba(21, 19, 18, 0.18);
  --shadow-tight: 0 12px 32px rgba(21, 19, 18, 0.16);
  --burgundy: #7b2b3d;
  --green: #405a48;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(250, 128, 120, 0.92) 0%, rgba(250, 128, 120, 0.24) 35%, transparent 36%),
    linear-gradient(245deg, rgba(192, 192, 192, 0.96), rgba(250, 247, 242, 0.92) 54%, rgba(64, 90, 72, 0.24)),
    var(--silver);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.texture {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.38), transparent 18%),
    radial-gradient(circle at 90% 2%, rgba(54, 95, 112, 0.2), transparent 20%),
    repeating-linear-gradient(0deg, rgba(21, 19, 18, 0.035) 0 1px, transparent 1px 5px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(calc(100% - 32px), 1180px);
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.62);
  box-shadow: 0 16px 50px rgba(21, 19, 18, 0.12);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translateX(-50%);
}

.brand-link {
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page {
  width: 100%;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.32fr);
  align-items: center;
  gap: 64px;
  width: min(100%, 1240px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 24px 80px;
}

.home-copy,
.home-visual {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(21, 19, 18, 0.82);
  font-size: 26px;
  line-height: 1.32;
  font-weight: 400;
}

.text-flow {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(21, 19, 18, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.text-flow p {
  margin: 0;
}

.text-flow p + p {
  margin-top: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.price-link,
.channel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-tight);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.price-link {
  background: var(--ink);
  color: var(--paper);
}

.channel-link {
  background: rgba(250, 247, 242, 0.68);
  color: var(--ink);
  backdrop-filter: blur(12px) saturate(135%);
}

.price-link:hover,
.price-link:focus-visible,
.channel-link:hover,
.channel-link:focus-visible {
  background: var(--burgundy);
  border-color: rgba(123, 43, 61, 0.42);
  color: var(--paper);
  transform: translateY(-1px);
}

.home-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72vh, 740px);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.5);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(12px);
}

.portrait-frame {
  width: min(100%, 600px);
  aspect-ratio: 3 / 4.35;
  transform: rotate(1.2deg);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(21, 19, 18, 0.28), transparent);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    min-height: 44px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding: 128px 18px 56px;
  }

  h1 {
    font-size: 52px;
  }

  .lead {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 42px;
    padding: 0 14px;
  }

  .brand-link {
    font-size: 12px;
  }

  .home-hero {
    padding: 104px 14px 46px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .text-flow {
    font-size: 16px;
  }

  .cta-row {
    gap: 10px;
  }

  .price-link,
  .channel-link {
    width: 100%;
    padding: 0 16px;
  }
}
