:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --surface-soft: #fcf8f4;
  --primary: #7a5c45;
  --secondary: #c7a489;
  --text: #1f1a17;
  --text-strong: #14110f;
  --muted: #6f655f;
  --border: #e8ddd3;
  --shadow: 0 16px 40px rgba(30, 18, 10, 0.08);
  --shadow-soft: 0 8px 22px rgba(30, 18, 10, 0.04);
  --radius: 4px;
  --radius-sm: 2px;
  --container: 1280px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
section,
footer,
header {
  overflow-x: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.text-link,
.desktop-nav a,
.mobile-nav a,
.header-actions a,
.category-copy a,
.site-footer a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.text-link:hover,
.desktop-nav a:hover,
.mobile-nav a:hover,
.header-actions a:hover,
.category-copy a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #151311;
  color: #fffaf6;
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  border-color: rgba(255, 250, 246, 0.92);
  color: #fffaf6;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 250, 246, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 243, 238, 0.96);
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(31, 26, 23, 0.12);
  box-shadow: 0 10px 24px rgba(31, 20, 13, 0.04);
  background: rgba(247, 243, 238, 0.98);
}

.header-shell {
  position: relative;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-strong);
  white-space: nowrap;
}

.logo-house {
  position: relative;
  width: 0.95rem;
  height: 0.7rem;
  border: 1.8px solid currentColor;
  border-top: 0;
  flex: 0 0 auto;
}

.logo-house::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.34rem;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 1.8px solid currentColor;
  border-left: 1.8px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  background: transparent;
}

.logo-wordmark {
  line-height: 1;
}

.desktop-nav,
.header-actions,
.mobile-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 1.45rem;
  margin-left: auto;
}

.desktop-nav a,
.header-actions a,
.mobile-actions a,
.menu-toggle {
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.desktop-nav .is-active,
.mobile-nav .is-active {
  color: var(--text-strong);
  text-decoration: underline;
  text-underline-offset: 0.45rem;
}

.header-actions {
  gap: 1rem;
  margin-left: 1rem;
}

.mobile-actions {
  display: none;
  gap: 0.85rem;
  margin-left: auto;
}

.menu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
}

.mobile-menu {
  display: none;
  padding: 0 0 1rem;
}

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

.mobile-nav {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.hero-banner {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82vh;
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.58) 0%, rgba(11, 9, 7, 0.32) 36%, rgba(11, 9, 7, 0.06) 100%),
    url("assets/images/hero-luxury-decor.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.06) 0%, rgba(11, 9, 7, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4.5rem;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin-left: 0;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-copy,
.hero-content .trust-labels span {
  color: #fff8f2;
}

.hero-copy {
  max-width: 560px;
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.trust-labels span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

.section {
  padding: var(--space-8) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.92));
}

.section-tight {
  padding: var(--space-7) 0;
}

.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 760px;
}

.split-intro {
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: none;
}

.section-note {
  align-self: end;
}

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

.category-card,
.product-card,
.compact-card,
.value-card,
.contact-panel,
.contact-details,
.shop-sidebar .filter-box,
.mobile-filter-panel .filter-box {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card img {
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-card:hover img {
  transform: scale(1.03);
}

.category-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.1rem 1.05rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0) 0%, rgba(16, 14, 12, 0.78) 85%);
}

.category-copy h3,
.category-copy p,
.category-copy a {
  color: #fffaf6;
}

.category-copy h3 {
  font-size: 1.55rem;
}

.category-copy p {
  font-size: 0.88rem;
  line-height: 1.45;
}

.category-copy a {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  gap: 2rem 1.2rem;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  background: #ece3d8;
}

.product-copy {
  display: grid;
  gap: 0.42rem;
  padding: 0.9rem 0 0;
}

.product-copy p:not(.product-tag) {
  min-height: auto;
  font-size: 0.88rem;
  max-width: 28ch;
}

