:root {
  --emerald-950: #09251d;
  --emerald-900: #0d3b2e;
  --emerald-800: #145442;
  --emerald-500: #27785d;
  --gold-500: #b88a3c;
  --gold-300: #d7b979;
  --ivory-100: #fbf6ec;
  --ivory-200: #f3eadb;
  --warm-100: #efe3d1;
  --charcoal-950: #171512;
  --charcoal-800: #2d2923;
  --muted: #716a5f;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(16, 14, 10, 0.18);
  --radius: 8px;
  --max-width: 1180px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory-100);
  color: var(--charcoal-950);
  min-width: 320px;
}

body,
button,
input {
  font: inherit;
}

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

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

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--charcoal-950);
  color: var(--ivory-100);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(12, 33, 99, 0.9);
  color: var(--ivory-100);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 32px, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 176px;
  height: 64px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-links,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  padding: 0.6rem 0.7rem;
  color: rgba(251, 246, 236, 0.88);
  font-size: 0.92rem;
  transition: color 180ms ease, background-color 180ms ease;
}

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

.language-switcher {
  padding: 0.25rem;
  border: 1px solid rgba(251, 246, 236, 0.25);
  border-radius: 999px;
}

.language-button {
  width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(251, 246, 236, 0.8);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-button[aria-pressed="true"] {
  background: var(--ivory-100);
  color: var(--emerald-900);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory-100);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 37, 29, 0.93) 0%, rgba(9, 37, 29, 0.76) 36%, rgba(9, 37, 29, 0.1) 74%),
    linear-gradient(0deg, rgba(9, 37, 29, 0.7), rgba(9, 37, 29, 0));
}

.hero-content {
  position: relative;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding-top: 6rem;
  max-width: 720px;
  justify-self: center;
  transform: translateX(calc((min(100vw, var(--max-width)) - min(100vw, var(--max-width))) / 2));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-content > p:not(.eyebrow),
.section-heading p,
.lead,
.appointment-panel > p:not(.eyebrow) {
  color: rgba(45, 41, 35, 0.78);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(251, 246, 236, 0.88);
}

.hero-actions,
.contact-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--gold-300);
  color: var(--emerald-950);
  border-color: var(--gold-300);
}

.button-ghost {
  color: var(--ivory-100);
  border-color: rgba(251, 246, 236, 0.45);
  background: rgba(251, 246, 236, 0.08);
}

.button-ghost-dark,
.button-outline {
  color: var(--emerald-900);
  border-color: rgba(13, 59, 46, 0.25);
  background: transparent;
}

.button-small {
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  font-size: 0.85rem;
  background: var(--emerald-900);
  color: var(--ivory-100);
}

.section {
  padding: clamp(4.8rem, 8vw, 8rem) 0;
}

.content-grid {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem 0 0;
}

.story-band,
.store-band {
  background: var(--white);
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-card,
.collection-card,
.certificate-card,
.store-card,
.product-card {
  border: 1px solid rgba(13, 59, 46, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 10px 30px rgba(16, 14, 10, 0.06);
}

.stat-card {
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  color: var(--emerald-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.stat-card span {
  color: var(--muted);
}

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

.collection-card,
.certificate-card,
.store-card {
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card:hover,
.certificate-card:hover,
.store-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 60, 0.45);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  color: var(--gold-500);
  border: 1px solid rgba(184, 138, 60, 0.34);
  border-radius: 50%;
}

.collection-card p,
.certificate-card p,
.store-card p,
.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-band {
  background: #0c2163;
  color: var(--ivory-100);
}

.product-band .section-heading p,
.product-band .section-heading p:not(.eyebrow) {
  color: rgba(251, 246, 236, 0.76);
}

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

.product-card {
  overflow: hidden;
  background: rgba(251, 246, 236, 0.06);
  border-color: rgba(251, 246, 236, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-image {
  min-height: 280px;
  background-image: linear-gradient(0deg, rgba(9, 37, 29, 0.18), rgba(9, 37, 29, 0)), url("../public/assets/hero-jewelry.png");
  background-size: 190%;
  background-repeat: no-repeat;
}

.product-image-1 {
  background-position: 74% 55%;
}

.product-image-2 {
  background-position: 52% 63%;
}

.product-image-3 {
  background-position: 86% 42%;
}

.product-body {
  padding: 1.4rem;
}

.product-body span,
.product-body small {
  display: block;
  color: var(--gold-300);
  font-size: 0.83rem;
  font-weight: 700;
}

.product-body h3 {
  margin-top: 0.5rem;
}

.product-body p {
  color: rgba(251, 246, 236, 0.72);
}

.emerald-band {
  background:
    linear-gradient(135deg, rgba(5, 15, 52, 0.98), rgba(12, 33, 99, 0.95)),
    #07153f;
  color: var(--ivory-100);
}

.emerald-band .lead,
.emerald-band .section-heading p {
  color: rgba(251, 246, 236, 0.8);
}

.emerald-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.emerald-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(251, 246, 236, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 246, 236, 0.08);
}

.emerald-list svg {
  flex: 0 0 auto;
  color: var(--gold-300);
  margin-top: 0.18rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.founder-portrait {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal-950);
  border: 1px solid rgba(184, 138, 60, 0.28);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.role {
  margin: 0.8rem 0 2rem;
  color: var(--gold-500);
  font-weight: 700;
}

blockquote {
  margin: 0;
  color: var(--charcoal-800);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.18;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--emerald-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 60, 0.5);
  text-underline-offset: 5px;
}

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

.appointment-section {
  background: var(--ivory-200);
}

.appointment-panel {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 246, 236, 0.94), rgba(239, 227, 209, 0.92)),
    var(--ivory-100);
  border: 1px solid rgba(184, 138, 60, 0.35);
  box-shadow: var(--shadow);
  text-align: center;
}

.appointment-panel h2 {
  max-width: 720px;
  margin: 0 auto;
}

.appointment-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem auto 0;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  background: var(--charcoal-950);
  color: var(--ivory-100);
  padding: 4rem 0 2rem;
}

.footer-grid {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid p {
  max-width: 340px;
  color: rgba(251, 246, 236, 0.7);
  line-height: 1.65;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: var(--gold-300);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid a:not(.brand-mark) {
  display: block;
  margin: 0.55rem 0;
  color: rgba(251, 246, 236, 0.74);
}

.footer-grid .language-switcher {
  width: max-content;
  margin-top: 1rem;
}

.site-footer .brand-mark {
  width: 230px;
  height: 132px;
  margin-bottom: 1rem;
}

.footer-bottom {
  width: min(100% - 32px, var(--max-width));
  margin: 3rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(251, 246, 236, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(251, 246, 236, 0.62);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 92px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 37, 29, 0.95) 0%, rgba(9, 37, 29, 0.84) 46%, rgba(9, 37, 29, 0.24) 100%);
  }

  .hero-content {
    padding: 12rem 0 5rem;
  }

  .two-column,
  .founder-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 660px) {
  .nav-shell {
    width: min(100% - 20px, var(--max-width));
    gap: 0.65rem;
  }

  .brand-mark {
    width: 142px;
    height: 58px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content,
  .content-grid,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, var(--max-width));
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .collection-grid,
  .product-grid,
  .certificate-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 240px;
  }

  .founder-portrait {
    min-height: 360px;
  }

  .founder-portrait img {
    min-height: 360px;
  }

  .hero-actions,
  .contact-actions,
  .store-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
