@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700&display=swap");

:root {
  --ink: #111111;
  --body: #414141;
  --line: #e8e8e8;
  --paper: #ffffff;
  --story: #f6f5f2;
  --accent: #fe005c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.content-shell {
  width: min(90%, 1150px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark,
.footer-wordmark {
  font-family: Manrope, Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.wordmark {
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-image-wrap {
  padding-top: 28px;
}

.hero-image,
.gallery-section img,
.story-gallery img {
  border-radius: 14px;
}

.story-area {
  position: relative;
  isolation: isolate;
  margin-top: 28px;
  padding-bottom: 40px;
}

.story-area::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: var(--story);
  content: "";
}

.story-copy {
  max-width: 820px;
  margin: 0 auto;
}

.story-intro {
  padding: 58px 0 18px;
}

.story-chapter {
  padding: 64px 0 18px;
}

.story-chapter h2:first-child {
  margin-top: 0;
}

.story-eyebrow {
  margin-bottom: 18px;
  color: #77736c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-copy h1,
.story-copy h2 {
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: left;
}

.story-copy h1 {
  margin: 0 0 30px;
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.08;
}

.story-copy h2 {
  margin: 64px 0 18px;
  font-size: 29px;
  line-height: 1.2;
}

.story-copy p {
  margin: 0 0 20px;
  color: var(--body);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  text-align: left;
}

.story-intro > p:first-of-type {
  color: #252525;
  font-size: 20px;
  line-height: 1.65;
}

.story-quote {
  margin: 48px 0;
  padding: 2px 0 2px 28px;
  border-left: 3px solid var(--accent);
}

.story-quote p {
  margin: 0;
  color: #252525;
  font-family: Manrope, Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.gallery-section {
  padding: 12px 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-gallery {
  margin: 14px 0 0;
}

.gallery-section:last-of-type {
  padding-bottom: 56px;
}

.social-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wordmark {
  color: #3a3a3a;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.instagram-link {
  display: inline-block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--accent);
  line-height: 0;
  transition: transform 180ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-2px);
}

.instagram-link img {
  width: 28px;
  height: 28px;
  margin: 2px;
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 78px;
  }

  .content-shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 70px;
  }

  .wordmark {
    font-size: 17px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero-image-wrap {
    padding-top: 16px;
  }

  .hero-image,
  .gallery-section img,
  .story-gallery img {
    border-radius: 10px;
  }

  .story-area {
    margin-top: 16px;
    padding-bottom: 26px;
  }

  .story-intro {
    padding: 40px 0 12px;
  }

  .story-chapter {
    padding: 48px 0 12px;
  }

  .story-copy h1 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .story-copy h2 {
    margin-top: 48px;
    font-size: 25px;
  }

  .story-copy p,
  .story-intro > p:first-of-type {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
  }

  .story-eyebrow {
    margin-bottom: 14px;
  }

  .story-quote {
    margin: 36px 0;
    padding-left: 20px;
  }

  .story-quote p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-gallery {
    margin-top: 12px;
  }

  .gallery-section {
    padding: 10px 0;
  }

  .gallery-section:last-of-type {
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
