*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@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;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "DM Sans", sans-serif;
  color: #1a0e05;
  background: #f5c842;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: #2a1a0e;
  color: #f5c842;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  top: 0;
  left: 1.5rem;
  z-index: 9999;
}
.skip-link:focus, .skip-link:focus-visible {
  position: fixed;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #f5c842 0%, #e8a820 100%);
  z-index: -10;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  mix-blend-mode: multiply;
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(42, 26, 14, 0.96);
  mix-blend-mode: normal;
  padding: 1rem 3rem;
  backdrop-filter: blur(8px);
}
.nav.scrolled .nav__logo,
.nav.scrolled .nav__link {
  color: #f7f0dc;
}
.nav.scrolled .nav__cta {
  border-color: #f5c842;
  color: #f5c842;
}
.nav.scrolled .nav__cta:hover {
  background: #f5c842;
  color: #2a1a0e;
}

.nav__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0e05;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav__logo:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(42, 26, 14, 0.98);
    padding: 1.5rem 2rem;
    gap: 0;
  }
  .nav__links--open {
    display: flex;
  }
  .nav__links .nav__link {
    color: #f7f0dc;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(247, 240, 220, 0.08);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

.nav__link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a0e05;
  transition: opacity 0.3s;
  opacity: 0.75;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__link:hover {
  opacity: 1;
}
.nav__link:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
  opacity: 1;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a0e05;
  border-radius: 2px;
  transition: background 0.3s;
}
.scrolled .nav__toggle-bar {
  background: #f7f0dc;
}

.nav__cta {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #1a0e05;
  color: #1a0e05;
  padding: 0 1.25rem;
  border-radius: 99px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__cta:hover {
  background: #1a0e05;
  color: #f5c842;
}
.nav__cta:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
}

.hero__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b85c1e;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a0e05;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero__title em {
  font-style: italic;
  color: #3d1f5c;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #3d2010;
  max-width: 38ch;
  margin-top: 1.75rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d2010;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #3d2010, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero__stone {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__stone--a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 35%, rgba(107, 79, 160, 0.25), transparent 70%);
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}
.hero__stone--b {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 60% 50%, rgba(74, 124, 95, 0.2), transparent 70%);
  bottom: 20%;
  left: 3%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__stone--c {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 50% 50%, rgba(184, 112, 64, 0.3), transparent 70%);
  top: 30%;
  left: 12%;
  animation: float 6s ease-in-out infinite 2s;
}

.btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}
.btn--primary {
  background: #2a1a0e;
  color: #f5c842;
  box-shadow: 0 4px 24px rgba(42, 26, 14, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(42, 26, 14, 0.4);
}
.btn--ghost {
  background: transparent;
  color: #1a0e05;
  border: 1.5px solid rgba(26, 14, 5, 0.5);
}
.btn--ghost:hover {
  border-color: #1a0e05;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.trust {
  padding: 2.5rem 3rem;
  background: rgba(42, 26, 14, 0.07);
  border-top: 1px solid rgba(42, 26, 14, 0.12);
  border-bottom: 1px solid rgba(42, 26, 14, 0.12);
}
.trust__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust__label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d2010;
  white-space: nowrap;
}
.trust__stones {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.trust__stone {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a0e05;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust__stone::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3d1f5c;
  flex-shrink: 0;
}

.about {
  padding: 7rem 2rem;
  background: #2a1a0e;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, 0.08);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, 0.05);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5c842;
  margin-bottom: 1.25rem;
}
.about__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #f7f0dc;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.about__body {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  color: #d4c8a8;
  line-height: 1.8;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.about__stat {
  border-top: 1px solid rgba(245, 200, 66, 0.2);
  padding-top: 1.25rem;
}
.about__stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4c8a8;
  display: block;
  order: 2;
}
.about__stat-value {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #f5c842;
  line-height: 1;
  order: 1;
}
.about__visual {
  position: relative;
}
.about__geode {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50% 40% 50% 45%/45% 50% 40% 50%;
  background: linear-gradient(135deg, #b85c1e 0%, #c9853a 30%, #6b4fa0 60%, #4a7c5f 100%);
  box-shadow: 0 32px 80px rgba(42, 26, 14, 0.6), inset 0 0 60px rgba(247, 240, 220, 0.08);
  position: relative;
  animation: morphBlob 12s ease-in-out infinite alternate;
}
.about__geode::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50% 40% 50% 45%/45% 50% 40% 50%;
  background: linear-gradient(135deg, rgba(107, 79, 160, 0.6), rgba(245, 200, 66, 0.4));
  animation: morphBlob 8s ease-in-out infinite alternate-reverse;
}
.about__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 200, 66, 0.15);
}
.about__ring--1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}
.about__ring--2 {
  width: 125%;
  height: 125%;
  top: -12.5%;
  left: -12.5%;
}

