:root {
  --ink: #111111;
  --charcoal: #242121;
  --slate: #4d4947;
  --stone: #d9d3ce;
  --warm: #f4f0ed;
  --ivory: #fbf8f5;
  --pink: #edc7cf;
  --rose: #a0475b;
  --line: rgba(17, 17, 17, 0.13);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Baskerville", "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 245, 0.93);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: baseline;
  display: inline-flex;
  font-family: var(--serif);
  gap: 6px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  color: var(--rose);
  font-size: 15px;
  font-style: italic;
  text-transform: none;
}

.brand strong {
  font-size: 22px;
  font-weight: 500;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:last-child {
  background: var(--ink);
  color: var(--ivory);
  padding: 13px 18px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 180ms ease;
  width: 26px;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(38deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-38deg);
}

.mobile-nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  display: none;
  gap: 0;
  left: 0;
  padding: 72px 24px 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-nav a {
  border-top: 1px solid var(--line);
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  padding: 18px 0;
}

.hero {
  color: var(--ivory);
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}

.hero-photo {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=2200&q=85");
  background-position: center center;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(1.02);
}

.hero-shade {
  background: rgba(13, 11, 10, 0.52);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-content {
  max-width: 1220px;
  padding: 138px 32px 82px;
  position: relative;
  width: min(100%, 1080px);
}

.eyebrow,
.section-kicker {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--pink);
}

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

h1 {
  font-family: var(--serif);
  font-size: clamp(74px, 10.4vw, 148px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 26px;
  max-width: 1160px;
  text-transform: uppercase;
}

.hero-line {
  font-family: var(--serif);
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 820px;
}

.hero-copy {
  color: rgba(251, 248, 245, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  color: var(--ivory);
}

.photo-credit {
  bottom: 18px;
  color: rgba(251, 248, 245, 0.64);
  font-size: 11px;
  left: 32px;
  margin: 0;
  position: absolute;
  z-index: 2;
}

.proof-band {
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-band div {
  border-right: 1px solid rgba(251, 248, 245, 0.17);
  padding: 26px 32px;
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.proof-band p {
  color: rgba(251, 248, 245, 0.68);
  font-size: 13px;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.intro-section,
.list-system,
.inside-section,
.dashboard-section,
.events-section,
.pricing-section,
.join-section,
.site-footer {
  padding: 88px 32px;
}

.intro-grid,
.section-heading,
.preview-shell,
.dashboard-section,
.events-section,
.pricing-section,
.join-section,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
}

.intro-grid p,
.pricing-copy p,
.dashboard-copy p,
.join-copy p {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 0;
}

.list-system,
.events-section {
  background: var(--warm);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 920px;
}

.list-rows {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1180px;
}

.list-rows article {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px minmax(210px, 0.44fr) 1fr;
  padding: 28px 0;
}

.list-number {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 28px;
  margin: 0;
}

.list-rows h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.list-rows p:last-child {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

.inside-section {
  background: var(--ivory);
}

.preview-shell {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.preview-tabs {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.tab-button {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(251, 248, 245, 0.16);
  color: rgba(251, 248, 245, 0.62);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 58px;
  text-transform: uppercase;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.is-active {
  background: var(--pink);
  color: var(--ink);
}

.preview-board {
  background: #fff;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  padding: 34px;
}

.preview-copy h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 20px;
}

.preview-copy p:last-child {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.58;
  margin-bottom: 0;
}

.preview-items {
  display: grid;
  gap: 12px;
}

.preview-card {
  border: 1px solid var(--line);
  padding: 18px;
}

.preview-card .meta {
  color: var(--rose);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.preview-card h4 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.preview-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.dashboard-section {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.dashboard-copy h2 {
  margin-bottom: 24px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 30px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.dashboard-mock {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 24px;
}

.mock-top {
  align-items: center;
  border-bottom: 1px solid rgba(251, 248, 245, 0.18);
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.mock-top span:first-child {
  font-family: var(--serif);
  font-size: 44px;
}

.mock-top span:last-child {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-actions {
  margin: 22px 0;
}

.quick-actions button {
  background: var(--pink);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 42px;
  padding: 0 14px;
  text-transform: uppercase;
}

.today-feed {
  display: grid;
  gap: 12px;
}

.today-feed article {
  background: rgba(251, 248, 245, 0.08);
  border: 1px solid rgba(251, 248, 245, 0.13);
  padding: 18px;
}

.today-feed span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.today-feed h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin: 8px 0 10px;
}

.today-feed p {
  color: rgba(251, 248, 245, 0.68);
  line-height: 1.5;
  margin: 0;
}

.event-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.event-list article {
  border-right: 1px solid var(--line);
  min-height: 260px;
  padding: 28px;
}

.event-list article:last-child {
  border-right: 0;
}

.event-list p {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-list h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 22px;
}

.event-list span {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.5;
}

.pricing-section,
.join-section {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
}

.pricing-copy h2,
.join-copy h2 {
  margin-bottom: 24px;
}

.pricing-panel,
.join-form {
  background: var(--ink);
  color: var(--ivory);
  padding: 30px;
}

.price {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.9;
  margin-bottom: 26px;
}

.price span {
  color: var(--pink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-left: 6px;
  text-transform: uppercase;
}

.pricing-panel ul {
  border-bottom: 1px solid rgba(251, 248, 245, 0.16);
  border-top: 1px solid rgba(251, 248, 245, 0.16);
  list-style: none;
  margin: 0 0 26px;
  padding: 12px 0;
}

.pricing-panel li {
  color: rgba(251, 248, 245, 0.78);
  padding: 10px 0;
}

.join-section {
  background: var(--warm);
  max-width: none;
}

.join-section > * {
  max-width: 560px;
}

.join-copy {
  justify-self: end;
}

.join-form {
  display: grid;
  gap: 18px;
  width: min(100%, 520px);
}

.join-form label,
.join-form legend {
  color: rgba(251, 248, 245, 0.76);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-form input[type="text"],
.join-form input[type="email"] {
  background: rgba(251, 248, 245, 0.1);
  border: 1px solid rgba(251, 248, 245, 0.24);
  color: var(--ivory);
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

.join-form input::placeholder {
  color: rgba(251, 248, 245, 0.45);
}

.join-form fieldset {
  border: 1px solid rgba(251, 248, 245, 0.24);
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 18px;
}

.join-form fieldset label {
  align-items: center;
  display: flex;
  gap: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.join-form input[type="checkbox"] {
  accent-color: var(--pink);
  height: 18px;
  width: 18px;
}

.join-form .button {
  border: 0;
  cursor: pointer;
  width: 100%;
}

.form-note {
  color: var(--pink);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  min-height: 22px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

.site-footer p {
  color: var(--slate);
  margin: 0;
}

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

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero-content {
    padding: 148px 24px 96px;
  }

  .photo-credit {
    left: 24px;
  }

  .proof-band,
  .intro-grid,
  .preview-board,
  .dashboard-section,
  .event-list,
  .pricing-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-bottom: 1px solid rgba(251, 248, 245, 0.17);
    border-right: 0;
  }

  .list-rows article {
    grid-template-columns: 52px 1fr;
  }

  .list-rows p:last-child {
    grid-column: 2;
  }

  .preview-tabs {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    overflow-x: auto;
  }

  .event-list article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .join-copy {
    justify-self: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand strong {
    font-size: 18px;
  }

  .mobile-nav {
    padding: 64px 18px 18px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 128px 18px 88px;
  }

  h1 {
    font-size: clamp(46px, 13.2vw, 56px);
    line-height: 0.92;
  }

  .hero-line {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .photo-credit {
    bottom: 12px;
    font-size: 10px;
    left: 18px;
  }

  .intro-section,
  .list-system,
  .inside-section,
  .dashboard-section,
  .events-section,
  .pricing-section,
  .join-section,
  .site-footer {
    padding: 64px 18px;
  }

  h2 {
    font-size: 42px;
  }

  .intro-grid p,
  .pricing-copy p,
  .dashboard-copy p,
  .join-copy p {
    font-size: 16px;
  }

  .list-rows article {
    gap: 14px;
    grid-template-columns: 46px 1fr;
    padding: 24px 0;
  }

  .list-rows h3 {
    font-size: 34px;
  }

  .list-rows p:last-child {
    font-size: 15px;
  }

  .preview-board,
  .dashboard-mock,
  .pricing-panel,
  .join-form {
    padding: 20px;
  }

  .preview-card h4 {
    font-size: 18px;
  }

  .mock-top span:first-child {
    font-size: 34px;
  }

  .price {
    font-size: 68px;
  }
}
