:root {
  --green: #1d2b22;
  --slate: #2f3333;
  --leather: #7a4a2f;
  --off-white: #f2efea;
  --concrete: #a7a9a6;
  --black: #171717;
  --white: #ffffff;
  --line: rgba(23, 23, 23, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

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

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

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  grid-template-columns: 320px 1fr auto;
  left: 0;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 64px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 200ms ease, color 200ms ease, backdrop-filter 200ms ease, padding 200ms ease;
  width: 100%;
  z-index: 10;
}

.site-header.is-scrolled {
  backdrop-filter: blur(16px);
  background: rgba(242, 239, 234, 0.88);
  color: var(--black);
  padding-block: 16px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  justify-self: start;
  min-width: 0;
}

.brand img {
  aspect-ratio: 1;
  background: var(--black);
  border: 1px solid rgba(242, 239, 234, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  height: 88px;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: height 260ms ease, width 260ms ease, opacity 220ms ease, transform 260ms ease,
    border-color 200ms ease, box-shadow 200ms ease;
  width: 88px;
}

.site-header.is-scrolled .brand img {
  border-color: transparent;
  box-shadow: none;
  height: 0;
  opacity: 0;
  transform: scale(0.72);
  width: 0;
}

.site-footer .brand img {
  border-color: rgba(242, 239, 234, 0.24);
  box-shadow: none;
  height: 88px;
  width: 88px;
}

.brand-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.brand-copy small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.site-header .brand-copy {
  opacity: 0.9;
  transition: opacity 220ms ease, transform 260ms ease;
}

.site-header .brand-copy strong {
  font-size: 24px;
}

.site-header .brand-copy small {
  font-size: 9px;
}

.site-header.is-scrolled .brand-copy {
  opacity: 1;
  transform: translateX(-2px);
}

.site-header.is-scrolled .brand-copy strong {
  font-size: 25px;
}

.desktop-nav {
  display: flex;
  gap: 56px;
  justify-content: center;
}

.desktop-nav a,
.site-footer nav a,
.text-link,
.arrow-link,
.product-card a,
.instagram {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after,
.site-footer nav a::after,
.text-link::after,
.arrow-link::after {
  background: currentColor;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after,
.text-link:hover::after,
.arrow-link:hover::after {
  transform: scaleX(1);
}

.outline-button,
.primary-button,
.newsletter button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 1.6px;
  min-height: 40px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.is-scrolled .outline-button {
  border-color: rgba(23, 23, 23, 0.35);
}

.primary-button,
.newsletter button {
  background: var(--white);
  color: var(--black);
}

.outline-button:hover,
.primary-button:hover,
.newsletter button:hover {
  transform: translateY(-2px) scale(1.02);
}

.menu-button {
  background: transparent;
  border: 0;
  color: currentColor;
  display: none;
  height: 40px;
  padding: 8px;
  width: 40px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 1px;
  margin: 6px 0;
  width: 24px;
}

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

.hero picture,
.hero img,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero img {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 11, 10, 0.62), rgba(8, 11, 10, 0.28) 48%, rgba(8, 11, 10, 0.38)),
    rgba(8, 11, 10, 0.1);
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 112px;
  grid-template-columns: 80px minmax(0, 520px);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 100vh;
  padding: 104px 64px 64px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  margin: 0 0 24px;
}

.hero p {
  font-size: 17px;
  margin: 0 0 32px;
  max-width: 420px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.slide-index {
  align-items: start;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.slide-index strong,
.hero-dots strong,
.hero-dots em {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}

.slide-index span {
  background: rgba(255, 255, 255, 0.45);
  height: 96px;
  width: 1px;
}

.hero-dots {
  bottom: 32px;
  display: none;
  gap: 18px;
  left: 32px;
  position: absolute;
  z-index: 1;
}

.hero-dots span {
  background: rgba(255, 255, 255, 0.45);
  height: 1px;
  margin-top: 8px;
  width: 28px;
}

.hero-dots em {
  color: rgba(255, 255, 255, 0.58);
}

.section {
  margin: 0 auto;
  max-width: 1320px;
  padding: 40px 64px;
}

.manifesto {
  padding-top: 56px;
}

.section-grid {
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 16px;
  letter-spacing: 2px;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow::after {
  background: var(--line);
  content: "";
  height: 1px;
  width: 42px;
}

.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  max-width: 560px;
}

.manifesto-copy {
  padding-top: 30px;
}

.manifesto-copy p {
  margin: 0;
  max-width: 430px;
}

.manifesto-copy span {
  display: block;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 20px;
  margin-top: 24px;
}

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

.arrow-link::after {
  bottom: -6px;
}

.arrow-link {
  white-space: nowrap;
}

.product-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card,
.journal article {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.product-card {
  aspect-ratio: 1 / 0.92;
}

.product-card img,
.journal img {
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 200ms ease, opacity 200ms ease;
  width: 100%;
}

.product-card::after,
.journal article::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.64));
  content: "";
  inset: 0;
  position: absolute;
}

.product-card div {
  bottom: 24px;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.product-card h3 {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.05;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-card:hover img,
.journal article:hover img {
  opacity: 0.95;
  transform: scale(1.03);
}

.philosophy {
  border-top: 0;
}

.philosophy > .eyebrow {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.philosophy article {
  min-height: 180px;
  padding: 32px 32px 16px;
  text-align: center;
}

.philosophy article + article {
  border-left: 1px solid var(--line);
}

.philosophy svg {
  fill: none;
  height: 40px;
  margin-bottom: 24px;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 40px;
}

.philosophy h3 {
  font-size: 12px;
  letter-spacing: 1.6px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.philosophy article p {
  font-size: 12px;
  margin: 0 auto;
  max-width: 220px;
}

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

.journal article {
  aspect-ratio: 2.35 / 1;
  min-height: 0;
}

.journal h3 {
  bottom: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  left: 24px;
  line-height: 1.05;
  margin: 0;
  max-width: 250px;
  position: absolute;
  z-index: 1;
}

.newsletter {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr minmax(320px, 460px);
  margin-top: 8px;
  padding: 32px max(64px, calc((100vw - 1320px) / 2 + 64px));
}

.newsletter h2 {
  font-size: 13px;
  letter-spacing: 2px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.newsletter p {
  margin: 0;
  max-width: 420px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 108px;
}

.newsletter input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  min-height: 48px;
  padding: 0 18px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter button {
  border: 0;
  cursor: pointer;
  min-height: 48px;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto auto;
  padding: 40px max(64px, calc((100vw - 1320px) / 2 + 64px)) 32px;
}

.site-footer nav {
  display: flex;
  gap: 56px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  grid-column: 1 / -1;
  letter-spacing: 3px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.sr-only {
  height: 1px;
  left: -999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 24px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header .brand {
    gap: 12px;
  }

  .brand img {
    height: 64px;
    width: 64px;
  }

  .site-header.is-scrolled .brand img {
    height: 0;
    width: 0;
  }

  .site-footer .brand img {
    height: 80px;
    width: 80px;
  }

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

  .site-header .brand-copy strong,
  .site-header.is-scrolled .brand-copy strong {
    font-size: 20px;
  }

  .site-header .brand-copy small {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .hero-content {
    align-items: center;
    display: flex;
    padding: 96px 32px 96px;
  }

  .slide-index {
    display: none;
  }

  .hero-dots {
    display: flex;
  }

  .hero h1 {
    font-size: 46px;
  }

  .section {
    padding: 32px 24px;
  }

  .section-grid,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 8px;
  }

  .manifesto-copy {
    padding-top: 0;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(116px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .product-card {
    aspect-ratio: 1 / 1.18;
  }

  .product-card div {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .product-card h3 {
    font-size: 12px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .philosophy article {
    min-height: auto;
    padding: 24px 0;
  }

  .philosophy article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal article:not(:first-child) {
    display: none;
  }

  .journal article {
    aspect-ratio: 2.4 / 1;
  }

  .newsletter {
    gap: 24px;
    padding: 32px 24px;
  }

  .site-footer {
    align-items: start;
    padding: 32px 24px;
  }

  .site-footer nav {
    gap: 32px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header .brand-copy strong,
  .site-header.is-scrolled .brand-copy strong {
    font-size: 18px;
  }

  .site-header .brand-copy small {
    font-size: 7px;
    letter-spacing: 1.4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding-inline: 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 14px;
    max-width: 280px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .primary-button {
    min-height: 48px;
    padding-inline: 22px;
  }

  .manifesto h2 {
    font-size: 27px;
  }

  .section-title {
    gap: 16px;
  }

  .section-title .eyebrow {
    margin-bottom: 0;
  }

  .arrow-link {
    font-size: 9px;
  }

  .newsletter form {
    grid-template-columns: 1fr 78px;
  }
}
