*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-surface: #1a1a1a;
  --color-gold: #c9a962;
  --color-gold-light: #dfc88a;
  --color-text: #f5f0e8;
  --color-text-muted: #9a9590;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.section--dark {
  background: var(--color-bg-alt);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 480px;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-desc {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: rgba(201, 169, 98, 0.35);
}

.btn--ghost:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.5rem;
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
}

.logo--footer img {
  height: 36px;
}

.header--scrolled .logo img {
  height: 38px;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text);
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture,
.heritage__bg picture,
.about__image picture,
.craft__image picture,
.collection-card__image picture {
  display: block;
}

.hero__bg picture,
.heritage__bg picture {
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 4rem;
  max-width: 640px;
}

.hero__tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__content p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about__stats span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about__image {
  position: relative;
}

.about__image::before {
  content: '';
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-gold);
  opacity: 0.3;
  z-index: -1;
}

.about__image picture,
.about__image img {
  width: 100%;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.collections__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.collection-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.collection-card:nth-child(even) .collection-card__image {
  order: 2;
}

.collection-card__image {
  overflow: hidden;
}

.collection-card__image picture,
.collection-card__image img {
  width: 100%;
}

.collection-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}

.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.collection-card__body h3 span {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.collection-card__meta {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.1rem;
}

.collection-card__body > p:not(.collection-card__meta) {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.craft__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.craft__image picture,
.craft__image img {
  width: 100%;
}

.craft__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--color-gold);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.feature p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.heritage {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.heritage__bg {
  position: absolute;
  inset: 0;
}

.heritage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.heritage__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.heritage__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.heritage__sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.closing__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.closing__inner p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.footer {
  padding-block: 3rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.footer__disclaimer {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.75;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal--delay-2 {
  transition-delay: 0.3s;
}

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

@media (max-width: 900px) {
  .about__grid,
  .craft__grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-card:nth-child(even) .collection-card__image {
    order: 0;
  }

  .craft__image {
    order: -1;
  }

  .about__stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 80vw);
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(201, 169, 98, 0.1);
  }

  .nav.open {
    transform: translateX(0);
  }

  .burger {
    display: flex;
    z-index: 101;
  }

  .burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }

  .burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

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

  .footer__links {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .hero__scroll {
    display: none;
  }
}
