:root {
  color-scheme: light;
  --ink: #1c2925;
  --forest: #203d35;
  --sage: #71877b;
  --sea: #77969a;
  --amber: #c57d38;
  --sand: #e8ddc7;
  --cream: #f4efe5;
  --paper: #fffdf8;
  --line: rgba(28, 41, 37, 0.14);
  --shadow: 0 1.5rem 5rem rgba(34, 47, 41, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-header {
  position: relative;
  z-index: 10;
  width: min(100% - 3rem, 86rem);
  margin: 0 auto;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50% 48% 52% 45%;
  color: var(--paper);
  background: var(--forest);
  font-size: 1.2rem;
}

nav { display: flex; align-items: center; gap: 1.6rem; }
nav a { font-size: 0.9rem; font-weight: 650; text-decoration: none; }
.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100% - 3rem, 86rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5.5rem 0 auto;
  height: min(52rem, 80vh);
  z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, rgba(113, 135, 123, 0.2), transparent 35rem),
    linear-gradient(115deg, var(--cream), transparent 62%);
}

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

h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 {
  max-width: 11ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.89;
  letter-spacing: -0.055em;
}
h1 em { color: var(--forest); font-weight: 500; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.04em; }
h3 { margin-bottom: 0.8rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }

.hero-intro, .lead {
  max-width: 42rem;
  color: #425650;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.95rem 1.3rem; border-radius: 999px; font-weight: 750; text-decoration: none; }
.button-primary { color: white; background: var(--forest); }
.text-link { font-weight: 750; text-decoration: none; }

.gemstones-invitation {
  max-width: 42rem;
  margin-top: 2.2rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 253, 248, 0.68);
}

