:root {
  --bg: #0b0b0b;
  --paper: #111111;
  --ink: #111111;
  --ink-soft: #f6f1e4;
  --muted: #c9bfa8;
  --line: rgba(255, 255, 255, 0.2);
  --accent: #ce1126;
  --yellow: #fcd116;
  --green: #006b3f;
  --light: #f6f1e4;
  --image-text-gap: 3.5rem;
  --story-image-text-gap: clamp(3rem, 7vw, 5.5rem);
  --image-text-gap-bottom: 1.25rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--light);
  background: var(--bg);
  line-height: 1.75;
  cursor: url("assets/cursor-gift-white.svg") 16 16, auto;
}

a,
button,
.button,
.milestone-has-images,
label,
input[type="submit"],
input[type="button"],
select,
summary {
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92vw);
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: #000000;
  border-bottom: 1px solid rgba(252, 209, 22, 0.45);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: clamp(185px, 23vw, 270px);
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  align-self: center;
}

.brand img {
  position: absolute;
  left: 0;
  top: 58%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  align-self: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--light);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.9;
}

.site-nav a:hover {
  color: var(--yellow);
}

.nav-shop {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.24s ease, color 0.24s ease;
}

.nav-shop:hover {
  background: var(--yellow);
  color: #111111;
}

.hero {
  padding-top: 96px;
  position: relative;
  background: var(--bg);
}

.hero-media {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 96px);
}

.hero-image {
  display: block;
  width: 100%;
  height: calc(100vh - 96px);
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}

.hero-inner {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 4vw, 3rem);
  left: auto;
  transform: none;
  width: min(720px, 50vw);
  bottom: clamp(0.5rem, 2.5vh, 1.25rem);
  padding: 0;
  text-align: right;
}

.hero-lower {
  margin: 0 0 0 auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.8vw, 2.2rem);
  line-height: 1.45;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  font-family: "Inter", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.serial {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--yellow);
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  max-width: 14ch;
}

h1.hero-lower {
  max-width: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 3.8vw, 2.2rem);
  line-height: 1.45;
  margin: 0 0 0 auto;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.story-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.story-body {
  display: grid;
  grid-template-columns: minmax(220px, min(58%, 480px)) minmax(0, 1fr);
  gap: var(--story-image-text-gap);
  align-items: start;
}

.story-copy p {
  margin: 0 0 1.25rem;
}

.story-figure {
  position: relative;
  margin: 0;
  min-height: clamp(300px, 36vw, 400px);
  overflow: hidden;
  border: 1px solid rgba(252, 209, 22, 0.35);
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.story-figure-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: #111111;
}

.story-figure-hover p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--yellow);
  text-align: center;
}

.story-figure img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.35s ease;
}

.story-figure:hover img,
.story-figure:focus-within img {
  opacity: 0;
}

.comfort-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, min(52%, 500px));
  gap: var(--story-image-text-gap);
  align-items: end;
  max-width: none;
}

.comfort-text {
  min-width: 0;
}

.comfort-text p {
  margin: 0 0 1.25rem;
}

.comfort-intro {
  white-space: nowrap;
}

.comfort-statement {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.45;
  color: var(--yellow);
}

.comfort-images {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  height: clamp(18rem, 36vw, 24.5rem);
  align-items: stretch;
}

.comfort-figure {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 63, 0.35);
}

.comfort-figure-has-hover {
  position: relative;
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.comfort-figure-link {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.comfort-figure-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #111111;
}

.comfort-figure-hover p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--yellow);
  text-align: center;
}

.comfort-figure-link img,
.comfort-figure-has-hover > img {
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease;
}

.comfort-figure-link:hover img,
.comfort-figure-link:focus-visible img,
.comfort-figure-has-hover:hover > img,
.comfort-figure-has-hover:focus-within > img {
  opacity: 0;
}

.comfort-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.comfort-figure-zoom img {
  transform: scale(1.28);
  object-position: center 22%;
}

.milestones-list {
  display: grid;
  gap: 0;
}

.milestone {
  padding: 2rem 0;
}

.milestone-has-images {
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.milestone-content {
  transition: opacity 0.3s ease;
}

.milestone h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.milestone p {
  margin: 0;
  max-width: 62rem;
  color: var(--light);
}

.milestone-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 200px));
  justify-content: center;
  gap: 1rem;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

.milestone-has-images:hover .milestone-images,
.milestone-has-images:focus-within .milestone-images {
  max-height: 520px;
  margin-top: 1.5rem;
  opacity: 1;
  pointer-events: auto;
}

.milestone-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(252, 209, 22, 0.35);
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 200px;
  justify-self: center;
}

.milestone-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

h3 {
  font-size: 1.7rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}


.button {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: 0.24s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--light);
  border-color: var(--accent);
}

.button-primary:hover {
  background: #a40e1e;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--yellow);
  border-color: rgba(252, 209, 22, 0.65);
}

.button-secondary:hover {
  border-color: var(--yellow);
}

.section {
  padding: 7rem 0;
}

.section-alt {
  background: var(--paper);
  color: var(--ink-soft);
}

.section-dark {
  background: #111111;
  color: var(--light);
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  background: rgba(252, 209, 22, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: min(100%, 720px);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0 auto;
}

#team .card-grid-two {
  max-width: 100%;
}

