:root {
  color-scheme: light;
  --paper: #fbf4ef;
  --panel: #fffdf8;
  --ink: #261f1c;
  --muted: #6f625d;
  --line: rgba(38, 31, 28, 0.14);
  --berry: #9f3f5d;
  --blush: #f8b1ae;
  --taupe: #8d7a72;
  --teal: #0f6c64;
  --denim: #243f67;
  --champagne: #d7b56d;
  --shadow: 0 24px 70px rgba(38, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 9%, rgba(248, 177, 174, 0.26) 0, rgba(248, 177, 174, 0) 31%),
    radial-gradient(circle at 7% 42%, rgba(215, 181, 109, 0.16) 0, rgba(215, 181, 109, 0) 26%),
    linear-gradient(180deg, #fff8f3 0%, #fbf4ef 55%, #f5f0ea 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(15, 108, 100, 0.45);
  outline-offset: 3px;
}

.shell {
  position: relative;
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 30px 0 54px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 1.06fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  min-height: calc(100vh - 84px);
  padding-top: 36px;
}

.hero-copy {
  max-width: 650px;
}

.back-link {
  position: absolute;
  top: 20px;
  left: 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(38, 31, 28, 0.08);
  border-radius: 999px;
  margin: 0;
  color: rgba(111, 98, 93, 0.76);
  background: rgba(255, 253, 248, 0.36);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(38, 31, 28, 0.035);
}

.back-link:hover {
  border-color: rgba(15, 108, 100, 0.18);
  color: var(--teal);
  background: rgba(255, 253, 248, 0.68);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.7vw, 5.25rem);
  font-weight: 700;
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 560px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(38, 31, 28, 0.07);
}

.button:hover {
  border-color: rgba(15, 108, 100, 0.38);
  background: #fffdf8;
}

.button.primary {
  border-color: transparent;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--teal), var(--denim));
}

.button-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-icon-tiktok {
  color: #2f2826;
}

.button-icon-pinterest {
  color: #bd1e36;
}

.button-icon-threads {
  color: #3b3430;
}

.button-icon-youtube {
  color: #c9292f;
}

.button-icon-facebook {
  color: #2f557f;
}

.media-card {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(38, 31, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.media-card::before {
  position: absolute;
  inset: 26px auto auto -18px;
  z-index: -1;
  width: 72%;
  height: 58%;
  border: 1px solid rgba(159, 63, 93, 0.32);
  border-radius: 8px;
  content: "";
}

.media-card img {
  width: 100%;
  height: min(72vh, 760px);
  border-radius: 6px;
  object-fit: cover;
  object-position: center 42%;
}

.media-card figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: min(470px, calc(100% - 56px));
  padding: 10px 14px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 6px;
  color: #fffdf8;
  background: rgba(38, 31, 28, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 24px;
}

.bio-panel,
.signal-panel,
.brand-panel,
.feature-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 16px 44px rgba(38, 31, 28, 0.07);
}

.bio-panel,
.signal-panel {
  padding: clamp(22px, 4vw, 34px);
}

.bio-panel p:last-child,
.brand-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.signal-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-panel li {
  padding-left: 14px;
  border-left: 3px solid var(--champagne);
  color: var(--muted);
  font-weight: 740;
  line-height: 1.45;
}

.link-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.link-band a,
.feature-links a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  text-decoration: none;
}

.link-band a {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  min-height: 92px;
  padding: 15px;
  box-shadow: 0 16px 44px rgba(38, 31, 28, 0.07);
}

.link-band a:hover,
.feature-links a:hover {
  border-color: rgba(15, 108, 100, 0.38);
  background: #fffdf8;
}

.link-band span,
.feature-links span {
  color: var(--berry);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-band strong,
.feature-links strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.brand-icon {
  display: inline-grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  color: var(--icon-color);
  background: var(--icon-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.62),
    0 10px 24px rgba(38, 31, 28, 0.08);
}

.brand-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.brand-icon-instagram {
  --icon-bg: linear-gradient(135deg, rgba(159, 63, 93, 0.24), rgba(215, 181, 109, 0.38));
  --icon-color: #9f3f5d;
}

.brand-icon-tiktok {
  --icon-bg: rgba(47, 40, 38, 0.12);
  --icon-color: #2f2826;
}

.brand-icon-pinterest {
  --icon-bg: rgba(180, 58, 88, 0.14);
  --icon-color: #bd1e36;
}

.brand-icon-threads {
  --icon-bg: rgba(59, 52, 48, 0.12);
  --icon-color: #3b3430;
}

.brand-icon-youtube {
  --icon-bg: rgba(201, 74, 77, 0.14);
  --icon-color: #c9292f;
}

.brand-icon-facebook {
  --icon-bg: rgba(47, 85, 127, 0.14);
  --icon-color: #2f557f;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 18px;
  padding: clamp(26px, 4.2vw, 42px);
}

.feature-strip h2 {
  max-width: 600px;
  margin-bottom: 14px;
}

.feature-note {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.62;
}

.feature-links {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 16px 44px rgba(38, 31, 28, 0.06);
}

.feature-links a {
  position: relative;
  place-content: center;
  min-height: 88px;
  padding: 17px 22px 17px 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.feature-links a + a {
  border-top: 1px solid var(--line);
}

.feature-links a::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: var(--champagne);
  opacity: 0;
  transition: opacity 160ms ease;
}

.feature-links a:hover::before {
  opacity: 1;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.brand-copy {
  display: grid;
  gap: 10px;
}

.brand-logo {
  width: clamp(210px, 22vw, 280px);
  height: clamp(66px, 7vw, 88px);
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 6px;
  opacity: 0.92;
}

.brand-panel p {
  max-width: 760px;
  margin-bottom: 0;
}

.brand-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.brand-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-actions .button {
  white-space: nowrap;
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 22px, 620px);
    padding-top: 18px;
  }

  .link-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
  }

  .hero,
  .profile-grid,
  .feature-strip,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
    min-height: 0;
    padding-top: 44px;
  }

  .back-link {
    top: 12px;
  }

  .media-card::before {
    display: none;
  }

  .media-card figcaption {
    right: 22px;
    bottom: 22px;
    max-width: calc(100% - 44px);
  }

  .media-card img {
    height: min(82vh, 680px);
  }

  .brand-buttons {
    width: 100%;
  }

  .brand-panel .button {
    width: 100%;
  }

  .brand-logo {
    width: min(260px, 88%);
    height: 82px;
  }
}

@media (max-width: 500px) {
  .link-band {
    grid-template-columns: 1fr;
  }

  .actions .button {
    width: 100%;
  }

  .actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .media-card figcaption {
    position: static;
    max-width: none;
    margin-top: 10px;
    color: var(--muted);
    background: transparent;
    backdrop-filter: none;
  }

  .media-card img {
    height: min(118vw, 560px);
  }
}
