:root {
  --milk: #fbf8f1;
  --cream: #fffdf8;
  --bg: #fffaf3;
  --petal: #f2dfd8;
  --rose: #d7aaa2;
  --pink: #e8b7c8;
  --sand: #e7d7bd;
  --sage: #a8a98b;
  --blue-stone: #7e97ad;
  --gold: #b89149;
  --gold-soft: #ead6a8;
  --caramel: #a86f3f;
  --caramel-soft: #d59a6b;
  --ink: #332c26;
  --text: #352c27;
  --muted: #756b62;
  --soft: #f7efe6;
  --line: rgba(184, 145, 73, 0.22);
  --shadow: 0 18px 44px rgba(88, 65, 42, 0.09);
  --shadow-lift: 0 24px 54px rgba(88, 65, 42, 0.13);
  --section-gap: clamp(40px, 4.6vw, 60px);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(251, 248, 241, 0.96) 42%, rgba(247, 239, 230, 0.72)),
    var(--milk);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(300px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
  padding: 6px clamp(18px, 3.4vw, 44px);
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid rgba(184, 145, 73, 0.16);
  backdrop-filter: blur(18px);
}

.logo {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.08;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.045em;
}


.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo img {
  width: auto;
  height: clamp(66px, 4.8vw, 72px);
  max-width: clamp(66px, 4.8vw, 72px);
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center center;
}

.brand-logo span {
  min-width: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(9px, 1.05vw, 14px);
  color: var(--muted);
  font-size: clamp(11.5px, 0.82vw, 12.5px);
  line-height: 1.2;
}

.main-nav a,
.contacts a {
  white-space: nowrap;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.main-nav a:hover,
.contacts a:hover {
  color: var(--gold);
  text-decoration-color: currentColor;
}

.header-button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.header-button,
.button.primary {
  background: #3f342b;
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(63, 52, 43, 0.15);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.button.small {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  background: #f7efe4;
  border-color: var(--line);
  color: var(--ink);
  font-size: 15px;
}

.button:hover,
.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(63, 52, 43, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-gap) 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(24px, 3.2vw, 38px) clamp(30px, 6.2vw, 96px);
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.985) 0%, rgba(255, 250, 243, 0.955) 36%, rgba(255, 250, 243, 0.72) 56%, rgba(255, 250, 243, 0.28) 78%, rgba(255, 250, 243, 0.08) 100%),
    url("assets/images/hero-bracelets.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  box-shadow:
    inset 0 0 130px rgba(234, 214, 168, 0.2),
    inset 0 -1px 0 rgba(201, 164, 92, 0.16);
}

.hero::before {
  position: absolute;
  top: clamp(36px, 5vw, 72px);
  left: clamp(30px, 6.5vw, 104px);
  width: min(300px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 92, 0.36), rgba(232, 183, 200, 0));
  content: "";
}

.hero::after {
  position: absolute;
  top: clamp(40px, 5vw, 78px);
  right: clamp(36px, 5vw, 86px);
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 253, 248, 0.9);
  background: rgba(255, 253, 248, 0.66);
  box-shadow:
    -54px 42px 0 -2px rgba(234, 214, 168, 0.82),
    22px 104px 0 -3px rgba(232, 183, 200, 0.7),
    -104px 154px 0 -2px rgba(255, 253, 248, 0.86),
    -190px 224px 0 -3px rgba(234, 214, 168, 0.7);
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-brand-watermark {
  position: absolute;
  right: clamp(24px, 7vw, 120px);
  bottom: clamp(18px, 4vw, 54px);
  width: min(430px, 38vw);
  aspect-ratio: 1;
  border: 2px solid rgba(168, 111, 63, 0.08);
  border-radius: 50%;
  opacity: 0.95;
  pointer-events: none;
}

.hero-brand-watermark::before,
.hero-brand-watermark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-brand-watermark::before {
  inset: 18px;
  border: 1px solid rgba(213, 154, 107, 0.09);
  border-top-color: transparent;
  border-left-color: rgba(168, 111, 63, 0.06);
  transform: rotate(-18deg);
}