.card-image {
  margin: 0 -1.35rem 1rem;
  overflow: hidden;
}

.card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

#team .card-image {
  aspect-ratio: 3 / 2;
}

#team .card-image img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

#team .card-image-founders {
  background: #ffffff;
}

#team .card-image-asiedu {
  background: #ffffff;
}

.card {
  border: 1px solid rgba(0, 107, 63, 0.6);
  background: #191919;
  padding: 0 1.35rem 1.35rem;
  overflow: hidden;
}

.section-alt .card {
  background: #1a1a1a;
  color: var(--light);
}

.card-image-placeholder {
  aspect-ratio: 3 / 4;
  margin: 0 -1.35rem 1rem;
  background:
    linear-gradient(145deg, #2c2c2c 0%, #1f1f1f 55%, #2a3a32 100%);
  border-bottom: 1px solid rgba(0, 107, 63, 0.45);
}

.calendar-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.calendar-pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  width: 100%;
}

.calendar-page {
  margin: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
}

.calendar-page img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-block {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 62vh, 720px);
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--light);
}

.ghana-flag-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ghana-band {
  position: relative;
  z-index: 1;
  min-height: 0;
  pointer-events: auto;
}

.ghana-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.ghana-band-red {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("assets/ghana-red.png") center / cover no-repeat;
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.ghana-band-red:hover,
.ghana-band-red:focus-within {
  z-index: 10;
}

.ghana-band-yellow {
  position: relative;
  z-index: 1;
  background: url("assets/ghana-yellow.png") center / cover no-repeat;
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.ghana-band-yellow:hover,
.ghana-band-yellow:focus-within {
  z-index: 10;
}

.ghana-band-green {
  position: relative;
  z-index: 1;
  background: url("assets/ghana-green.png") center / cover no-repeat;
  cursor: url("assets/cursor-gift-white.svg") 16 16, pointer;
}

.ghana-band-green:hover,
.ghana-band-green:focus-within {
  z-index: 10;
}

.ghana-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}

.ghana-band-red:hover .ghana-reveal-red,
.ghana-band-red:focus-within .ghana-reveal-red,
.ghana-band-yellow:hover .ghana-reveal-yellow,
.ghana-band-yellow:focus-within .ghana-reveal-yellow,
.ghana-band-green:hover .ghana-reveal-green,
.ghana-band-green:focus-within .ghana-reveal-green {
  opacity: 1;
  pointer-events: auto;
}

.ghana-reveal .editorial-text {
  margin: 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.88rem, 1.45vw, 1.02rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: transparent;
  border: 2px solid var(--yellow);
  text-align: center;
  color: var(--yellow);
}

.contact-box .story-title {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--yellow);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-links a {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: var(--yellow);
}

.press-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.press-item {
  background: #161616;
  border: 1px solid rgba(252, 209, 22, 0.45);
  padding: 1.2rem;
  color: var(--light);
}

ul {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
}

a {
  color: inherit;
  text-underline-offset: 0.16em;
}

.site-footer {
  padding: 1.8rem 0;
  text-align: center;
  color: var(--muted);
  background: #0d0d0d;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .card-grid,
  .card-grid-two {
    grid-template-columns: 1fr;
    max-width: min(100%, 360px);
  }

  #team .card-grid-two {
    max-width: min(100%, 560px);
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    border-bottom-color: rgba(252, 209, 22, 0.32);
  }

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

  .brand {
    width: clamp(150px, 42vw, 200px);
    height: 34px;
  }

  .nav-shop {
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-media {
    min-height: calc(78vh - 84px);
  }

  .hero-image {
    height: calc(78vh - 84px);
    object-position: center 22%;
  }

  .hero-inner {
    width: min(94vw, 100%);
    right: 0.85rem;
    bottom: 0.75rem;
  }

  .section {
    padding: 4.35rem 0;
  }

  .story-title {
    font-size: clamp(2rem, 11vw, 2.7rem);
    margin-bottom: 1.35rem;
  }

  .hero-lower {
    font-size: clamp(0.88rem, 4.25vw, 1.15rem);
    line-height: 1.35;
    letter-spacing: 0.075em;
  }

  .story-body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .comfort-body {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    align-items: stretch;
  }

  .comfort-intro {
    white-space: normal;
  }

  .comfort-images {
    width: 100%;
    max-width: 500px;
    height: clamp(16rem, 52vw, 22rem);
    margin: 0 auto;
  }

  .story-figure img,
  .comfort-figure img {
    min-height: 290px;
  }

  .milestone-images {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .calendar-pages {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .milestone-figure {
    max-width: min(100%, 320px);
  }

  .milestone-has-images:hover .milestone-images,
  .milestone-has-images:focus-within .milestone-images {
    max-height: none;
  }

  .editorial-block {
    min-height: auto;
    padding: 0;
  }

  .ghana-flag-bg {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(280px, auto));
    position: relative;
  }

  .ghana-reveal {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    min-height: 280px;
    overflow-y: visible;
  }

  .ghana-reveal .editorial-text {
    font-size: clamp(0.9rem, 3.9vw, 1rem);
    line-height: 1.55;
  }
}

@media (hover: none) {
  .milestone-has-images .milestone-images {
    max-height: none;
    margin-top: 1.5rem;
    opacity: 1;
    pointer-events: auto;
  }
}
