:root {
  --ink: #15120e;
  --ink-soft: #3a332b;
  --paper: #f7efe2;
  --paper-clean: #fffaf2;
  --chalk: #eee2cf;
  --line: rgba(21, 18, 14, 0.16);
  --olive: #50533b;
  --olive-deep: #2f3325;
  --burgundy: #6f1f2d;
  --gold: #b99258;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(21, 18, 14, 0.18);
  --radius: 8px;
  --space: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.coming-soon {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper-clean);
}

.soon-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 42px;
}

.soon-image,
.soon-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.soon-image {
  object-fit: cover;
  object-position: 32% center;
}

.soon-shade {
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.52) 0%, rgba(21, 18, 14, 0.72) 46%, rgba(21, 18, 14, 0.92) 100%),
    linear-gradient(0deg, rgba(21, 18, 14, 0.76) 0%, rgba(21, 18, 14, 0.08) 64%);
}

.soon-header,
.soon-content,
.soon-footer {
  position: relative;
  z-index: 1;
}

.soon-header {
  position: absolute;
  top: 34px;
  left: 42px;
  right: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.soon-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.soon-place {
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.soon-content {
  width: min(680px, 100%);
  margin-left: auto;
  padding: 120px 0 72px;
}

.soon-content h1 {
  margin-bottom: 10px;
  font-size: 6.2rem;
}

.soon-content h2 {
  margin-bottom: 22px;
  color: var(--paper-clean);
  font-size: 3.7rem;
}

.soon-content .eyebrow {
  color: var(--gold);
}

.soon-content p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.16rem;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.soon-footer {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.82rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper-clean);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px 42px;
  color: var(--paper-clean);
  transition:
    background 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 239, 226, 0.95);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-clean);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(270deg, rgba(21, 18, 14, 0.88) 0%, rgba(21, 18, 14, 0.56) 42%, rgba(21, 18, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(21, 18, 14, 0.7) 0%, rgba(21, 18, 14, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 42px 98px auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.band-dark .eyebrow,
.band-olive .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  margin-bottom: 24px;
  font-size: 5.8rem;
}

h2 {
  margin-bottom: 24px;
  font-size: 3.15rem;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.88);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease);
}

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

.button-light {
  background: var(--paper-clean);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 250, 242, 0.58);
  color: var(--paper-clean);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-clean);
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 1;
  width: min(320px, calc(100% - 84px));
  padding-top: 16px;
  border-top: 1px solid rgba(255, 250, 242, 0.42);
}

.hero-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-image {
  object-position: 34% center;
}

section {
  scroll-margin-top: 90px;
}

.band-light,
.contact {
  background: var(--paper-clean);
}

.intro,
.brands,
.journal,
.contact {
  padding: 112px 42px;
}

.intro-grid,
.brands-head,
.brand-grid,
.journal-head,
.journal-grid,
.contact-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: start;
}

.intro-copy p {
  max-width: 670px;
  color: var(--ink-soft);
}

.principles {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principles div {
  padding: 28px;
  background: var(--paper-clean);
}

.principles span,
.brand-card span,
.journal-card span,
.mood-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.principles strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.principles p,
.brand-card p,
.journal-card p,
.mood-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.trend-editorial {
  display: grid;
  grid-template-columns: minmax(340px, 45%) 1fr;
  min-height: 760px;
  background: var(--chalk);
}

.trend-media {
  min-height: 760px;
}

.trend-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.trend-panel {
  align-self: center;
  width: min(640px, calc(100% - 84px));
  margin-inline: auto;
  padding: 92px 0;
}

.trend-panel > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.mood-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 18px;
}

.mood-tabs button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(21, 18, 14, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.mood-tabs button[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-clean);
}

.mood-card {
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(21, 18, 14, 0.16);
  border-radius: var(--radius);
  background: var(--paper-clean);
  box-shadow: var(--shadow);
}

.mood-card h3 {
  max-width: 520px;
}

.band-dark {
  background: var(--ink);
  color: var(--paper-clean);
}

