:root {
  --bg: #f4ecdf;
  --bg-soft: #fbf7f1;
  --card: #ffffff;
  --ink: #191715;
  --muted: #5d5851;
  --line: #ddcdbd;
  --accent: #b96743;
  --accent-dark: #8f4f32;
  --sea: #8faea9;
  --shell: min(1220px, 92vw);
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 28px 56px -34px rgba(34, 23, 16, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% -12%, #ffffff 0%, #f8f1e7 34%, #f2e8db 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.22;
  z-index: -1;
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement-bar {
  background: #111;
  color: #f7f7f7;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 241, 231, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: var(--shell);
  margin-inline: auto;
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.main-nav a,
.header-actions a,
.menu-toggle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.main-nav a::after,
.header-actions a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.header-actions a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 84vh;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 84vh;
  animation: hero-pan 18s ease-in-out infinite alternate;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 17, 12, 0.56) 0%, rgba(22, 17, 12, 0.36) 35%, rgba(22, 17, 12, 0.08) 70%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5.5vw, 5.3rem);
  font-weight: 600;
  line-height: 0.92;
}

.hero-copy {
  max-width: 50ch;
  margin: 1.1rem 0 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.intro-strip {
  padding: 2.5rem 0 1rem;
}

.strip-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.designer-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.designer-pills a {
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card img {
  transition: transform 7s ease;
}

.feature-card:hover img {
  transform: scale(1.08);
}

.feature-card-large {
  min-height: 34rem;
  grid-column: span 7;
}

.feature-card-tall {
  min-height: 34rem;
  grid-column: span 5;
}

.feature-card-wide {
  min-height: 22rem;
  grid-column: span 12;
}

.feature-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.02) 0%, rgba(15, 12, 8, 0.74) 100%);
  color: #fff;
}

.feature-overlay h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.feature-overlay p {
  margin: 0.75rem 0;
  max-width: 42ch;
}

.text-link {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
}

.product-section {
  margin-top: clamp(3rem, 8vw, 5rem);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-header-row h2,
.coverup-copy h2,
.designers-section h2,
.about-copy h2,
.newsletter-inner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 0.96;
  font-weight: 600;
}

.section-controls {
  display: flex;
  gap: 0.5rem;
}

.control-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.control-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-shelf::-webkit-scrollbar {
  height: 8px;
}

.product-shelf::-webkit-scrollbar-thumb {
  background: #cab7a5;
  border-radius: 999px;
}

.product-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid #e6ddd1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 32px -24px rgba(24, 16, 11, 0.55);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -24px rgba(24, 16, 11, 0.58);
}

.product-image-wrap {
  position: relative;
  height: 21rem;
}

.product-chip {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  background: rgba(18, 17, 16, 0.86);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-info {
  padding: 1rem;
}

.product-brand {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.product-info h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.price {
  margin: 0.62rem 0 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sizes {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.shipping-band {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, #ba6f4d 0%, #9b5a3d 100%);
  color: #fff;
}

.shipping-band-inner {
  padding: clamp(2.2rem, 4vw, 3.2rem) 0;
}

.shipping-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.shipping-band p {
  max-width: 68ch;
  margin: 0.8rem 0 0;
}

.coverup-block {
  margin-top: clamp(3rem, 8vw, 5.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1rem;
}

.coverup-media {
  min-height: 34rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.coverup-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverup-copy p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.coverup-copy .btn {
  margin-top: 1.3rem;
  align-self: flex-start;
}

.designers-section {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.designers-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.designers-grid a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  background: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.designers-grid a:hover {
  background: var(--ink);
  color: #fff;
}

.about-section {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.about-copy,
.store-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.about-copy p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.store-panel h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
}

.store-grid {
  display: grid;
  gap: 0.8rem;
}

.store-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.store-card h4 {
  margin: 0;
  font-size: 1rem;
}

.store-card p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonials {
  margin-top: clamp(3rem, 8vw, 5.4rem);
}

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

.testimonial-grid blockquote {
  margin: 0;
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.8rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.newsletter {
  margin-top: clamp(3rem, 8vw, 5.4rem);
  background: linear-gradient(135deg, rgba(143, 174, 169, 0.25) 0%, rgba(255, 255, 255, 0.65) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-inner {
  padding: clamp(2rem, 4vw, 3rem) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.newsletter-form input {
  flex: 1;
  border: 1px solid #ccb9a8;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.73rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

.site-footer {
  background: #120f0d;
  color: #f4f1ed;
}

.footer-inner {
  padding: 1.1rem 0 1.3rem;
  text-align: center;
}

.footer-inner p {
  margin: 0.35rem 0;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.3s;
}

@keyframes hero-pan {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.1) translateX(-2%);
  }
}

@media (max-width: 1080px) {
  .header-actions a:nth-child(2) {
    display: none;
  }

  .feature-card-large,
  .feature-card-tall {
    min-height: 30rem;
  }

  .product-image-wrap {
    height: 18rem;
  }
}

@media (max-width: 940px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.2rem 1.3rem;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 241, 231, 0.98);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions a:first-child,
  .header-actions a:nth-child(2) {
    display: none;
  }

  .hero,
  .hero-image {
    min-height: 74vh;
    height: 74vh;
  }

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

  .feature-card-large,
  .feature-card-tall,
  .feature-card-wide {
    min-height: 22rem;
    grid-column: span 1;
  }

  .coverup-block,
  .about-section,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .coverup-media {
    min-height: 24rem;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .announcement-bar {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.55rem 0.75rem;
  }

  .brand-mark {
    font-size: 1.45rem;
  }

  .hero,
  .hero-image {
    min-height: 70vh;
    height: 70vh;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-copy {
    max-width: 36ch;
  }

  .section-header-row {
    align-items: center;
    flex-wrap: wrap;
  }

  .product-shelf {
    grid-auto-columns: minmax(82vw, 1fr);
  }

  .product-image-wrap {
    height: 19rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
