:root {
  --bg: #0b0b0c;
  --bg-soft: #111214;
  --panel: rgba(10, 10, 11, 0.68);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --muted-dark: #5f646c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(14, 14, 15, 0.10);
  --accent: #d8b07a;
  --accent-2: #f0d8b2;
  --surface: #ffffff;
  --surface-2: #f7f6f4;
  --title: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
  --shadow-xl: 0 28px 60px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 30px rgba(0, 0, 0, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: min(1440px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--surface-2);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin: 0 auto; }

.announcement-bar {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #f6efe6;
  font-size: 13px;
  letter-spacing: .03em;
}
.announcement-inner {
  min-height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.announcement-item:nth-child(2) { justify-self: center; }
.announcement-item:nth-child(3) { justify-self: end; }
.mini-icon { width: 16px; height: 16px; display: inline-grid; place-items: center; color: var(--accent); flex: 0 0 16px; }
.mini-icon svg { stroke-width: 1.6; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,16,18,.08);
}
.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #111;
  font-family: var(--title);
  font-weight: 800;
  line-height: 1;
}
.brand-34 { font-size: 56px; letter-spacing: -0.06em; }
.brand-street { font-size: 28px; letter-spacing: -0.06em; transform: translateY(4px); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.main-nav a {
  color: #191919;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color .25s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.main-nav a:hover { color: #000; }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.search-box {
  display: flex;
  align-items: center;
  width: 280px;
  height: 50px;
  border-radius: 14px;
  background: #f3f1ed;
  border: 1px solid rgba(15,15,18,.08);
  overflow: hidden;
}
.search-box input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #17181b;
  padding: 0 16px;
  font-size: 14px;
}
.search-box input::placeholder { color: #80848c; }
.search-box button {
  width: 52px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #111;
  padding: 14px;
}
.quick-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.quick-icons a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0e0f12;
  transition: background .25s ease, transform .25s ease;
  position: relative;
}
.quick-icons a:hover { background: #f3f1ed; transform: translateY(-1px); }
.quick-icons a svg { width: 22px; height: 22px; stroke-width: 1.9; }
.cart-link { margin-left: 2px; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0f1012;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 4px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15,15,18,.10);
  background: #f3f1ed;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-image: url('../img/hero-34street.png');
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,5,6,.96) 0%, rgba(7,7,8,.84) 32%, rgba(7,7,8,.48) 58%, rgba(7,7,8,.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.18) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 64px 0 56px;
}
.hero-copy {
  max-width: 580px;
  padding: 12px 0;
}
.hero-eyebrow {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #dfc7a4;
}
.hero-copy h1 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(52px, 6vw, 86px);
  line-height: .96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 8ch;
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-description {
  margin: 22px 0 0;
  max-width: 530px;
  font-size: 24px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #e2c095 0%, #cda06b 100%);
  color: #121212;
  box-shadow: 0 12px 30px rgba(205, 160, 107, 0.22);
}
.btn-secondary {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: rgba(255,255,255,.48); }

.hero-card {
  width: min(100%, 290px);
  justify-self: end;
  padding: 28px 24px 28px;
  border-radius: 22px;
  border: 1px solid rgba(216,176,122,.42);
  background: linear-gradient(180deg, rgba(7,7,8,.76) 0%, rgba(12,12,13,.74) 100%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-xl);
}
.hero-card-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-card-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--title);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero-card h2 {
  margin: 0;
  font-family: var(--title);
  font-size: 34px;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero-card-divider {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(216,176,122,.12) 100%);
  margin: 22px 0 18px;
}
.hero-card-note {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  font-size: 16px;
}

.hero-slider-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  justify-self: end;
}
.hero-dots {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-dot {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.48);
  font-family: var(--title);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: color .25s ease, transform .25s ease;
}
.hero-dot.active,
.hero-dot:hover { color: #fff; transform: translateX(-4px); }
.hero-next {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
  padding: 18px;
  transition: transform .25s ease, background .25s ease;
}
.hero-next:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }

.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(17,17,18,.07);
  border-bottom: 1px solid rgba(17,17,18,.07);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #121315;
}
.trust-icon {
  width: 34px;
  height: 34px;
  color: #151619;
  flex: 0 0 34px;
}
.trust-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}
.trust-item span {
  display: block;
  margin-top: 3px;
  color: #666c73;
  font-size: 13px;
}

@media (max-width: 1280px) {
  :root { --container: min(100% - 40px, 1280px); }
  .nav-wrap { gap: 28px; }
  .main-nav { gap: 24px; }
  .search-box { width: 220px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 300px auto; }
  .hero-copy h1 { font-size: clamp(46px, 5vw, 74px); }
  .hero-description { font-size: 21px; }
}

@media (max-width: 1100px) {
  .announcement-inner { grid-template-columns: 1fr 1fr; }
  .announcement-item:nth-child(2) { justify-self: end; }
  .hide-md { display: none; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .main-nav {
    position: fixed;
    top: 132px;
    right: 20px;
    width: min(360px, calc(100% - 40px));
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(17,17,18,.08);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a::after { bottom: -4px; }
  .search-box { width: min(300px, 40vw); }
  .menu-toggle { display: inline-block; }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy slider"
      "card slider";
    align-items: start;
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .hero-copy { grid-area: copy; }
  .hero-card { grid-area: card; justify-self: start; margin-top: 28px; }
  .hero-slider-ui { grid-area: slider; align-self: center; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --container: calc(100% - 28px); }
  .announcement-inner { grid-template-columns: 1fr; justify-items: center; padding: 8px 0; }
  .announcement-item:nth-child(2),
  .announcement-item:nth-child(3) { justify-self: center; }
  .hide-sm { display: none; }
  .nav-wrap {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    min-height: 78px;
  }
  .brand-34 { font-size: 46px; }
  .brand-street { font-size: 22px; }
  .search-box { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "card"
      "slider";
    min-height: auto;
    padding: 44px 0 42px;
    gap: 24px;
  }
  .hero-bg { background-position: 64% center; }
  .hero-copy h1 { max-width: 7ch; }
  .hero-description { font-size: 18px; max-width: 460px; }
  .hero-card {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
  .hero-slider-ui {
    justify-self: start;
    flex-direction: row;
    gap: 16px;
  }
  .hero-dots { flex-direction: row; }
  .hero-dot.active,
  .hero-dot:hover { transform: translateY(-2px); }
  .hero-next { width: 56px; height: 56px; padding: 16px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .trust-item { align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { top: 0; }
  .nav-wrap { min-height: 74px; }
  .brand-34 { font-size: 38px; }
  .brand-street { font-size: 18px; transform: translateY(3px); }
  .quick-icons a { width: 38px; height: 38px; }
  .main-nav { top: 118px; right: 14px; width: calc(100% - 28px); }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 56px); }
  .hero-description { font-size: 16px; line-height: 1.6; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-card-label { font-size: 13px; }
  .hero-card h2 { font-size: 28px; }
  .hero-card-note { font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr; padding: 24px 0; }
}
