:root {
  --bg: #fffbf1;
  --bg-warm: #fff3d6;
  --yellow: #f5b83d;
  --yellow-deep: #e29a1a;
  --ink: #2a2418;
  --ink-soft: #5c5240;
  --ink-mute: #8a7e66;
  --line: #efe4c8;
  --paper: #ffffff;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(245, 184, 61, 0.22), transparent 36%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 251, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 184, 61, 0.2);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  grid-template-areas:
    "tag image"
    "copy image";
  gap: 56px;
  align-items: center;
}

.hero-tag {
  grid-area: tag;
  align-self: end;
  margin-bottom: -24px;
}

.hero-copy {
  grid-area: copy;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

.tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--yellow-deep);
}

h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 em {
  font-style: italic;
  color: var(--yellow-deep);
  font-weight: 400;
}

.lede {
  max-width: 460px;
  margin: 0 0 36px;
  font-size: 18px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.pom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink-soft);
}

.pom span {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
}

.pom-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ebe6a;
}

.hero-img {
  grid-area: image;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7b458 0%, #ea9528 100%);
  box-shadow: 0 30px 60px -20px rgba(226, 154, 26, 0.35);
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.content {
  padding: 60px 0 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.info-cell {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.info-cell.right {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.info-label {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.info-value {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.info-value em {
  font-style: italic;
  color: var(--yellow-deep);
  font-weight: 400;
}

.info-sub {
  max-width: 420px;
  margin: 10px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.footer {
  margin-top: 60px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
  gap: 0;
  padding: 44px 0 30px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.footer-col p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.footer-col p + p {
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}

.footer-col {
  padding: 0 32px;
}

.footer-col:first-child {
  border-right: 1px solid var(--line);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .wrap {
    width: min(1120px, calc(100% - 40px));
  }

  .hero {
    padding: 48px 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "copy"
      "image";
    gap: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-tag {
    margin-bottom: 0;
    align-self: auto;
  }

  .hero-img {
    width: min(100%, 520px);
    max-width: 520px;
    margin: 0 auto;
  }

  .info-grid {
    display: block;
  }

  .info-cell,
  .info-cell.right {
    padding: 30px 0;
    border-left: none;
  }

  .footer-inner {
    max-width: 760px;
    padding: 34px 0 24px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 32px));
  }

  .nav {
    position: static;
  }

  .nav-inner {
    min-height: 58px;
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero-grid {
    grid-template-areas:
      "tag"
      "image"
      "copy";
    gap: 18px;
  }

  .tag {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    line-height: 0.97;
    text-wrap: balance;
  }

  .lede {
    max-width: 24ch;
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .pom {
    display: flex;
    width: 100%;
    gap: 8px 10px;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .hero-img {
    max-width: none;
    border-radius: 28px;
    box-shadow: 0 24px 44px -24px rgba(226, 154, 26, 0.45);
  }

  .hero-copy {
    display: grid;
    gap: 0;
  }

  .content {
    padding: 22px 0 0;
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .info-cell,
  .info-cell.right {
    min-height: 100%;
    padding: 18px 14px 16px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    scroll-margin-top: 24px;
  }

  .info-cell:nth-child(odd) {
    padding-right: 14px;
    border-left: none;
  }

  .info-cell:nth-child(even) {
    padding-left: 14px;
  }

  .info-label {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .info-value {
    max-width: none;
    font-size: clamp(1.45rem, 5.8vw, 1.8rem);
    line-height: 1.08;
    text-wrap: pretty;
  }

  .info-sub {
    max-width: none;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer {
    margin-top: 32px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 24px 0 18px;
  }

  .footer-col h4 {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .footer-col p {
    font-size: 15px;
    line-height: 1.25;
  }

  .footer-col p + p {
    font-size: 13px;
  }

  .footer-col {
    padding: 0 16px;
  }

  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 18px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(1120px, calc(100% - 24px));
  }

  h1 {
    font-size: clamp(2.2rem, 10.8vw, 3rem);
  }

  .lede {
    max-width: none;
    font-size: 16px;
  }

  .info-value {
    font-size: clamp(1.3rem, 6.3vw, 1.6rem);
  }

  .info-grid {
    gap: 0;
  }

  .info-cell,
  .info-cell.right {
    padding-top: 16px;
    padding-bottom: 14px;
    border-radius: 0;
  }

  .info-label {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .info-sub {
    font-size: 13px;
  }

  .footer-inner {
    gap: 0;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col p + p {
    font-size: 12.5px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 340px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
