:root {
  --color-black: #0c0b09;
  --color-white: #ffffff;
  --color-cream: #f8f5ee;
  --color-gold: #b79a5a;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 74px);
  background: transparent;
  color: var(--color-white);
  transition: height 350ms ease, background 350ms ease, box-shadow 350ms ease, color 350ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 72px;
  background: rgb(255 255 255 / 88%);
  color: var(--color-black);
  border-bottom: 1px solid rgb(183 154 90 / 18%);
  box-shadow: 0 18px 50px rgb(12 11 9 / 8%);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-mark img,
.mobile-logo,
.hero-logo,
.footer img {
  object-fit: cover;
  border-radius: 50%;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  border: 1px solid rgb(183 154 90 / 22%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 250ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover {
  color: var(--color-gold);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  position: relative;
  z-index: 70;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 8px auto;
  background: currentColor;
  transition: transform 300ms ease;
}

.menu-button.active span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button.active span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 88px 24px 54px;
  background: var(--color-white);
  color: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 6vw, 34px);
}

.mobile-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border: 1px solid rgb(183 154 90 / 24%);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(42px, 12vw, 78px);
  font-weight: 500;
  line-height: 0.95;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 54px;
  width: 96px;
  height: 1px;
  background: var(--color-gold);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 22px 82px;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgb(0 0 0 / 6%), rgb(0 0 0 / 34%) 74%),
    linear-gradient(180deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 34%) 48%, rgb(0 0 0 / 54%));
}

.hero-content {
  width: min(100%, 980px);
}

.hero-logo {
  width: clamp(94px, 10vw, 140px);
  height: clamp(94px, 10vw, 140px);
  margin: 0 auto clamp(24px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 34%);
  box-shadow: 0 22px 70px rgb(0 0 0 / 24%);
}

.hero h1,
.hero-tagline,
.brand-statement h2,
.section-heading h2,
.craft-copy h2,
.collection-panel h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(62px, 11vw, 156px);
  line-height: 0.86;
}

.hero-tagline {
  margin-top: clamp(12px, 2vw, 20px);
  color: var(--color-gold);
  font-size: clamp(25px, 4vw, 54px);
  line-height: 1;
}

.hero-line {
  margin: 24px auto 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 76%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--color-gold), transparent);
}

.section-padding {
  padding: clamp(92px, 12vw, 172px) clamp(22px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8b7139;
}

.statement-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement h2 {
  color: var(--color-black);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
}

.brand-statement p:last-child {
  max-width: 690px;
  margin: 30px auto 0;
  color: #55504a;
  font-size: 18px;
  line-height: 1.85;
}

.section-heading {
  padding: clamp(84px, 10vw, 124px) 24px 52px;
  text-align: center;
}

.section-heading h2 {
  color: var(--color-black);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
}

.collection-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 82vh;
  height: 82svh;
  min-height: clamp(620px, 82vh, 900px);
  max-height: 920px;
  padding: clamp(34px, 5vw, 78px);
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.collection-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.collection-women img {
  object-position: 50% 50%;
}

.collection-purses img {
  object-position: 48% 50%;
}

.collection-shoes img,
.collection-sandals img {
  object-position: 50% 54%;
}

.collection-belts img {
  object-position: 50% 48%;
}

.collection-wallets img {
  object-position: 50% 52%;
}

.collection-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 54%), rgb(0 0 0 / 16%) 48%, rgb(0 0 0 / 8%)),
    linear-gradient(180deg, transparent 44%, rgb(0 0 0 / 52%));
  pointer-events: none;
}

.collection-panel::after {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 28%);
  pointer-events: none;
}

.collection-panel:hover img {
  transform: scale(1.04);
}

.collection-copy {
  position: relative;
  z-index: 3;
  max-width: min(780px, 92%);
  text-shadow: 0 24px 70px rgb(0 0 0 / 48%);
}

.collection-copy span {
  display: inline-block;
  color: #dcc17c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.collection-panel h3 {
  margin-top: 14px;
  font-size: clamp(50px, 8vw, 126px);
  line-height: 0.9;
}

.craftsmanship {
  background: var(--color-cream);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(42px, 6vw, 82px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.craft-copy h2 {
  color: var(--color-black);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
}

.craft-text p {
  margin: 0;
  color: #55504a;
  font-size: 19px;
  line-height: 1.9;
}

.gold-line {
  width: 128px;
  height: 1px;
  margin-top: 36px;
  background: var(--color-gold);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 24px;
  border-top: 1px solid rgb(183 154 90 / 18%);
  text-align: center;
}

.footer img {
  width: 58px;
  height: 58px;
  border: 1px solid rgb(183 154 90 / 22%);
}

.footer strong {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 5px;
}

.footer p {
  margin: 8px 0 10px;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.footer a {
  color: #8b7139;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer small {
  margin-top: 24px;
  color: #77716a;
  font-size: 12px;
}

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

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

.hero-content.reveal {
  transform: translateY(20px);
  transition-duration: 1100ms;
}

@media (max-width: 980px) {
  .hero {
    height: 100svh;
    min-height: 720px;
  }

  .collection-panel {
    height: 76svh;
    min-height: 600px;
    max-height: 780px;
  }

  .collection-women img,
  .collection-purses img {
    object-position: 52% 50%;
  }

  .craft-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .brand-mark img {
    width: 48px;
    height: 48px;
  }

  .hero {
    height: 100svh;
    min-height: 620px;
    padding: 104px 20px 74px;
  }

  .hero-bg {
    object-position: 50% 50%;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .hero-line {
    max-width: 320px;
  }

  .brand-statement p:last-child,
  .craft-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .section-heading {
    padding: 82px 20px 38px;
  }

  .collection-panel {
    height: 70svh;
    min-height: 520px;
    max-height: 680px;
    padding: 34px 24px;
  }

  .collection-panel img {
    object-position: 50% 50%;
  }

  .collection-women img,
  .collection-purses img,
  .collection-shoes img,
  .collection-sandals img,
  .collection-belts img,
  .collection-wallets img {
    object-position: 50% 50%;
  }

  .collection-panel::before {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 58%) 72%),
      linear-gradient(90deg, rgb(0 0 0 / 22%), transparent);
  }

  .collection-panel h3 {
    font-size: clamp(42px, 14vw, 68px);
    line-height: 0.95;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 600px;
  }

  .hero-logo {
    width: 84px;
    height: 84px;
  }

  .hero h1 {
    font-size: clamp(48px, 17vw, 70px);
  }

  .hero-tagline {
    font-size: clamp(24px, 9vw, 34px);
  }

  .collection-panel {
    height: 68svh;
    min-height: 500px;
    padding: 30px 20px;
  }

  .collection-copy {
    max-width: 100%;
  }

  .collection-panel h3 {
    font-size: clamp(38px, 13.5vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .collection-panel:hover img {
    transform: none;
  }
}