.hero-brand-watermark::after {
  top: 22%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: rgba(168, 111, 63, 0.18);
  box-shadow:
    70px 44px 0 -1px rgba(184, 145, 73, 0.16),
    -92px 88px 0 -2px rgba(213, 154, 107, 0.16),
    30px 164px 0 -2px rgba(168, 111, 63, 0.14);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  align-self: center;
  padding-top: 4px;
}

.hero-content::after {
  position: absolute;
  top: -24px;
  right: min(12vw, 64px);
  width: 7px;
  height: 7px;
  border: 1px solid rgba(201, 164, 92, 0.42);
  background: rgba(255, 253, 248, 0.82);
  box-shadow:
    34px 54px 0 -1px rgba(232, 183, 200, 0.62),
    -42px 116px 0 -2px rgba(201, 164, 92, 0.38);
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  max-width: 660px;
  color: var(--gold);
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(34px, 3.15vw, 44px);
  line-height: 1.12;
}

h1 span {
  display: block;
  color: var(--gold);
  font-weight: 600;
}

.hero h1::after {
  display: block;
  width: 170px;
  height: 1px;
  margin: 10px 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(201, 164, 92, 0.22) 48%, transparent);
  content: "";
}

h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.4vw, 43px);
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
}

.hero-text {
  max-width: 560px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.16vw, 17px);
  line-height: 1.5;
}

.hero-text p {
  margin: 0;
}

.hero-text p + p {
  margin-top: 6px;
}

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

.hero .button.primary {
  background: linear-gradient(135deg, #b98f45, var(--gold-soft) 54%, #f3e3bd);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(184, 145, 73, 0.26);
}

.hero .button.secondary {
  background: rgba(255, 253, 248, 0.72);
  border-color: rgba(201, 164, 92, 0.36);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(88, 65, 42, 0.05);
}

.badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 10px;
  max-width: 590px;
  margin-top: 14px;
}

.badges span,
.size-examples span,
.purpose-list li {
  border: 1px solid rgba(184, 145, 73, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 14px;
}

.badges span {
  display: grid;
  min-height: 0;
  align-content: center;
  justify-items: center;
  gap: 8px;
  position: relative;
  padding: 9px 13px;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.badges span::before {
  position: static;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(201, 164, 92, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.6), rgba(234, 214, 168, 0.26));
  content: "";
  transform: rotate(45deg);
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 20px;
}

.section-heading p:not(.eyebrow) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.5;
}

.section-heading .catalog-current {
  font-size: 15px;
  line-height: 1.4;
}

.catalog-current a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.brand-crystal {
  position: relative;
  display: block;
  width: 34px;
  height: 28px;
  margin-bottom: 10px;
  opacity: 0.72;
}

.brand-crystal::before,
.brand-crystal::after {
  position: absolute;
  border: 1px solid rgba(168, 111, 63, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.7), rgba(234, 214, 168, 0.16));
  content: "";
  transform: rotate(45deg);
}

.brand-crystal::before {
  top: 7px;
  left: 3px;
  width: 15px;
  height: 15px;
}

.brand-crystal::after {
  top: 2px;
  left: 17px;
  width: 18px;
  height: 18px;
  box-shadow:
    25px 12px 0 -8px rgba(184, 145, 73, 0.28),
    -12px -8px 0 -8px rgba(168, 111, 63, 0.24);
}

.about {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(184, 145, 73, 0.16);
  padding-top: clamp(40px, 4.6vw, 60px);
  padding-bottom: clamp(40px, 4.6vw, 60px);
}

.about-text {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 5vw, 72px);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 0;
  border: 1px solid rgba(184, 145, 73, 0.16);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 92% 6%, rgba(234, 214, 168, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(247, 239, 230, 0.74));
  box-shadow: 0 18px 44px rgba(88, 65, 42, 0.06);
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.55;
}

