:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --ink: #070707;
  --ink-soft: #0d0c0b;
  --panel: #11100e;
  --gold: #c8a45d;
  --gold-light: #e0c480;
  --cream: #f3eee4;
  --muted: #aaa59c;
  --line: rgba(207, 174, 104, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

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

button {
  font: inherit;
}

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

.topline {
  align-items: center;
  background: #c8a45d;
  color: #17120b;
  display: flex;
  gap: 18px;
  height: 30px;
  justify-content: center;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.topline p {
  font-size: 9px;
  font-weight: 700;
  margin: 0;
}

.topline span {
  background: #1d170f;
  height: 1px;
  width: 36px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 94px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  justify-self: start;
}

.brand-logo-frame {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 48px;
}

.brand-logo-frame::after {
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: 50%;
  content: "";
  inset: 4px;
  position: absolute;
  z-index: 2;
}

.brand-logo-frame img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.34) translateY(-4%);
  width: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.38em;
  margin-top: 8px;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.nav-links a,
footer nav a {
  color: #bcb7ae;
  font-size: 11px;
  letter-spacing: 0.13em;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  display: inline-flex;
  font-size: 10px;
  gap: 18px;
  justify-self: end;
  letter-spacing: 0.16em;
  padding: 13px 17px;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: #110d07;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 12px;
  width: 44px;
}

.menu-button span {
  background: var(--gold-light);
  display: block;
  height: 1px;
  margin: 7px 0;
  width: 20px;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  min-height: calc(100vh - 124px);
  overflow: hidden;
  padding: 5vh 0 5vh 8vw;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(200, 164, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 93, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  background: radial-gradient(circle, rgba(184, 129, 43, 0.16), transparent 65%);
  filter: blur(15px);
  height: 620px;
  left: -280px;
  position: absolute;
  top: -220px;
  width: 620px;
}

.hero-copy {
  max-width: 670px;
  padding: 70px 40px 90px 0;
  position: relative;
  z-index: 3;
}

.kicker {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.28em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.kicker span {
  background: var(--gold);
  height: 1px;
  width: 34px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(62px, 6.3vw, 112px);
  line-height: 0.91;
}

h1 em,
h2 em {
  color: var(--gold-light);
  display: block;
  font-weight: 400;
}

h1 em {
  font-size: 0.67em;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-top: 17px;
}

.hero-intro {
  color: #b8b2a8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 36px 0 0;
  max-width: 520px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 36px;
  margin-top: 42px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 52px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: #171007;
}

.button-gold:hover {
  background: var(--gold-light);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #ddd7cd;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.hero-visual {
  align-self: stretch;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, 0.65) 19%, transparent 58%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.42), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.hero-frame {
  border: 1px solid rgba(222, 190, 123, 0.45);
  inset: 7% 6% 7% 19%;
  position: absolute;
  z-index: 2;
}

.hero-seal {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(9, 8, 6, 0.74);
  border: 1px solid rgba(222, 190, 123, 0.45);
  border-radius: 50%;
  bottom: 11%;
  display: flex;
  flex-direction: column;
  height: 116px;
  justify-content: center;
  left: 12%;
  position: absolute;
  width: 116px;
  z-index: 4;
}

.hero-seal span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.hero-seal small {
  color: #bdb4a6;
  font-size: 6px;
  letter-spacing: 0.15em;
  margin-top: 7px;
}

.vertical-note {
  color: rgba(238, 226, 201, 0.62);
  font-size: 7px;
  letter-spacing: 0.34em;
  margin: 0;
  position: absolute;
  right: 2.5%;
  text-transform: uppercase;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  z-index: 4;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  display: flex;
  gap: 13px;
  left: 8vw;
  position: absolute;
  z-index: 4;
}

.scroll-cue span {
  border: 1px solid var(--gold);
  border-radius: 10px;
  height: 24px;
  position: relative;
  width: 13px;
}

.scroll-cue span::after {
  animation: scroll 1.6s ease infinite;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 4px;
  position: absolute;
  top: 5px;
  width: 3px;
}

.scroll-cue p {
  color: #77736c;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}

.section {
  padding: 130px 8vw;
}

.collections {
  background: #0b0a09;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.section-heading > p {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75;
  max-width: 390px;
}

h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
}

h2 em {
  font-size: 0.78em;
  font-style: italic;
  margin-top: 7px;
}

.collection-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.collection-card:nth-child(2) {
  margin-top: 52px;
}

.collection-image {
  aspect-ratio: 0.79;
  background: #171512;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.collection-image::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.collection-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
  width: 100%;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.card-number {
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  left: 18px;
  letter-spacing: 0.2em;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.collection-image a {
  align-items: center;
  background: var(--gold);
  bottom: 0;
  color: #171007;
  display: flex;
  height: 52px;
  justify-content: center;
  position: absolute;
  right: 0;
  transition: background 180ms ease;
  width: 52px;
  z-index: 3;
}

.collection-image a:hover {
  background: var(--gold-light);
}

.collection-card > p:first-of-type {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.collection-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.card-rule {
  background: var(--line);
  height: 1px;
  margin: 18px 0 15px;
}

.card-description {
  color: #8f8a82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.story {
  align-items: center;
  background: var(--cream);
  color: #17130d;
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.story-art {
  align-items: center;
  aspect-ratio: 1;
  background: #0b0a09;
  display: flex;
  justify-content: center;
  max-width: 540px;
  overflow: hidden;
  position: relative;
}

.story-art::before {
  background: radial-gradient(circle at center, rgba(200, 164, 93, 0.12), transparent 67%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.story-logo {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.story-copy .kicker {
  margin-bottom: 26px;
}

.story-copy h2 {
  color: #15110c;
}

.story-copy h2 em {
  color: #8b6727;
}

.story-copy .lead {
  color: #342b20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.65;
  margin: 38px 0 20px;
}

.story-copy > p:not(.kicker):not(.lead) {
  color: #6c6357;
  font-size: 13px;
  line-height: 1.9;
  max-width: 620px;
}

.gold-link {
  border-color: rgba(139, 103, 39, 0.45);
  color: #73541c;
  display: inline-flex;
  gap: 30px;
  margin-top: 24px;
}

.craft {
  background: #0d0c0a;
}

.craft-header {
  text-align: center;
}

.craft-header .kicker {
  justify-content: center;
}

.craft-header h2 em {
  color: var(--gold-light);
}

.assurance-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.assurance-grid article {
  min-height: 320px;
  padding: 36px;
  position: relative;
  text-align: center;
}

.assurance-grid article + article {
  border-left: 1px solid var(--line);
}

.assurance-grid article > span {
  color: #575149;
  font-size: 8px;
  left: 24px;
  letter-spacing: 0.18em;
  position: absolute;
  top: 24px;
}

.assurance-icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-size: 24px;
  height: 76px;
  justify-content: center;
  margin: 35px auto 28px;
  width: 76px;
}

.assurance-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 13px;
}

.assurance-grid p {
  color: #88827a;
  font-size: 12px;
  line-height: 1.8;
  margin: auto;
  max-width: 250px;
}

.signature {
  align-items: center;
  background-image: url("assets/hero-jewelry.webp");
  background-position: center 45%;
  background-size: cover;
  display: flex;
  min-height: 720px;
  padding: 8vw;
  position: relative;
}

.signature-overlay {
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.98) 5%, rgba(6, 6, 6, 0.76) 48%, rgba(6, 6, 6, 0.08));
  inset: 0;
  position: absolute;
}

.signature-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.signature-content > p:not(.kicker) {
  color: #aaa49b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 32px 0;
  max-width: 490px;
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.button-outline:hover {
  background: var(--gold);
  color: #171007;
}

.contact {
  align-items: center;
  background: var(--cream);
  color: #17130d;
  display: grid;
  gap: 12vw;
  grid-template-columns: 1fr 0.75fr;
}

.contact h2 {
  color: #17130d;
}

.contact h2 em {
  color: #8b6727;
}

.contact-copy > p {
  color: #60584e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.contact-copy small {
  color: #847b70;
  display: block;
  font-size: 10px;
  line-height: 1.6;
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-dark {
  background: #17130d;
  border: 1px solid #17130d;
  color: var(--gold-light);
}

.button-dark:hover {
  background: #2a2116;
}

.button-instagram {
  background: transparent;
  border: 1px solid #8b6727;
  color: #73541c;
}

.button-instagram:hover {
  background: #8b6727;
  color: #fff;
}

.phone-number {
  color: #73541c;
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-top: 24px;
}

.store-address {
  color: #6c6357;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  margin-top: 18px;
}

.whatsapp-logo-button {
  align-items: center;
  background: #1f8f56;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(31, 143, 86, 0.22);
  color: #fff;
  display: inline-flex;
  flex: 0 0 56px;
  height: 56px;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  width: 56px;
}

.whatsapp-logo-button:hover {
  background: #27a867;
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: block;
  height: 30px;
  width: 30px;
}

.whatsapp-float {
  align-items: center;
  background: #1f8f56;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.38);
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 24px;
  transition: transform 180ms ease, background 180ms ease;
  width: 60px;
  z-index: 60;
}

.whatsapp-float:hover {
  background: #27a867;
  transform: translateY(-2px);
}

footer {
  align-items: center;
  background: #070707;
  display: grid;
  gap: 38px;
  grid-template-columns: 1fr auto 1fr;
  padding: 72px 8vw 30px;
}

.footer-brand {
  justify-self: start;
}

footer > p {
  color: #77716a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

footer nav {
  display: flex;
  gap: 24px;
  justify-self: end;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #5e5a55;
  display: flex;
  font-size: 8px;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding-top: 24px;
  text-transform: uppercase;
}

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

  .nav-links {
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 28px;
    left: 0;
    padding: 35px 8vw;
    position: absolute;
    right: 0;
    top: 93px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-copy {
    padding: 110px 8vw 70px;
  }

  .hero-visual {
    height: 72vh;
    min-height: 540px;
  }

  .scroll-cue {
    display: none;
  }

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

  .section-heading > p {
    margin-top: 28px;
  }

  .story {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .story-art {
    margin: auto;
    width: min(100%, 560px);
  }

  .contact {
    gap: 60px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topline {
    letter-spacing: 0.15em;
  }

  .topline span {
    width: 18px;
  }

  .site-header {
    height: 78px;
    padding: 0 5vw;
  }

  .brand-logo-frame {
    height: 40px;
    width: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    letter-spacing: 0.3em;
  }

  .nav-links {
    top: 77px;
  }

  .hero-copy {
    padding: 95px 6vw 66px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .hero-visual {
    height: 63vh;
    min-height: 450px;
  }

  .hero-frame {
    inset: 7%;
  }

  .hero-seal {
    bottom: 9%;
    height: 92px;
    left: 8%;
    width: 92px;
  }

  .section {
    padding: 92px 6vw;
  }

  h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

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

  .collection-card:nth-child(2) {
    margin-top: 0;
  }

  .collection-image {
    aspect-ratio: 0.9;
  }

  .story {
    gap: 52px;
  }

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

  .assurance-grid article {
    min-height: 275px;
  }

  .assurance-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signature {
    min-height: 650px;
    padding: 90px 6vw;
  }

  .signature-overlay {
    background: linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.62));
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-actions .whatsapp-logo-button {
    width: 56px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  footer nav {
    justify-self: center;
  }

  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