.collection {
  padding: 7rem 2rem;
  background: #f2ede6;
  position: relative;
}
.collection__header {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.collection__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a3d8a;
  margin-bottom: 0.75rem;
}
.collection__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a0e05;
  line-height: 1.15;
}
.collection__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .collection__grid {
    grid-template-columns: 1fr;
  }
}
.collection__card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f7f0dc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.collection__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(42, 26, 14, 0.15);
}
.collection__card:hover .collection__card-img::after {
  opacity: 1;
}
.collection__card:focus-within {
  box-shadow: 0 0 0 3px #3d7a7a;
}
.collection__card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .collection__card--featured {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .collection__card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}
.collection__card--featured .collection__card-img {
  aspect-ratio: auto;
}
.collection__card-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.collection__card-img::after {
  content: "View";
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 26, 14, 0.6);
  color: #f7f0dc;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.collection__card-swatch {
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.collection__card-swatch--a {
  background: linear-gradient(135deg, #6b4fa0 0%, #3d1f5c 100%);
}
.collection__card-swatch--b {
  background: linear-gradient(135deg, #4a7c5f 0%, #2d4e3a 100%);
}
.collection__card-swatch--c {
  background: linear-gradient(135deg, #b85c1e 0%, #c9853a 100%);
}
.collection__card-swatch--d {
  background: linear-gradient(135deg, #b87040 0%, #e8a820 100%);
}
.collection__card-body {
  padding: 1.5rem;
}
.collection__card-stone {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a3d8a;
  margin-bottom: 0.5rem;
}
.collection__card-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0e05;
}
.collection__card-price {
  font-size: 0.95rem;
  color: #3d2010;
  margin-top: 0.35rem;
}
.collection__card-action {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a3210;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  transition: gap 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.collection__card-action:hover {
  gap: 0.875rem;
  text-decoration-thickness: 2px;
}
.collection__card-action:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}

.process {
  padding: 7rem 2rem;
  background: linear-gradient(160deg, #3d1f5c 0%, #261240 100%);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 79, 160, 0.25) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.process__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8b8e0;
  margin-bottom: 1rem;
}
.process__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f4eefc;
  max-width: 20ch;
  line-height: 1.15;
  margin-bottom: 4rem;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}
.process__step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 200, 66, 0.2);
}
.process__step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(245, 200, 66, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.process__step-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f4eefc;
  margin-bottom: 0.75rem;
}
.process__step-body {
  font-size: 0.95rem;
  color: #c8b8e0;
  line-height: 1.75;
}

.testimonials {
  padding: 7rem 2rem;
  background: linear-gradient(160deg, #f5c842 0%, #e8a820 100%);
}
.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b85c1e;
  margin-bottom: 0.75rem;
}
.testimonials__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a0e05;
  margin-bottom: 3.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__card {
  background: rgba(42, 26, 14, 0.08);
  border: 1px solid rgba(42, 26, 14, 0.14);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0;
}
.testimonials__card:hover {
  background: rgba(42, 26, 14, 0.13);
  transform: translateY(-4px);
}
.testimonials__quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #1a0e05;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f7f0dc;
  flex-shrink: 0;
}
.testimonials__avatar--a {
  background: #3d1f5c;
}
.testimonials__avatar--b {
  background: #4a7c5f;
}
.testimonials__avatar--c {
  background: #b85c1e;
}
.testimonials__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a0e05;
}
.testimonials__location {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d2010;
  margin-top: 0.1rem;
}
.testimonials__stones {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d2010;
  margin-top: 0.25rem;
}

.contact {
  padding: 7rem 2rem;
  background: #2a1a0e;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.contact__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4c8a8;
  margin-bottom: 1.25rem;
}
.contact__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: #f7f0dc;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.contact__sub {
  font-size: 1.05rem;
  color: #d4c8a8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact__form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 480px) {
  .contact__form {
    flex-direction: column;
  }
}
.contact__input {
  flex: 1;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 99px;
  border: 2px solid rgba(247, 240, 220, 0.25);
  background: rgba(247, 240, 220, 0.08);
  color: #f7f0dc;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact__input::placeholder {
  color: #d4c8a8;
}
.contact__input:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
  border-color: #f5c842;
}
.contact__input:invalid:not(:placeholder-shown) {
  border-color: #f08080;
}
.contact__note {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4c8a8;
}

.footer {
  background: #1e1208;
  padding: 3rem 3rem 2rem;
  border-top: 1px solid rgba(247, 240, 220, 0.08);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #f7f0dc;
  font-weight: 700;
}
.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.footer__link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4c8a8;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #f7f0dc;
}
.footer__link:focus-visible {
  outline: 3px solid #3d7a7a;
  outline-offset: 3px;
  border-radius: 3px;
}
.footer__copy {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4c8a8;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes morphBlob {
  0% {
    border-radius: 50% 40% 50% 45%/45% 50% 40% 50%;
  }
  100% {
    border-radius: 40% 55% 45% 50%/55% 40% 55% 40%;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-group > *:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-group > *:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal-group > *:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal-group > *:nth-child(4) {
  transition-delay: 0.4s;
}
.reveal-group > *:nth-child(5) {
  transition-delay: 0.5s;
}
.reveal-group > *:nth-child(6) {
  transition-delay: 0.6s;
}
.reveal-group > *:nth-child(7) {
  transition-delay: 0.7s;
}
.reveal-group > *:nth-child(8) {
  transition-delay: 0.8s;
}
.reveal-group > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=styles.css.map */