.about-brand-logo {
  width: min(100%, 340px);
  height: auto;
  max-width: 340px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  opacity: 0.96;
}

.about-copy {
  max-width: 780px;
  min-width: 0;
}

.about-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
}

.about-copy p {
  min-width: 0;
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.about-copy p + p {
  margin-top: 12px;
}

.option-grid,
.work-grid,
.stone-grid,
.measure-grid,
.payment-grid,
.format-grid,
.size-guide-grid,
.care-grid {
  display: grid;
  gap: 14px;
}

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

.work-grid {
  align-items: stretch;
}

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

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

.size-guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.option-card,
.work-card,
.stone-card,
.measure-card,
.payment-card,
.step-card,
.format-card,
.size-guide-card,
.care-card {
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.option-card,
.stone-card,
.measure-card,
.payment-card,
.format-card,
.size-guide-card,
.care-card {
  padding: 18px;
}

.option-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
}

.option-card:hover,
.work-card:hover,
.stone-card:hover,
.measure-card:hover,
.payment-card:hover,
.step-card:hover,
.format-card:hover,
.size-guide-card:hover,
.care-card:hover {
  border-color: rgba(184, 145, 73, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.option-card h3 {
  min-height: 2.6em;
  margin: 0;
  line-height: 1.3;
}

.option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}


.care {
  border: 1px solid rgba(184, 145, 73, 0.14);
  border-radius: 22px;
  padding-right: clamp(18px, 3vw, 34px);
  padding-left: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 10% 10%, rgba(234, 214, 168, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(247, 239, 230, 0.74));
  box-shadow: 0 18px 44px rgba(88, 65, 42, 0.07);
}

.care-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  gap: 10px;
}

.care-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.care-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.format-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 10px;
}

.format-card h3,
.format-card p,
.format-card ul {
  margin: 0;
}

.format-card h3 {
  min-height: 56px;
  line-height: 1.3;
}

.format-card p,
.format-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.format-card ul {
  padding-left: 18px;
}

.format-card strong {
  color: var(--ink);
  font-size: 15px;
}

.format-card .option-mark {
  margin-bottom: 4px;
}

.format-price {
  margin-top: auto !important;
  padding-top: 10px;
  color: var(--gold) !important;
  font-weight: 800;
}

.format-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.size-guide-card h3,
.size-guide-card p {
  margin: 0;
}

.size-guide-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.option-mark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.stone-note,
.birth-date,
.payment {
  width: 100%;
  max-width: none;
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
}

.stone-note {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  background: #f5ecdf;
}

.stone-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 19px);
}

.stone-values {
  position: relative;
  border: 1px solid rgba(184, 145, 73, 0.14);
  border-radius: 28px;
  padding-right: clamp(18px, 3vw, 34px);
  padding-left: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 85% 12%, rgba(234, 214, 168, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(247, 239, 230, 0.78));
  box-shadow: 0 18px 44px rgba(88, 65, 42, 0.07);
}

.stone-values .section-heading {
  max-width: 820px;
}

.stones-carousel {
  position: relative;
  width: min(100%, 1120px);
  max-width: 100%;
  margin: 0 auto 28px;
}

.stones-carousel-track {
  display: flex;
  --stones-carousel-gap: clamp(18px, 2vw, 24px);
  gap: var(--stones-carousel-gap);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.stones-carousel-track::-webkit-scrollbar {
  display: none;
}

.stones-carousel-slide {
  flex: 0 0 calc((100% - (var(--stones-carousel-gap) * 2)) / 3);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 16px 36px rgba(88, 65, 42, 0.1);
  scroll-snap-align: start;
}

.stones-carousel-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.stones-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(184, 145, 73, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 30px rgba(88, 65, 42, 0.16);
  color: var(--gold);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.stones-carousel-button-prev { left: clamp(-18px, -1.6vw, -10px); }
.stones-carousel-button-next { right: clamp(-18px, -1.6vw, -10px); }

.stones-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.stones-carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(184, 145, 73, 0.28);
  cursor: pointer;
}

.stones-carousel-dots button.is-active {
  width: 26px;
  background: var(--gold);
}

.stone-wide-note {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(251, 243, 232, 0.78));
  box-shadow: 0 14px 38px rgba(88, 65, 42, 0.08);
}

