:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ink: #1a1a1a;
  --bar: #1a1714;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* Announcement bar */
.announce {
  background: var(--bar);
  color: #fff;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce span {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Header */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.75rem;
  height: 58px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-left { display: flex; }
.nav-right { display: flex; justify-content: flex-end; gap: 1.75rem; }

/* Shop dropdown */
.shop-menu { position: relative; }
.shop-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ececec;
  min-width: 190px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 60;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}
.shop-menu:hover .shop-dropdown,
.shop-menu:focus-within .shop-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.shop-dropdown a {
  display: block;
  padding: 0.55rem 1.3rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #333;
  transition: background 0.2s var(--ease);
}
.shop-dropdown a:hover { background: #f6f3ee; }

.shop-link, .meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: opacity 0.3s var(--ease);
}
.shop-link:hover, .meta-link:hover { opacity: 0.55; }

.brand {
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 87px);
  min-height: 560px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 6%;
  left: auto;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}
.hero-cta {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 2px;
  transition: opacity 0.3s var(--ease);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.hero-cta:hover { opacity: 0.7; }

/* Curated for you */
.curated {
  padding: 8rem 1.75rem 3.5rem;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.curated-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.75rem;
}
.curated-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -1.75rem;
  padding: 0 1.75rem;
  cursor: grab;
}
.curated-track::-webkit-scrollbar { display: none; }
.curated-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.curated-track.dragging img { pointer-events: none; }

.product-card {
  flex: 0 0 clamp(280px, 31%, 400px);
  scroll-snap-align: start;
  color: var(--ink);
}
.product-media {
  background: #f3efe6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-name {
  margin-top: 1rem;
  padding-left: 0.85rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.product-price {
  margin-top: 0.4rem;
  padding-left: 0.85rem;
  font-size: 11px;
  font-weight: 600;
}

/* Editorial two-up */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 1.5rem 0 5rem;
}
.editorial-panel { color: var(--ink); }
.editorial-title, .editorial-sub { padding-left: 1.75rem; }
.editorial-media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #f3efe6;
}
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.editorial-panel:hover .editorial-media img { transform: scale(1.03); }
.editorial-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-top: 1.1rem;
}
.editorial-sub {
  margin-top: 0.5rem;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #555;
}

/* Press / testimonials */
.press {
  padding: 5.5rem 1.75rem 6rem;
  text-align: center;
}
.press-quote-mask {
  height: 5.2em;
  overflow: hidden;
  margin: 0 auto 2.6rem;
  max-width: 46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
}
.press-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(45%);
  will-change: transform, opacity;
}
.press-quote.in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease;
}
.press-quote.out {
  opacity: 0;
  transform: translateY(-38%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.press-logo {
  font-size: 15px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #cfcbc4;
  transition: color 0.6s var(--ease);
  white-space: nowrap;
}
.press-logo.active { color: #161616; }

/* Product page */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding: 2.5rem 1.75rem 5rem;
  align-items: start;
}
.pg-gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  position: sticky;
  top: 1.5rem;
}
.pg-thumbs { display: flex; flex-direction: column; gap: 0.7rem; }
.pg-thumb {
  border: 1px solid transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3efe6;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-thumb.is-active { opacity: 1; border-color: #cfc4ad; }
.pg-thumb:hover { opacity: 1; }
.pg-main {
  background: #f6f2ea;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pg-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pg-info { max-width: 30rem; padding-top: 1.5rem; }
.pg-crumb {
  font-size: 12px;
  color: #999;
  margin-bottom: 1.6rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pg-crumb a { color: #777; text-decoration: underline; text-underline-offset: 2px; }
.pg-crumb a:hover { color: #111; }
.pg-crumb .current { color: #444; }

.pg-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.05;
}
.pg-price {
  margin-top: 0.9rem;
  font-size: 13px;
  color: #555;
}

.pg-add, .pg-buy {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 1.05rem;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.pg-add {
  margin-top: 2rem;
  background: #c2a578;
  color: #fff;
}
.pg-add:hover { opacity: 0.9; }
.pg-buy {
  margin-top: 0.9rem;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
.pg-buy:hover { background: #1a1a1a; color: #fff; }

.pg-desc {
  margin-top: 2rem;
  font-size: 12px;
  line-height: 1.7;
  color: #555;
}
.pg-specs {
  margin: 1.3rem 0 0 1.9rem;
  font-size: 12px;
  line-height: 1.55;
  color: #555;
}
.pg-specs li { list-style: disc; margin-bottom: 0.5rem; padding-left: 0.3rem; }

.pg-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pg-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 12px;
  color: #333;
}
.pg-features svg { width: 22px; height: 22px; flex-shrink: 0; color: #1a1a1a; }

.pg-pairs-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 2.6rem 0 1.1rem;
}
.pg-pairs-list { display: flex; flex-direction: column; gap: 1.4rem; }
.pg-pair {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.pg-pair img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #f3efe6;
}
.pg-pair-info { flex: 1; }
.pg-pairs-name { font-size: 13px; }
.pg-pairs-price { font-size: 13px; font-weight: 600; margin-top: 0.3rem; }
.pg-pair-add {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pg-pair-add:hover { border-color: #1a1a1a; color: #1a1a1a; }

/* Share row */
.pg-share {
  display: flex;
  gap: 1.4rem;
  margin: 2.4rem 0;
}
.pg-share a { color: #1a1a1a; transition: opacity 0.3s var(--ease); }
.pg-share a:hover { opacity: 0.55; }
.pg-share svg { width: 18px; height: 18px; display: block; }

/* Accordion */
.pg-accordion { border-top: 1px solid #e8e8e8; }
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
}
.acc-icon { font-size: 16px; font-weight: 300; transition: transform 0.3s var(--ease); }
.acc-head.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  border-bottom: 1px solid #e8e8e8;
}
.acc-body p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  padding: 0.2rem 0 1.2rem;
  max-width: 30rem;
}

@media (max-width: 860px) {
  .product-page { grid-template-columns: 1fr; gap: 2rem; }
  .pg-gallery { position: static; }
  .pg-info { max-width: none; padding-top: 0; }
}

/* Brand statement */
.brand-statement {
  padding: 4rem 1.75rem 5rem;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.brand-statement p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.5;
  color: #2a2a2a;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 3.5rem 1.75rem 2.5rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1.4fr;
  gap: 2.5rem;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 0.65rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: #111; }
.footer-col p {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  max-width: 26rem;
}

.newsletter {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.2rem;
}
.newsletter input {
  flex: 1;
  border: none;
  border-bottom: 1px solid #bbb;
  padding: 0.4rem 0;
  font-family: inherit;
  font-size: 13px;
  background: transparent;
  outline: none;
}
.newsletter input:focus { border-color: #111; }
.newsletter button {
  border: 1px solid #111;
  padding: 0.6rem 1.4rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.newsletter button:hover { background: #111; color: #fff; }

.footer-wordmark {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 6vw, 5.5rem);
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-align: center;
  line-height: 1;
  margin: 4rem 0 1.4rem;
  white-space: nowrap;
}
.footer-base {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #888;
}

@media (max-width: 760px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .press-logos { gap: 1.25rem; }
  .press-logo { font-size: 12px; letter-spacing: 0.1em; }
  .editorial { grid-template-columns: 1fr; }
  .hero-content { left: 50%; right: auto; transform: translate(-50%, -50%); }
  .brand { font-size: 24px; letter-spacing: 0.28em; text-indent: 0.28em; }
  .site-header { padding: 0 1.1rem; }
}
