:root {
  --ink: #1d1b1a;
  --muted: #706963;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e4ddd4;
  --gold: #b98745;
  --rose: #c95f6a;
  --green: #285a4f;
  --blue: #385f8c;
  --shadow: 0 22px 70px rgba(29, 27, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 247, 0.84);
  border-bottom: 1px solid rgba(228, 221, 212, 0.72);
  backdrop-filter: blur(18px);
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
}

.brand-mark span {
  display: inline-block;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
  font-size: 0.88rem;
  color: #393533;
}

.nav-links a,
.header-action {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--rose);
}

.header-action {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
}

.header-action:hover {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(88vh, 900px);
  padding: 138px clamp(18px, 6vw, 80px) 72px;
  overflow: hidden;
  background:
    linear-gradient(95deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.88) 42%, rgba(251, 250, 247, 0.34) 100%),
    radial-gradient(circle at 85% 18%, rgba(201, 95, 106, 0.18), transparent 28%),
    linear-gradient(135deg, #fffaf5, #f6f4ef 52%, #eef4f1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 28px 0 0;
  color: #514b47;
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-product-shelf {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 10px;
  width: min(880px, calc(100vw - 120px));
  margin-top: 34px;
}

.hero-product {
  display: grid;
  min-height: 148px;
  grid-template-rows: 92px auto;
  gap: 8px;
  border: 1px solid rgba(228, 221, 212, 0.9);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(29, 27, 26, 0.08);
  transition: transform 160ms ease, border-color 160ms ease;
}

.hero-product:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.hero-product img {
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.hero-product span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero-product strong,
.hero-product small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-product strong {
  font-size: 0.72rem;
  color: var(--green);
  text-transform: uppercase;
}

.hero-product small {
  font-size: 0.82rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
}

.button-light:hover {
  border-color: var(--gold);
  background: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  position: absolute;
  width: clamp(116px, 13vw, 210px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(228, 221, 212, 0.8);
  box-shadow: var(--shadow);
}

.hero-model {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #f7f2ed;
  box-shadow: 0 24px 70px rgba(29, 27, 26, 0.18);
}

.hero-model-earring {
  right: clamp(22px, 5vw, 76px);
  top: 106px;
  width: clamp(300px, 34vw, 520px);
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: left center;
}

.hero-model-necklace {
  right: clamp(230px, 26vw, 440px);
  bottom: 66px;
  width: clamp(190px, 19vw, 290px);
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 50% 66%;
}

.hero-img-one {
  right: clamp(26px, 5vw, 82px);
  bottom: 54px;
  width: clamp(132px, 14vw, 220px);
  transform: rotate(5deg);
}

.hero-img-two {
  right: clamp(480px, 46vw, 660px);
  top: 96px;
  width: clamp(112px, 12vw, 176px);
  transform: rotate(4deg);
}

.intro-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -34px clamp(18px, 6vw, 80px) 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 18px 44px rgba(29, 27, 26, 0.08);
}

.intro-band div {
  min-height: 120px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.intro-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.52;
}

.section {
  padding: clamp(74px, 10vw, 126px) clamp(18px, 6vw, 80px);
}

.wear-section {
  padding: clamp(74px, 9vw, 110px) clamp(18px, 6vw, 80px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

.section-heading h2,
.lookbook h2,
.story-copy h2,
.dialog-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.wear-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f2ed;
  display: grid;
  grid-template-rows: minmax(190px, 15vw) auto;
}

.wear-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f7f2ed;
}

.wear-card-earring img {
  object-position: left center;
}

.wear-card-necklace img {
  object-position: 50% 66%;
}

.wear-card::after {
  content: none;
}

.wear-card div {
  padding: 14px 16px 16px;
  color: var(--ink);
  background: #fffaf6;
}

.wear-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wear-card strong {
  display: block;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.14;
}

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

.collection-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #f3f0ea);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-panel-large {
  grid-row: auto;
}

.collection-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 38px 38px 120px;
  transform: scale(0.86);
}

.collection-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(29, 27, 26, 0.78));
}

.collection-panel div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}

.collection-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.collection-panel h3 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

.shop-section {
  background: #f3f0ea;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 6vw, 80px);
  background: #1d1b1a;
  color: #fff;
}

.detail-copy .eyebrow {
  color: #e3b16d;
}

.detail-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.detail-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.detail-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #fff;
}