.stone-wide-note span {
  width: max-content;
  border: 1px solid rgba(184, 145, 73, 0.24);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stone-wide-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.soft-note {
  margin: 18px 0 0;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 16px;
}

.necklace-size h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.necklace-size p {
  margin: 0;
}

.necklace-size .size-examples {
  margin-top: 12px;
}

.memory-note {
  display: grid;
  grid-template-columns: auto minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 14px 20px;
  margin-top: 18px;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 14px;
  padding: clamp(16px, 2.4vw, 22px);
  background:
    radial-gradient(circle at 0 0, rgba(234, 214, 168, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(251, 243, 232, 0.78));
  box-shadow: 0 16px 42px rgba(88, 65, 42, 0.07);
}

.memory-note .brand-crystal {
  align-self: start;
  margin-top: 2px;
}

.memory-note h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.3vw, 30px);
}

.memory-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.birth-date {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #f8eee9;
}

.birth-content p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 20px);
}

.purpose-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purpose-list li {
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 700;
}


.works-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding-inline: 58px;
}

.works-carousel-track {
  --works-gap: 18px;
  display: flex;
  align-items: stretch;
  grid-template-columns: none;
  gap: var(--works-gap);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.works-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.works-carousel-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(184, 145, 73, 0.12);
}

.works-carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(184, 145, 73, 0.42);
}

.works-carousel-track .work-card {
  flex: 0 0 calc((100% - (var(--works-gap) * 2)) / 3);
  min-width: 0;
  align-self: stretch;
  scroll-snap-align: start;
}

.works-carousel-button {
  position: absolute;
  top: 162px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 145, 73, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(88, 65, 42, 0.14);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.works-carousel-button:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.works-carousel-button-prev {
  left: 4px;
}

.works-carousel-button-next {
  right: 4px;
}

.work-card {
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.88);
}

.work-card > img,
.work-carousel {
  display: block;
  flex: 0 0 clamp(300px, 25vw, 340px);
  width: 100%;
  height: clamp(300px, 25vw, 340px);
  border-bottom: 1px solid rgba(184, 145, 73, 0.1);
  background: linear-gradient(135deg, var(--soft), var(--cream));
  overflow: hidden;
}

.work-card > img,
.work-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.work-card > img {
  padding: 0;
  transition: transform 420ms ease;
}

.work-image--decorative-pins {
  object-fit: contain;
  object-position: center;
}

.work-carousel {
  position: relative;
}

.work-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  transition: opacity 220ms ease, transform 420ms ease;
}

.work-card:hover > img,
.work-card:hover .work-carousel img.is-active {
  transform: scale(1.02);
}