.brands-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.brands-head h2 {
  margin-bottom: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 250, 242, 0.2);
  border: 1px solid rgba(255, 250, 242, 0.2);
}

.brand-card {
  min-height: 280px;
  padding: 32px;
  background: #201c16;
}

.brand-card span,
.band-dark .brand-card span {
  color: var(--gold);
}

.brand-card p,
.band-dark .brand-card p {
  color: rgba(255, 250, 242, 0.74);
}

.luciana {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 72px;
  align-items: center;
  padding: 112px 42px;
  background: var(--paper);
}

.luciana-copy {
  width: min(660px, 100%);
  justify-self: end;
}

.luciana-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.luciana-figure {
  margin: 0;
}

.luciana-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 52%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.luciana-figure figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.band-olive {
  background: var(--olive-deep);
  color: var(--paper-clean);
}

.journal-head {
  margin-bottom: 52px;
}

.journal-head h2 {
  width: min(780px, 100%);
}

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

.journal-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.06);
}

.journal-card span {
  color: var(--gold);
}

.journal-card p {
  color: rgba(255, 250, 242, 0.76);
}

.contact {
  min-height: 520px;
  display: grid;
  align-items: center;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 52px;
  align-items: end;
}

.contact-inner h2 {
  margin-bottom: 0;
}

.contact-inner p:not(.eyebrow) {
  color: var(--ink-soft);
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  padding: 28px 42px;
  background: var(--ink);
  color: rgba(255, 250, 242, 0.74);
  font-size: 0.84rem;
}

.site-footer span:first-child {
  color: var(--paper-clean);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: reveal-in 520ms var(--ease) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .soon-page {
    padding: 24px;
  }

  .soon-header {
    top: 22px;
    left: 24px;
    right: 24px;
  }

  .soon-image {
    object-position: 27% center;
  }

  .soon-shade {
    background:
      linear-gradient(0deg, rgba(21, 18, 14, 0.9) 0%, rgba(21, 18, 14, 0.52) 58%, rgba(21, 18, 14, 0.24) 100%),
      linear-gradient(90deg, rgba(21, 18, 14, 0.22) 0%, rgba(21, 18, 14, 0.72) 100%);
  }

  .soon-content {
    margin-left: 0;
    padding: 360px 0 92px;
  }

  .soon-content h1 {
    font-size: 4.4rem;
  }

  .soon-content h2 {
    font-size: 2.7rem;
  }

  .soon-footer {
    left: 24px;
    right: 24px;
    bottom: 22px;
  }

  .site-header {
    padding: 14px 22px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 18px;
    background: var(--paper-clean);
    color: var(--ink);
    font-size: 1rem;
    transform: translateY(-100%);
    transition: transform 260ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 44px);
    margin: 0 22px 120px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-note {
    left: 22px;
    right: 22px;
    bottom: 28px;
    width: auto;
  }

  .hero-image {
    object-position: 36% center;
  }

  .intro,
  .brands,
  .journal,
  .contact,
  .luciana {
    padding: 76px 22px;
  }

  .intro-grid,
  .brands-head,
  .luciana,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .trend-editorial {
    grid-template-columns: 1fr;
  }

  .trend-media {
    min-height: 430px;
  }

  .trend-panel {
    width: calc(100% - 44px);
    padding: 62px 0 74px;
  }

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

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .soon-page {
    min-height: 100svh;
  }

  .soon-brand {
    font-size: 1.18rem;
  }

  .soon-place {
    display: none;
  }

  .soon-image {
    object-position: 28% center;
  }

  .soon-content {
    padding-top: 300px;
  }

  .soon-content h1 {
    font-size: 3.35rem;
  }

  .soon-content h2 {
    font-size: 2.05rem;
  }

  .soon-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .soon-actions .button {
    width: auto;
  }

  .soon-footer {
    display: grid;
  }

  body {
    font-size: 15px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-content {
    margin-bottom: 138px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .mood-card,
  .brand-card,
  .journal-card,
  .principles div {
    padding: 24px;
  }

  .mood-tabs button {
    flex: 1 1 0;
    padding-inline: 10px;
  }

  .site-footer {
    padding: 24px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