.shop-heading {
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid #d6ccc0;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-image {
  aspect-ratio: 1;
  padding: 18px;
  background: linear-gradient(135deg, #fff, #f4f0ea);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-kicker {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-title {
  display: -webkit-box;
  min-height: 3.25em;
  margin: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  font-weight: 900;
}

.quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

.quick-view:hover {
  color: #fff;
  background: var(--ink);
}

.lookbook {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 6vw, 80px);
  background: #1d1b1a;
  color: #fff;
}

.lookbook .eyebrow {
  color: #e3b16d;
}

.lookbook-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.lookbook .button-dark {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.lookbook-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lookbook-strip img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  background: #fff;
}

.story-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.story-media {
  min-height: 440px;
  background:
    linear-gradient(135deg, rgba(56, 95, 140, 0.16), rgba(201, 95, 106, 0.12)),
    #fff;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: contain;
  padding: 42px;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 80px);
  color: #fff;
  background: var(--green);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(29, 27, 26, 0.62);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
}

.dialog-layout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
  background: #f7f2ed;
}

.dialog-copy {
  padding: clamp(24px, 5vw, 48px);
}

.dialog-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.dialog-price {
  margin: 18px 0;
  color: var(--rose);
  font-size: 1.2rem;
  font-weight: 900;
}

.dialog-copy ul {
  margin: 0 0 28px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.66;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-model-earring {
    right: 24px;
    width: clamp(270px, 36vw, 400px);
  }

  .hero-model-necklace {
    right: clamp(190px, 30vw, 330px);
    width: clamp(170px, 21vw, 250px);
  }

  .hero-img-two {
    right: 54vw;
  }

  .hero-product-shelf {
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    width: min(560px, calc(100vw - 80px));
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 2px 0 4px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-img-one {
    top: auto;
    right: 5vw;
    bottom: 96px;
  }

  .hero-img-two {
    top: auto;
    right: auto;
    left: 60vw;
    bottom: 300px;
  }

  .hero-model-earring {
    right: 22px;
    top: 154px;
    width: min(42vw, 330px);
  }

  .hero-model-necklace {
    right: 21vw;
    bottom: 54px;
    width: min(26vw, 210px);
  }

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

  .collection-grid,
  .lookbook,
  .detail-section,
  .story-section,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

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

  .collection-panel-large {
    grid-row: auto;
  }

  .shop-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

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

  .hero-product-shelf {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .hero-product {
    min-width: 132px;
    scroll-snap-align: start;
  }

  .dialog-layout {
    min-height: 0;
  }

  .dialog-layout img {
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 14px 16px;
  }

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

  .header-action {
    padding: 8px 10px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 136px 16px 38px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 3.8rem);
    white-space: nowrap;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .hero-product-shelf {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero-copy {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 2;
    display: block;
    height: 246px;
    margin-bottom: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-img {
    padding: 12px;
  }

  .hero-model-earring {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 156px;
    aspect-ratio: auto;
    object-position: left center;
  }

  .hero-model-necklace {
    top: auto;
    right: 0;
    bottom: 0;
    width: 128px;
    height: 166px;
    aspect-ratio: auto;
    object-position: 50% 66%;
  }

  .hero-img-one {
    width: 94px;
    right: 116px;
    bottom: 8px;
  }

  .hero-img-two {
    top: auto;
    right: auto;
    width: 88px;
    left: 10px;
    bottom: 4px;
  }

  .intro-band {
    margin-top: 0;
    margin-left: 16px;
    margin-right: 16px;
  }

  .section,
  .lookbook,
  .wear-section,
  .detail-section {
    padding-top: 54px;
    padding-bottom: 54px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-product-shelf {
    grid-template-columns: none;
  }

  .hero-product {
    min-height: 126px;
    grid-template-rows: 76px auto;
  }

  .hero-product img {
    height: 76px;
  }

  .collection-panel {
    min-height: 250px;
  }

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

  .wear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wear-card {
    min-height: 0;
    grid-template-rows: 150px auto;
  }

  .collection-panel img {
    padding: 26px 24px 92px;
    transform: scale(0.78);
  }

  .section-heading h2,
  .lookbook h2,
  .story-copy h2,
  .dialog-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .product-image {
    padding: 10px;
  }

  .product-body {
    min-height: 170px;
    gap: 9px;
    padding: 12px;
  }

  .product-kicker {
    font-size: 0.62rem;
  }

  .product-title {
    min-height: 2.7em;
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
  }

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

  .quick-view {
    min-height: 36px;
    width: 100%;
    padding: 8px 9px;
    font-size: 0.78rem;
  }

  .lookbook-strip {
    grid-template-columns: 1fr;
  }

  .lookbook-strip img {
    aspect-ratio: 1.05;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
