:root {
  --bg: #f7f2eb;
  --surface: rgba(255, 253, 249, 0.82);
  --surface-solid: #fffdf9;
  --surface-soft: #f2ebe3;
  --text: #211b17;
  --muted: #6f655e;
  --line: rgba(33, 27, 23, 0.08);
  --accent-dark: #8b6641;
  --shadow-soft: 0 10px 30px rgba(25, 18, 11, 0.05);
  --shadow-medium: 0 18px 52px rgba(25, 18, 11, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(205, 176, 136, 0.12), transparent 26%),
    linear-gradient(to bottom, #f8f3ed, #f5efe8 40%, #f7f2eb);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.2rem, 6.2vw, 4.1rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.72rem;
}

h4 {
  font-size: 1.42rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0 0;
  background: linear-gradient(to bottom, rgba(247, 242, 235, 0.94), rgba(247, 242, 235, 0.68));
  backdrop-filter: blur(14px);
}

.nav-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c7a06a, #9f7649);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(159, 118, 73, 0.2);
}

.brand-text {
  min-width: 0;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(33, 27, 23, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-btn,
.menu-btn,
.favorite-btn {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.menu-btn:hover,
.favorite-btn:hover,
.btn:hover,
.product-card:hover,
.collection-card:hover,
.hero-floating-card:hover {
  transform: translateY(-1px);
}

.icon-btn,
.menu-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(32, 24, 17, 0.06);
  backdrop-filter: blur(10px);
}

.icon-heart {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
}

.favorites-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1e1814;
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.menu-btn {
  padding: 0;
}

.menu-line {
  position: absolute;
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--text);
  left: 50%;
  transform: translateX(-50%);
}

.menu-line:nth-child(1) { top: 16px; }
.menu-line:nth-child(2) { top: 22px; }
.menu-line:nth-child(3) { top: 28px; }
.menu-line.short { width: 12px; }

.mobile-menu {
  display: none;
  padding: 6px 16px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 13px 4px;
  color: var(--muted);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(33, 27, 23, 0.05);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  padding: 28px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  order: 2;
}

.hero-visual {
  order: 1;
  position: relative;
}

.hero-text {
  max-width: 38rem;
  margin-bottom: 26px;
  font-size: 1rem;
}

.hero-image-frame {
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  box-shadow: var(--shadow-medium);
}

.hero-image-frame img {
  transition: transform 0.5s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  margin-top: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-floating-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
}

.hero-floating-card strong {
  font-size: 1rem;
  color: var(--text);
}

.hero-floating-price {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #1f1915;
  color: white;
}

.btn-primary:hover {
  background: #14110e;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-proof div {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.hero-proof span {
  font-size: 0.92rem;
}

.trust-strip {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.collection-grid,
.product-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  transition: transform 0.25s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.06));
}

.collection-card img {
  transition: transform 0.45s ease;
}

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

.collection-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: white;
}

.collection-overlay h3 {
  margin-bottom: 8px;
  color: white;
}

.collection-overlay a {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 22px 56px rgba(25, 18, 11, 0.09);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: var(--surface-soft);
  overflow: hidden;
}

.product-image-wrap img {
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
}

.favorite-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  font-size: 20px;
}

.favorite-btn.active {
  background: #1f1915;
  color: white;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin-bottom: 8px;
}

.product-info p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--text);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.story-section {
  position: relative;
}

.split-image {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.split-copy p:not(.eyebrow) {
  margin-bottom: 18px;
  font-size: 1rem;
}

.feature-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--text);
}

.feature-list li {
  margin-bottom: 8px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}

.story-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.story-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.story-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 38px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand-block {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(33, 27, 23, 0.08);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-copy {
  max-width: 300px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-grid a:last-child {
  margin-bottom: 0;
}

.footer-grid a:hover {
  color: var(--text);
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (min-width: 480px) {
  .brand-text {
    font-size: 1rem;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .nav {
    padding: 0 22px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .hero-proof,
  .trust-items,
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 92px 0;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    border-radius: 0 0 36px 36px;
  }

  .nav {
    min-height: 88px;
    padding: 0 28px;
  }

  .brand-text {
    font-size: 1.4rem;
    overflow: visible;
    text-overflow: clip;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero {
    padding: 48px 0 76px;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-floating-card {
    position: absolute;
    left: -18px;
    bottom: 22px;
    margin-top: 0;
    min-width: 210px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .split-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
  }

  .split-image {
    min-height: 620px;
  }

  .site-footer {
    padding: 56px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 2fr;
    gap: 48px;
  }

  .footer-brand-block {
    padding-bottom: 0;
    border-bottom: 0;
  }
}