:root {
  --ink: #1d2527;
  --muted: #667477;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --soft: #eef6f4;
  --sea: #0d6d71;
  --sea-dark: #09494d;
  --coral: #b96354;
  --gold: #c5912f;
  --line: rgba(29, 37, 39, 0.14);
  --shadow: 0 18px 44px rgba(20, 32, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand span,
.eyebrow,
.product-card span,
.store-card > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  font-size: 19px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.top-nav,
.header-tools,
.language-switcher,
.hero-actions {
  display: flex;
  align-items: center;
}

.top-nav {
  justify-content: center;
  gap: 26px;
  color: #344245;
  font-size: 14px;
  white-space: nowrap;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--sea);
}

.header-tools {
  justify-content: end;
  gap: 12px;
}

.language-switcher {
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.language-switcher button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--sea);
  color: #ffffff;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--sea);
  border-radius: 6px;
  background: var(--sea);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.header-action:hover {
  background: var(--sea-dark);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82svh;
  overflow: hidden;
  background: #f3f0ea;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 145px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0), var(--paper));
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.78) 42%, rgba(251, 250, 247, 0.08)),
    url("assets/store-rings-mix.jpg");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 0 88px 7vw;
}

.eyebrow {
  margin: 0 0 12px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: #344245;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

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

.button.primary {
  background: var(--sea);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--sea-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #ffffff;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-row article {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-row article:last-child {
  border-right: 0;
}

.proof-row span,
.visit-steps span {
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
}

.proof-row strong {
  display: block;
  margin-top: 14px;
  font-size: 21px;
}

.proof-row p {
  margin-top: 10px;
}

.section,
.visit-section {
  width: min(1180px, calc(100% - 48px));
  margin: 82px auto;
}

.section-head,
.gallery-copy,
.map-copy {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.wholesale-product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(20, 32, 34, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
}

.featured-card img {
  aspect-ratio: 1;
}

.product-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.product-card h3 {
  font-size: 20px;
}

.wholesale-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.client-grid article {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(13, 109, 113, 0.18);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(20, 32, 34, 0.07);
}

.gallery-band {
  padding: 72px max(24px, calc((100% - 1180px) / 2));
  background: var(--soft);
  border-top: 1px solid rgba(13, 109, 113, 0.18);
  border-bottom: 1px solid rgba(13, 109, 113, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(29, 37, 39, 0.1);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(20, 32, 34, 0.08);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.store-card,
.visit-steps article,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.store-card {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.store-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.store-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.store-card dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.store-actions {
  display: grid;
  gap: 10px;
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.visit-steps article {
  min-height: 220px;
  padding: 24px;
}

.visit-steps h3 {
  margin-top: 20px;
  font-size: 20px;
}

.visit-steps p {
  margin-top: 12px;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 78px max(24px, calc((100% - 1180px) / 2));
  background: #f5f7f7;
  border-top: 1px solid var(--line);
}

.map-copy {
  align-content: start;
  margin-bottom: 0;
}

.map-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.map-panel {
  min-height: 380px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  height: 100%;
  min-height: 380px;
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13, 109, 113, 0.12), rgba(197, 145, 47, 0.12)),
    #ffffff;
}

.map-placeholder strong {
  font-size: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f7a4d;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp:hover {
  background: #17663e;
  color: #ffffff;
}

@media (min-width: 900px) {
  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wholesale-product-grid,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 22px;
  }

  .top-nav {
    justify-content: start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .header-tools {
    justify-content: space-between;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-copy {
    margin: 0 auto 74px;
  }

  .proof-row,
  .product-grid,
  .wholesale-product-grid,
  .client-grid,
  .visit-layout,
  .visit-steps,
  .map-section {
    grid-template-columns: 1fr;
  }

  .proof-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 18px;
  }

  .top-nav {
    gap: 16px;
  }

  .header-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .language-switcher {
    justify-content: space-between;
    width: 100%;
  }

  .header-action,
  .button {
    width: 100%;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.78) 52%, rgba(251, 250, 247, 0.18)),
      url("assets/store-rings-mix.jpg");
    background-position: center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-bottom: 96px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .section,
  .visit-section {
    width: calc(100% - 32px);
    margin: 60px auto;
  }

  .gallery-band,
  .map-section {
    padding: 56px 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .store-card,
  .visit-steps article {
    padding: 20px;
  }

  .map-panel,
  .map-panel iframe,
  .map-placeholder {
    min-height: 310px;
  }

  .site-footer {
    display: grid;
    padding: 28px 16px;
  }

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