.carousel-button,
.stones-carousel-button {
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.carousel-button:hover,
.stones-carousel-button:hover {
  background: var(--cream);
  box-shadow: 0 14px 28px rgba(88, 65, 42, 0.16);
}

.work-carousel img.is-active {
  opacity: 1;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 145, 73, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 0 0 1px rgba(184, 145, 73, 0.24);
}

.carousel-dots span.is-active {
  background: var(--gold);
}

.work-body {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
}

.work-body h3 {
  align-self: start;
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.work-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.work-type {
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-stones {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.work-body .work-spec,
.work-important {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.work-important {
  border-left: 3px solid rgba(184, 145, 73, 0.28);
  padding-left: 10px;
}

.work-description {
  font-size: 14px;
  line-height: 1.45;
}

.work-body strong {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-size: 18px;
}

.work-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  padding-bottom: 0;
}

.mobile-swipe-hint {
  display: none;
}

.work-price {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 100%;
  opacity: 1;
  visibility: visible;
  color: var(--caramel) !important;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.work-price-label,
.work-price-value {
  display: block;
}

.work-price-label {
  font-size: 16px;
  line-height: 1.45;
}

.work-price-value {
  margin-top: 6px;
  font-size: 20px;
}

.work-body .work-price-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.work-body .button {
  width: 100%;
  margin-top: 0;
}

.examples-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(251, 243, 232, 0.76));
  color: var(--muted);
  box-shadow: 0 14px 38px rgba(88, 65, 42, 0.08);
}

.examples-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}


.order-wish {
  max-width: 860px;
  margin: 18px auto 0;
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 14px;
  padding: clamp(18px, 2.5vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(251, 243, 232, 0.76));
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.38;
  text-align: center;
  box-shadow: 0 14px 38px rgba(88, 65, 42, 0.08);
}

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

.measure-card {
  min-height: 144px;
}

.size-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.size-examples span {
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 700;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  min-height: 0;
  padding: 20px 22px;
}

.step-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.step-card p + p {
  margin-top: 8px;
}

.step-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
}

.payment {
  background: #f5ecdf;
}

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

.payment-card {
  min-height: 104px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factor-list li {
  border: 1px solid rgba(184, 145, 73, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  box-shadow: var(--shadow);
}

.request {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(20px, 3.4vw, 42px);
  align-items: start;
  border-top: 1px solid rgba(184, 145, 73, 0.16);
  border-bottom: 1px solid rgba(184, 145, 73, 0.16);
  padding: clamp(28px, 3.8vw, 48px) clamp(30px, 6.5vw, 104px);
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88) 0%, rgba(255, 250, 243, 0.70) 34%, rgba(255, 250, 243, 0.42) 54%, rgba(255, 250, 243, 0.72) 72%, rgba(255, 250, 243, 0.93) 100%),
    radial-gradient(circle at 21% 44%, rgba(232, 183, 200, 0.22), transparent 34%),
    radial-gradient(circle at 57% 26%, rgba(234, 214, 168, 0.34), transparent 30%),
    url("assets/images/form-bracelets-bg.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 150px rgba(234, 214, 168, 0.23),
    inset 0 -1px 0 rgba(201, 164, 92, 0.12);
}

.request::before {
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  left: clamp(22px, 5vw, 58px);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 145, 73, 0.38), transparent);
  content: "";
}

.request::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 56%, rgba(255, 246, 224, 0.30), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(234, 214, 168, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(255, 250, 243, 0.18));
  content: "";
  pointer-events: none;
}

.request .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding-top: clamp(2px, 1.2vw, 12px);
}

.request .section-heading h2 {
  max-width: 560px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 0.98;
}

.request .section-heading p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.45;
}

.request-form {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(184, 145, 73, 0.24);
  border-radius: 14px;
  padding: clamp(18px, 2.4vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(251, 243, 232, 0.88));
  box-shadow:
    0 24px 62px rgba(88, 65, 42, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.62) inset;
  backdrop-filter: blur(10px);
}