.invitation-kicker {
  margin: 0 0 0.35rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.invitation-copy {
  margin: 0;
  color: #465b53;
  font-size: 0.98rem;
  line-height: 1.55;
}

.gemstones-invitation .hero-actions {
  margin-top: 1.1rem;
  gap: 1rem;
}

.invitation-note {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brochure-card { margin: 0; transform: rotate(1.5deg); }
.image-frame {
  padding: 0.7rem;
  border-radius: 0.5rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.image-frame img { width: 100%; max-height: 38rem; object-fit: cover; object-position: center; border-radius: 0.25rem; }
.brochure-card figcaption { margin-top: 1rem; color: var(--sage); font-size: 0.78rem; letter-spacing: 0.09em; text-align: center; text-transform: uppercase; }

.story {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(2rem, 8vw, 8rem);
  width: min(100% - 3rem, 72rem);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
}
.section-label { color: var(--amber); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.story p:not(.lead) { max-width: 40rem; color: #56655f; font-size: 1.05rem; line-height: 1.75; }

.collection { padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100vw - 86rem) / 2)); background: var(--forest); color: var(--paper); }
.collection-heading { max-width: 50rem; margin-bottom: 3rem; }
.collection-heading .eyebrow { color: #b9c8c0; }
.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.collection-card {
  min-height: 20rem;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.07);
}
.collection-card:nth-child(4), .collection-card:nth-child(5) { grid-column: span 6; }
.collection-card p { max-width: 30rem; margin: 0; color: rgba(255, 253, 248, 0.72); line-height: 1.6; }
.card-number { margin-bottom: auto; color: rgba(255, 255, 255, 0.45); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; }
.card-taino { background: linear-gradient(145deg, #3b554b, #1c322b); }
.card-marine { background: linear-gradient(145deg, #466d70, #203f45); }
.card-shells { background: linear-gradient(145deg, #917b64, #56483d); }
.card-coqui { background: linear-gradient(145deg, #567650, #2e4a33); }
.card-amber { background: linear-gradient(145deg, #b96f2c, #6b3b1d); }

.coming-soon {
  width: min(100% - 3rem, 74rem);
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) 0;
  text-align: center;
}
.coming-soon h2 { max-width: 15ch; margin-right: auto; margin-left: auto; }
.coming-soon > p:not(.eyebrow) { color: #596961; font-size: 1.1rem; }
.status { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1rem; padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; font-weight: 750; }
.status span { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0.3rem rgba(197, 125, 56, 0.14); }

footer {
  width: min(100% - 3rem, 86rem);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: #65736d;
  font-size: 0.82rem;
}
.footer-brand { color: var(--ink); }

@media (max-width: 58rem) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 46rem; }
  .brochure-card { width: min(100%, 30rem); justify-self: center; }
  .story { grid-template-columns: 1fr; gap: 1.5rem; }
  .collection-card, .collection-card:nth-child(4), .collection-card:nth-child(5) { grid-column: span 6; }
  footer { grid-template-columns: 1fr; gap: 0.5rem; }
}

@media (max-width: 38rem) {
  .site-header, .hero, .story, .coming-soon, footer { width: min(100% - 2rem, 86rem); }
  .site-header { min-height: 4.5rem; }
  .brand { font-size: 0.92rem; }
  .nav-cta { padding: 0.6rem 0.8rem; }
  .hero { min-height: auto; padding: 4rem 0 5rem; }
  .hero::before { inset: 4.5rem 0 auto; }
  h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .collection { padding-right: 1rem; padding-left: 1rem; }
  .collection-grid { display: grid; grid-template-columns: 1fr; }
  .collection-card, .collection-card:nth-child(4), .collection-card:nth-child(5) { min-height: 17rem; grid-column: auto; }
}

/* Shared Caribbean Gemstones catalog section. */
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-cart { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.header-cart span { min-width: 1.45rem; height: 1.45rem; display: grid; place-items: center; border-radius: 999px; color: white; background: var(--forest); font-size: 0.72rem; }

.magnet-shop { padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100vw - 86rem) / 2)); background: var(--cream); }
.shop-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.shop-heading > div { max-width: 46rem; }
.shop-heading h2 { margin-bottom: 0.8rem; }
.shop-heading p:not(.eyebrow) { margin: 0; color: #596961; line-height: 1.65; }
.shop-heading .text-link { flex: 0 0 auto; padding-bottom: 0.35rem; border-bottom: 1px solid currentColor; }
.shop-notice, .shop-empty { margin-bottom: 1.5rem; padding: 1rem 1.2rem; border: 1px solid rgba(197, 125, 56, 0.35); border-radius: 0.8rem; background: #fff8ed; }
.shop-notice.success { border-color: rgba(32, 61, 53, 0.25); background: #edf5f1; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--paper); box-shadow: 0 1rem 3rem rgba(34, 47, 41, 0.07); }
.product-image { aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; color: var(--sage); background: #ebe9e1; text-decoration: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-body { padding: 1.15rem; }
.product-sku { margin: 0 0 0.45rem; color: var(--sage); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.08em; }
.product-body h3 { min-height: 4.7rem; margin-bottom: 1rem; font-family: inherit; font-size: 1rem; line-height: 1.45; }
.product-body h3 a { text-decoration: none; }
.product-purchase { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.product-purchase strong { color: var(--forest); white-space: nowrap; }
.product-purchase button { padding: 0.65rem 0.8rem; border: 0; border-radius: 999px; color: white; background: var(--forest); font: inherit; font-size: 0.78rem; font-weight: 750; cursor: pointer; }

.site-footer { width: min(100% - 3rem, 86rem); margin: 0 auto; padding: 2.5rem 0; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; color: #65736d; font-size: 0.82rem; }
.site-footer p { margin: 0; }

@media (max-width: 58rem) {
  .shop-heading { display: grid; align-items: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr; gap: 0.7rem; }
}

@media (max-width: 38rem) {
  .header-actions .nav-cta { display: none; }
  .magnet-shop { padding-right: 1rem; padding-left: 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-body h3 { min-height: auto; }
  .site-footer { width: min(100% - 2rem, 86rem); }
}
