:root {
  --bg: #0a0a0a;
  --bg-soft: #131111;
  --panel: rgba(17, 14, 14, 0.88);
  --panel-border: rgba(203, 171, 130, 0.18);
  --text: #f3eadf;
  --text-soft: rgba(243, 234, 223, 0.72);
  --text-muted: rgba(243, 234, 223, 0.55);
  --accent: #c67635;
  --accent-strong: #ea8435;
  --accent-soft: rgba(198, 118, 53, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --max-width: 1240px;
  --header-height: 102px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(234, 132, 53, 0.1), transparent 28%),
    linear-gradient(180deg, #120f0f 0%, #090909 40%, #050505 100%);
  color: var(--text);
  background-color: #090909;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.82)),
    url("assets/image.jpg") center top / cover no-repeat;
  opacity: 0.82;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  opacity: 0.25;
  z-index: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.announcement-bar {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(243, 234, 223, 0.08);
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96), rgba(198, 118, 53, 0.16), rgba(8, 8, 8, 0.96));
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.announcement-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  min-height: var(--header-height);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(243, 234, 223, 0.08);
}

.brand-lockup {
  justify-self: start;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-logo {
  display: block;
  width: clamp(156px, 18vw, 220px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  justify-self: center;
}

.site-nav a,
.header-actions,
.text-link,
.site-footer a,
.site-footer p {
  color: var(--text-soft);
}

.site-nav a,
.text-link,
.site-footer a {
  position: relative;
  font-size: 0.92rem;
}

.site-nav a::after,
.text-link::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

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

.header-actions {
  justify-self: end;
  display: inline-flex;
  gap: 0.65rem;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  border: 1px solid rgba(243, 234, 223, 0.16);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.icon-button:hover,
.menu-toggle:hover,
.button:hover,
.collection-card:hover,
.value-card:hover {
  transform: translateY(-2px);
}

.icon-button:hover,
.menu-toggle:hover {
  border-color: rgba(234, 132, 53, 0.6);
  background: rgba(234, 132, 53, 0.1);
}

.icon-button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span + span {
  margin-top: 0.35rem;
}

.hero-section,
.brand-statement,
.collections-section,
.values-section,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 4.5rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.hero-content,
.hero-visual,
.brand-statement,
.section-heading,
.collection-card,
.values-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.eyebrow,
.floating-label {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 234, 223, 0.68);
}

.hero-content h1,
.brand-statement h2,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.98;
}

.hero-content h1 {
  max-width: 9ch;
  font-size: clamp(4.3rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: none;
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-style: italic;
}

.hero-subheadline {
  margin: 1.3rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  color: var(--text);
  font-style: italic;
}

.hero-body,
.section-heading p,
.card-content p,
.value-card p,
.site-footer p,
.brand-statement p {
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-body {
  max-width: 36rem;
  margin: 1.15rem 0 0;
  font-size: 1.02rem;
}

.hero-content .eyebrow {
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.75rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(243, 234, 223, 0.22);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.button-primary {
  background: linear-gradient(135deg, rgba(234, 132, 53, 0.26), rgba(198, 118, 53, 0.08));
  border-color: rgba(234, 132, 53, 0.45);
}

.button-secondary:hover,
.button-primary:hover {
  border-color: rgba(243, 234, 223, 0.44);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-metrics div,
.floating-card,
.collection-card,
.value-card {
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-width: 14rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--panel-border);
  border-radius: 1.3rem;
  background: rgba(12, 10, 10, 0.55);
  box-shadow: inset 0 0 0 1px rgba(234, 132, 53, 0.06);
}

.hero-metrics span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.hero-metrics strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 500px);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 234, 223, 0.1);
  background: #111;
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-frame {
  aspect-ratio: 0.85;
}

.floating-card {
  max-width: 17rem;
  margin: -5rem 0 0 auto;
  padding: 0.55rem;
  border-radius: 1.4rem;
  border: 1px solid var(--panel-border);
  background: rgba(18, 14, 14, 0.82);
  box-shadow: var(--shadow);
}

.floating-label {
  margin-bottom: 0.55rem;
}

.floating-text {
  margin: 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.brand-statement,
.collections-section,
.values-section {
  padding-top: 6rem;
  padding-bottom: 1rem;
}

.accent-script {
  margin: 0 0 0.5rem;
  font-family: "Parisienne", cursive;
  font-size: 1.7rem;
  color: rgba(234, 132, 53, 0.95);
}

.brand-statement {
  max-width: 860px;
  text-align: center;
}

.brand-statement h2,
.section-heading h2 {
  font-size: clamp(2.9rem, 5vw, 4.5rem);
}

.brand-statement p {
  margin: 0.35rem auto;
  max-width: 42rem;
  font-size: 1.05rem;
}

.statement-emphasis {
  margin-top: 0.8rem;
  color: var(--text);
  font-size: 1.22rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading p {
  margin: 0;
  max-width: 38rem;
}

.collections-grid,
.values-grid,
.footer-links {
  display: grid;
  gap: 1.35rem;
}

.collections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card {
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(243, 234, 223, 0.08);
  background: linear-gradient(180deg, rgba(22, 18, 18, 0.92), rgba(12, 10, 10, 0.92));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.collection-card:hover,
.value-card:hover {
  border-color: rgba(234, 132, 53, 0.34);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.collection-card .image-frame {
  aspect-ratio: 0.82;
  border: none;
  border-radius: 1.8rem 1.8rem 0 0;
  box-shadow: none;
}

.card-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.35rem 1.3rem 1.5rem;
}

.card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.card-meta h3,
.value-card h3,
.site-footer h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-meta h3,
.value-card h3 {
  font-size: 1.7rem;
}

.card-meta span {
  color: rgba(234, 132, 53, 0.95);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-content p {
  margin: 0.9rem 0 1.2rem;
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 234, 223, 0.08);
  background: linear-gradient(180deg, rgba(20, 16, 16, 0.78), rgba(12, 10, 10, 0.86));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card p {
  margin: 0.85rem 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2rem;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  max-width: 16rem;
}

.footer-logo {
  width: min(250px, 100%);
}

.footer-closing {
  grid-column: 1 / -1;
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 234, 223, 0.08);
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 132, 53, 0.92);
  font-size: 0.8rem;
}

.footer-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.5rem;
    left: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(243, 234, 223, 0.1);
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: center;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 540px);
  }

  .hero-content {
    max-width: 46rem;
  }

  .hero-content h1 {
    max-width: 10ch;
  }

  .hero-frame {
    aspect-ratio: 0.92;
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body::after {
    background:
      linear-gradient(rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.86)),
      url("assets/image.jpg") center top / 100% auto repeat-y;
    opacity: 0.84;
  }

  .hero-section {
    gap: 2.25rem;
    padding-top: 2.4rem;
  }

  .hero-content {
    max-width: 40rem;
  }

  .hero-content h1 {
    font-size: clamp(4.1rem, 6.8vw, 5.6rem);
    max-width: 8.5ch;
  }

  .hero-subheadline {
    max-width: 28rem;
  }

  .hero-visual {
    width: min(100%, 460px);
  }

  .hero-frame {
    aspect-ratio: 0.96;
  }

  .floating-card {
    margin-top: -2.75rem;
  }
}

@media (max-width: 900px) {
  body::after {
    background:
      linear-gradient(rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.9)),
      url("assets/image.jpg") center top / 100% auto repeat-y;
    opacity: 0.86;
  }

  .hero-section {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(3.7rem, 10vw, 5.6rem);
  }

  .hero-subheadline {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
  }

  .hero-metrics div {
    min-width: 12.5rem;
  }

  .floating-card {
    margin-top: -3.2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 86px;
  }

  .announcement-bar {
    font-size: 0.62rem;
    line-height: 1.6;
  }

  .site-header {
    gap: 0.8rem;
    padding: 1rem 1rem 1.1rem;
  }

  .site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.92);
  }

  body::before {
    opacity: 0.14;
  }

  body::after {
    background:
      linear-gradient(rgba(8, 8, 8, 0.66), rgba(8, 8, 8, 0.9)),
      url("assets/image.jpg") center top / 100% auto repeat-y;
    opacity: 0.88;
  }

  .hero-section,
  .brand-statement,
  .collections-section,
  .values-section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(3.1rem, 14vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: 0.04em;
  }

  .hero-subheadline {
    font-size: 1.28rem;
  }

  .hero-body {
    font-size: 0.96rem;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-frame {
    aspect-ratio: 0.88;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .floating-card {
    margin-top: -2.25rem;
    max-width: 14rem;
    padding: 0.8rem;
  }

  .brand-logo {
    width: 152px;
  }

  .collections-grid,
  .values-grid,
  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .card-meta {
    flex-direction: column;
  }
}

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

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

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