.form-required-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.required-mark,
.form-required-note span {
  color: #9a594d;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.form-field,
.form-consent {
  display: grid;
  gap: 5px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span,
.form-label-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.form-label-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.form-label-row label {
  min-width: 0;
  line-height: 1.35;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(184, 145, 73, 0.2);
  border-radius: 8px;
  padding: 9px 13px;
  background: rgba(255, 250, 243, 0.86);
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 86px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(184, 145, 73, 0.54);
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(234, 214, 168, 0.24);
}

.form-consent {
  grid-template-columns: 20px 1fr;
  gap: 9px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.form-consent a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 18px;
  margin: 6px 0 0;
  color: #9a594d;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #4f7f52;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-actions .button {
  flex: 1 1 210px;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(184, 145, 73, 0.16);
  padding-top: clamp(34px, 4vw, 48px);
  padding-bottom: clamp(34px, 4vw, 48px);
}

.contacts p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contacts a:not(.button) {
  color: var(--ink);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 430px);
}

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

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

.contact-action-group .button {
  flex: 1 1 200px;
}

.contact-channel-group {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.contact-channel-group h3 {
  margin: 0;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.85fr) minmax(250px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 30px clamp(20px, 4vw, 58px);
  border-top: 1px solid rgba(184, 145, 73, 0.16);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  min-width: 0;
}

.footer-brand img {
  width: auto;
  height: clamp(64px, 5vw, 80px);
  max-width: clamp(64px, 5vw, 80px);
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center center;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.055em;
}

.footer-brand small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer > span {
  align-self: center;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px 16px;
  text-align: right;
}

.footer-links a {
  color: var(--muted);
  line-height: 1.45;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

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


.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: flex;
  width: min(920px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  border: 1px solid rgba(184, 145, 73, 0.22);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 44px rgba(88, 65, 42, 0.16);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-banner .button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 10px 18px;
}

.legal-page {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 0;
}

.legal-page .logo {
  display: inline-block;
  margin-bottom: 28px;
}

.legal-page h1 {
  margin-bottom: 22px;
  font-size: clamp(32px, 5vw, 48px);
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.legal-page .button {
  margin-top: 16px;
}

.offer-page {
  width: min(880px, calc(100% - 40px));
  padding-top: clamp(32px, 6vw, 68px);
}

.offer-header {
  margin-bottom: clamp(34px, 6vw, 58px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(26px, 4vw, 40px);
}

.offer-page .offer-title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.035em;
}

.offer-page .offer-subtitle {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.8vw, 25px);
  line-height: 1.4;
}

.offer-page .offer-edition {
  margin: 18px 0 0;
  font-size: 15px;
}

.offer-section {
  margin-top: clamp(30px, 5vw, 48px);
  scroll-margin-top: 24px;
}

.offer-page .offer-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3.5vw, 31px);
  line-height: 1.25;
}

.offer-page .offer-section p,
.offer-page .offer-section li {
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.75;
}

.offer-page .offer-section p {
  margin: 0 0 14px;
}

.offer-page .offer-section ul {
  margin: 10px 0 18px;
  padding-left: 1.4em;
}

.offer-page .offer-section li + li {
  margin-top: 6px;
}

.offer-page .offer-section a:not(.button) {
  color: var(--caramel);
  font-weight: 700;
  text-underline-offset: 3px;
}

.offer-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow);
}

.offer-details address {
  font-style: normal;
}

.offer-actions {
  margin-top: clamp(32px, 5vw, 48px);
}

@media (max-width: 520px) {
  .offer-page {
    width: min(100% - 28px, 880px);
    padding-bottom: 44px;
  }

  .offer-page .logo {
    white-space: normal;
  }

  .offer-page .offer-section h2 {
    overflow-wrap: anywhere;
  }

  .offer-page .offer-section ul {
    padding-left: 1.2em;
  }

  .offer-actions .button {
    width: 100%;
    white-space: normal;
  }
}

.animations-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.animations-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.hero .eyebrow,
.hero h1,
.hero-text,
.hero-actions,
.hero-audience {
  animation: heroFadeUp 680ms ease both;
}