.product-tag {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.3rem;
  font-weight: 600;
  color: var(--text-strong);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-button {
  width: auto;
  min-width: 156px;
  min-height: 38px;
  padding: 0.72rem 0.95rem;
  border: 1px solid #151311;
  background: #151311;
  color: #fffaf6;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.product-button:hover {
  background: transparent;
  color: #151311;
}

.product-button.is-added {
  background: #ffffff;
  color: #151311;
  border-color: rgba(21, 19, 17, 0.22);
}

.editorial-feature,
.collection-feature,
.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.editorial-copy,
.collection-content,
.about-copy {
  display: grid;
  gap: 1rem;
}

.editorial-media img,
.collection-image img,
.contact-info img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.compact-card {
  overflow: hidden;
}

.compact-card img {
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
}

.compact-card div {
  padding: 0.85rem 0 0;
}

.compact-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.narrow-copy {
  max-width: 780px;
}

.newsletter-section {
  padding-top: 0;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.newsletter-form {
  display: flex;
  gap: 0.9rem;
  width: min(100%, 470px);
}

.newsletter-form input,
.search-field input,
.sort-field select,
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 26, 23, 0.18);
  border-radius: 0;
  background: #fffdfa;
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.page-main {
  padding-bottom: var(--space-8);
}

.page-hero {
  padding: 4rem 0 1.5rem;
}

.page-hero-shell {
  max-width: 700px;
  display: grid;
  gap: 0.85rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 108px;
}

.filter-box {
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.filter-label {
  color: var(--text);
  font-weight: 600;
}

.filter-box label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.shop-content {
  display: grid;
  gap: 1.35rem;
}

.shop-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.filter-toggle {
  display: none;
  min-height: 52px;
  padding: 0 1rem;
  border-radius: 0;
  border: 1px solid rgba(31, 26, 23, 0.16);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.mobile-filter-panel {
  display: none;
}

.mobile-filter-panel.is-open {
  display: block;
}

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

.shop-empty {
  padding: 1rem 0 0.5rem;
}

.collection-feature {
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  background: transparent;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 0;
}

.collection-feature.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.collection-feature.reverse .collection-image {
  order: 2;
}

.collection-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.collection-preview-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
}

.about-media-stack {
  display: grid;
  gap: 1.3rem;
}

.about-media-stack img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

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

.value-card {
  padding: 1.4rem 0 0;
  display: grid;
  gap: 0.8rem;
  border-top: 1px solid rgba(31, 26, 23, 0.12);
}

.contact-panel {
  padding: 1.8rem;
  border: 1px solid rgba(31, 26, 23, 0.1);
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-details {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border: 1px solid rgba(31, 26, 23, 0.1);
}

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

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 600;
  color: var(--text);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-message {
  min-height: 1.5em;
  color: var(--primary);
  font-weight: 500;
}

.site-footer {
  padding: 2.5rem 0 3.2rem;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
  background: #f4eee8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin-bottom: 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-logo {
  margin-bottom: 0.7rem;
}

.footer-copy {
  max-width: 360px;
}

@media (max-width: 1200px) {
  .eight-grid,
  .arrival-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-row {
    min-height: 70px;
    gap: 1rem;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .hero-banner {
    min-height: 68vh;
    background-position: 62% center;
  }

  .category-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature,
  .collection-feature,
  .collection-feature.reverse,
  .about-grid,
  .contact-layout,
  .newsletter-shell,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .shop-controls {
    grid-template-columns: auto minmax(0, 1fr) 210px;
  }

  .filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .collection-feature.reverse .collection-image {
    order: initial;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .split-intro {
    grid-template-columns: 1fr;
  }

  .shop-controls {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .form-footer,
  .field-grid,
  .collection-preview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .form-footer {
    display: grid;
  }

  .product-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .product-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .logo {
    font-size: 0.98rem;
    gap: 0.55rem;
  }

  .header-row {
    min-height: 72px;
  }

  .mobile-actions {
    gap: 0.7rem;
  }

  .mobile-actions a,
  .menu-toggle {
    font-size: 0.9rem;
  }

  .hero-banner {
    min-height: 540px;
    background-position: 66% center;
  }

  .hero-content {
    padding-top: 6.25rem;
    padding-bottom: 3.1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-actions,
  .trust-labels {
    display: grid;
  }

  .category-grid,
  .eight-grid,
  .arrival-grid,
  .shop-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .collection-feature {
    padding: 1rem;
  }

  .contact-panel,
  .contact-details,
  .newsletter-shell {
    padding: 1.2rem;
  }
}

@media (max-width: 375px) {
  .logo {
    font-size: 0.9rem;
  }

  .mobile-actions {
    gap: 0.45rem;
  }

  .cart-link,
  .menu-toggle {
    font-size: 0.8rem;
  }
}
