@import url("https://use.typekit.net/eol4ndc.css");
:root {
  --cream: #a78d5e;
  --burgundy: #401622;
  --soft: #fffaf2;
  --text: #2d1b22;
  --border: rgba(64, 22, 34, 0.15);
}

* {
  box-sizing: border-box;
}
h2 {
  font-size: 2rem;
}
h1,
h2,
h3 {
  margin-top: 0;
  font-family: "castoro", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
body {
  margin: 0;
  font-family: "open-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  background: linear-gradient(135deg, var(--soft), #fff);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.container.page {
  padding-bottom: 4rem;
}
.site-header {
  background: #000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

.home-page .site-header.is-scrolled {
  background: #000;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
}

a.brand:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 135px;
    background: #000;
    z-index: 0;
    top: -20px;
    left: -16px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0;
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
  margin-left: -16px;
  position: relative;
  z-index: 1;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--cream);
}

.hero {
  background: linear-gradient(120deg, rgba(254, 240, 176, 0.95), rgba(64, 22, 34, 0.95));
  color: white;
  padding: 5rem 0;
}

.hero-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr;
  align-items: center;
}

.eyebrow {
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.page h1,
.section h2 {
  margin-top: 0;
  color: var(--burgundy);
}

.hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero p {
  max-width: 65ch;
}

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

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--cream);
  color: var(--burgundy);
}

.btn-secondary {
  border-color: white;
  color: white;
}

.hero-card,
.card,
.form-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(64, 22, 34, 0.08);
}

.hero-card {
  padding: 1.5rem;
}

.section {
  padding: 3.5rem 0 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.4rem;
}

.card h3,
.form-card h2 {
  margin-top: 0;
  color: var(--burgundy);
}

.spotlight {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stats > div {
  background: oklch(0.79 0 0 / 0.39);
  color: var(--burgundy);
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem;
  text-align: left;
}

th {
  background: var(--burgundy);
  color: white;
}

.bullet-list {
  padding-left: 1.2rem;
}

.form-card {
  padding: 1.5rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(64, 22, 34, 0.12);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--burgundy);
  color: white;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

input,
textarea {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  font: inherit;
}

.site-footer {
  background: var(--burgundy);
  color: white;
  padding: 1.2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #120b09;
  margin-top: -130px;
}

.hero-slider-track {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-content {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  width: 100%;
  height: auto;
  bottom: 0;
  background: rgba(0, 0, 0, 0.56);
}

.hero-slide-overlay {
  padding: 1.5rem 0;
}

.hero-slide-overlay .eyebrow {
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.hero-slide-overlay h2 {
  margin: 0 0 0.4rem;
  color: white;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.1;
}

.hero-slide-overlay h3 {
  margin: 0 0 0.75rem;
  color: #f4e7d0;
  font-family: "open-sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-slide-overlay p {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 250, 242, 0.9);
}

.hero-slide-overlay .hero-actions {
  margin-top: 1rem;
}

.hero-slide-overlay .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.hero-slider-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.hero-slider-dot.is-active {
  background: white;
  transform: scale(1.1);
}
.smoke-bg {
  background: url("images/home/smoke.png") no-repeat center/cover;
  background-attachment: fixed;
}
.contact-page {
  background: url("images/uzan-shop.png") no-repeat center/cover;
  background-attachment: fixed;
}
.gift-bg {
  background: url("images/product-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
.gift-bg h1,.gift-bg h2 {
  color: #ffffff;
}
.contact-page h1 {
  color: #ffffff;
  max-width: 800px;
}
.contact-page .card, .contact-page .form-card {
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 800px) {
  .hero-slider {
    margin-top: -117px;
  }
  .hero-slide-content {
    justify-content: center;
    align-items: flex-end;
    text-align: left;
    padding: 0.5rem 1rem 1.7rem;
  }

  .hero-slide-overlay {
    width: 100%;
    transform: none;
  }

  .hero-slide-overlay h1 {
    max-width: none;
  }

  .hero-slide-overlay h3 {
    display: none;
  }

  .hero-content,
  .spotlight,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-bar,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-bar {
    padding: 0;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding: 0.85rem 0 0.2rem;
  }

  .site-nav.is-open {
    display: flex;
    position: absolute;
    height: 100vh;
    background-color: #000000;
    z-index: -1;
    padding: 9rem 1rem;
    text-align: center;
    width: calc(100% + 4rem);
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    left: -2rem;
  }

  .site-nav a {
    padding: 0.2rem 0;
  }

  .brand img {
    width: 120px;
    margin-left: 0;
  }
  a.brand:before {
    left: 0;
    height: 117px;
  }
}