.hero h1 { animation-delay: 90ms; }
.hero-text { animation-delay: 170ms; }
.hero-actions { animation-delay: 250ms; }
.hero-audience { animation-delay: 330ms; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .animations-ready .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
  }

  .brand-logo img {
    height: 58px;
    max-width: 58px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-button {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid rgba(184, 145, 73, 0.16);
  }

  .stone-note,
  .birth-date,
  .request,
  .contacts {
    grid-template-columns: 1fr;
  }

  .about-text {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 40px;
    max-width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: minmax(250px, 1fr) minmax(200px, 0.8fr);
  }

  .memory-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .memory-note p:last-child {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    text-align: left;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(255, 250, 243, 0.985) 0%, rgba(255, 250, 243, 0.95) 48%, rgba(255, 250, 243, 0.76) 70%, rgba(255, 250, 243, 0.28) 100%),
      url("assets/images/hero-bracelets.jpg");
    background-position: 68% center;
    background-size: cover;
  }

  .option-grid,
  .work-grid,
  .stone-grid,
  .measure-grid,
  .payment-grid,
  .format-grid,
  .size-guide-grid,
  .factor-list,
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 18px;
  }

  .brand-logo img {
    height: 50px;
    max-width: 50px;
  }
}

@media (min-width: 1024px) {
  .examples {
    padding-bottom: 64px;
  }

  .works-carousel {
    margin-bottom: 28px;
  }

  .works-carousel-track {
    align-items: stretch;
    padding-bottom: 14px;
  }

  .works-carousel-track .work-card {
    display: flex;
    min-height: 600px;
    height: auto;
    flex-direction: column;
  }

  .work-card > img,
  .work-carousel {
    flex: 0 0 300px;
    height: 300px;
  }

  .work-body {
    flex: 1 1 auto;
    padding: 24px 24px 22px;
    gap: 8px;
  }

  .work-body h3 {
    line-height: 1.25;
  }

  .work-body p,
  .work-description {
    line-height: 1.42;
  }

  .work-type {
    line-height: 1.35;
  }

  .work-stones,
  .work-body .work-spec,
  .work-important {
    line-height: 1.4;
  }

  .work-footer {
    margin-top: auto;
    gap: 10px;
    padding-top: 8px;
  }
}

@media (max-width: 1100px) {
  .stones-carousel-slide {
    flex-basis: calc((100% - var(--stones-carousel-gap)) / 2);
  }
}

@media (max-width: 820px) {
  .stones-carousel-slide {
    flex-basis: 100%;
  }

  .stones-carousel-button-prev { left: 10px; }
  .stones-carousel-button-next { right: 10px; }
}

