:root {
  --ivory: #f8f3ea;
  --paper: #fffaf2;
  --sage: #7e9a82;
  --sage-deep: #526c5a;
  --gold: #b99a5d;
  --rose: #c48f93;
  --taupe: #8d7868;
  --ink: #2d2824;
  --line: rgba(83, 70, 57, 0.18);
  --shadow: 0 18px 45px rgba(70, 55, 38, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0.78)),
    repeating-linear-gradient(90deg, rgba(185, 154, 93, 0.035) 0 1px, transparent 1px 7px),
    var(--ivory);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.brand-lockup span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.3vw, 28px);
  color: var(--taupe);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav-links a:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(78svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.95) 0%, rgba(248, 243, 234, 0.76) 38%, rgba(248, 243, 234, 0.28) 70%),
    url("chalcedony-floral-ring.jpg") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 108px);
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.2rem);
  font-weight: 400;
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 26px 0 0;
  color: #554a42;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.32;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  border-color: var(--sage-deep);
  background: var(--sage-deep);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.62);
}

.intro-band {
  display: flex;
  justify-content: center;
  padding: 22px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.78);
}

.intro-band p {
  width: min(860px, 100%);
  margin: 0;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.42;
  text-align: center;
}

.section-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.featured-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

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

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 10px 30px rgba(70, 55, 38, 0.08);
}

.product-card-featured {
  box-shadow: var(--shadow);
}

.product-image-link {
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #eee3d6;
}

.product-card-featured .product-image-link {
  aspect-ratio: 1 / 1.18;
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.035);
}

.product-body {
  display: grid;
  gap: 18px;
  min-height: 218px;
  padding: 18px;
}

.product-type {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-body p:not(.product-type) {
  margin: 10px 0 0;
  color: #6b5f55;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-link {
  align-self: end;
  width: fit-content;
  color: var(--sage-deep);
  border-bottom: 1px solid rgba(82, 108, 90, 0.45);
  padding-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-note {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eee2d1;
}

.brand-note p:not(.eyebrow) {
  margin: 0;
  color: #574b42;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--taupe);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--sage-deep);
}

@media (max-width: 920px) {
  .hero {
    min-height: min(74svh, 760px);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(248, 243, 234, 0.94) 0%, rgba(248, 243, 234, 0.7) 48%, rgba(248, 243, 234, 0.2) 100%),
      url("chalcedony-floral-ring.jpg") center bottom / cover no-repeat;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 46px;
  }

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

  .brand-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-lockup span {
    font-size: 0.94rem;
  }

  .nav-links {
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 70svh;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.3rem);
    line-height: 0.94;
  }

  .hero-copy {
    width: min(320px, 100%);
    font-size: 1.02rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.72rem;
  }

  .intro-band p {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .section-heading {
    display: block;
  }

  .featured-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-body {
    min-height: 184px;
  }

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