@media (max-width: 680px) {
  :root {
    --section-gap: 42px;
  }

  .site-header {
    max-width: 100%;
    padding: 12px max(14px, env(safe-area-inset-left)) 12px max(14px, env(safe-area-inset-right));
  }

  .logo {
    max-width: min(68vw, 280px);
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-logo span {
    white-space: normal;
  }

  .brand-logo img {
    height: 54px;
    max-width: 54px;
  }

  .section {
    width: min(100% - 28px, 1120px);
  }

  .stone-note,
  .birth-date,
  .payment,
  .stone-values,
  .care {
    padding-right: 14px;
    padding-left: 14px;
  }


  .about {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-text {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 20px;
    font-size: 16px;
  }

  .about-copy {
    width: 100%;
    max-width: 680px;
  }

  .about-brand-logo {
    width: min(250px, 70vw);
    max-width: 250px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 22px max(18px, env(safe-area-inset-left)) 28px max(18px, env(safe-area-inset-right));
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.99) 0%, rgba(255, 250, 243, 0.965) 42%, rgba(255, 250, 243, 0.84) 65%, rgba(255, 250, 243, 0.5) 100%),
      url("assets/images/hero-bracelets.jpg");
    background-position: 64% bottom;
    background-size: cover;
  }

  .hero::before {
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
    width: auto;
    max-width: none;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-brand-watermark {
    right: -72px;
    bottom: 22px;
    width: min(280px, 78vw);
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: clamp(27px, 6.9vw, 32px);
    line-height: 1.14;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-text p + p {
    margin-top: 6px;
  }

  h2 {
    font-size: 26px;
  }

  .hero h1::after {
    margin-top: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions,
  .form-actions,
  .contacts,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .badges {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .badges span {
    min-width: 0;
    min-height: 0;
    gap: 7px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .badges span::before {
    width: 25px;
    height: 25px;
  }

  .option-grid,
  .work-grid,
  .stone-grid,
  .measure-grid,
  .payment-grid,
  .format-grid,
  .size-guide-grid,
  .factor-list,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .option-card,
  .measure-card,
  .payment-card,
  .format-card,
  .size-guide-card,
  .factor-list li,
  .care-card {
    min-height: auto;
    padding: 16px;
  }

  .option-card h3 {
    min-height: auto;
  }

  .stones-carousel {
    margin-bottom: 22px;
  }

  .stones-carousel-slide {
    flex-basis: 100%;
    border-radius: 18px;
  }

  .stones-carousel-button {
    display: none;
  }

  .memory-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .memory-note p:last-child {
    grid-column: auto;
  }

  .work-card > img,
  .work-carousel {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: clamp(270px, 82vw, 340px);
    aspect-ratio: auto;
  }

  .work-card {
    display: flex;
    max-width: 100%;
    min-height: 0;
    height: auto;
    flex-direction: column;
    overflow: hidden;
  }

  .work-body {
    display: flex;
    min-width: 0;
    min-height: 0;
    height: auto;
    flex: 0 1 auto;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .work-body h3 {
    min-width: 0;
    min-height: 0;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .work-type,
  .work-stones,
  .work-description,
  .work-body .work-spec,
  .work-important {
    display: block;
    min-width: 0;
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .work-type {
    letter-spacing: 0.03em;
  }

  .work-footer {
    position: static;
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .work-body .mobile-swipe-hint {
    display: block;
    margin: 2px 0 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-align: center;
  }

  .work-price,
  .work-body strong.work-price {
    display: block;
    min-width: 0;
    min-height: 0;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .work-body .button.small {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    margin-top: 0;
    white-space: normal;
  }

  .order-wish {
    margin-top: 14px;
    font-size: 19px;
    line-height: 1.42;
    text-align: left;
  }

  .format-card h3 {
    min-height: 0;
  }

  .step-list {
    gap: 14px;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 20px;
  }

  .request {
    width: 100%;
    padding: 26px 14px;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.93) 0%, rgba(255, 250, 243, 0.82) 42%, rgba(255, 250, 243, 0.64) 100%),
      radial-gradient(circle at 42% 20%, rgba(234, 214, 168, 0.32), transparent 34%),
      url("assets/images/form-bracelets-bg.jpg");
    background-position: 38% center;
    background-size: cover;
  }

  .request .section-heading h2 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1;
  }

  .request .section-heading p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .request-form {
    padding: 16px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 10px 12px;
  }

  .form-field textarea {
    min-height: 78px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand img {
    width: auto;
    height: clamp(56px, 15vw, 68px);
    max-width: clamp(56px, 15vw, 68px);
    flex-basis: auto;
    object-fit: contain;
  }

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

  .about-text {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .about-brand-logo {
    width: min(240px, 68vw);
    max-width: 240px;
  }

  .cookie-banner {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner .button {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .works-carousel-track .work-card {
    flex-basis: calc((100% - var(--works-gap)) / 2);
  }
}

@media (max-width: 680px) {
  .works-carousel {
    overflow: visible;
    padding-inline: 0;
  }

  .works-carousel-track {
    --works-gap: 14px;
    width: 100%;
    padding: 2px 0 14px;
    scroll-padding-inline: 0;
  }

  .works-carousel-track .work-card {
    flex-basis: min(100%, calc(100vw - 28px));
  }

  .works-carousel-button {
    display: none;
  }

}

@media (min-width: 1121px) and (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(238px, auto) minmax(0, 1fr) auto;
    padding-inline: 24px;
    gap: 10px;
  }

  .logo {
    font-size: 16px;
    letter-spacing: 0.035em;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-logo img {
    height: 64px;
    max-width: 64px;
  }

  .main-nav {
    gap: 8px;
    font-size: 11.5px;
  }

  .header-button {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .hero .eyebrow {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 16px;
  }
}
