:root {
  --navy: #17325d;
  --navy-deep: #102746;
  --blue: #8095bf;
  --blue-soft: #dbe3f0;
  --gold: #bc8337;
  --gold-soft: #e9d0a5;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --ink: #22334d;
  --muted: #677184;
  --line: rgba(23, 50, 93, 0.14);
  --green: #1e8d62;
  --shadow: 0 22px 60px rgba(26, 45, 76, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

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

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #d29c51;
  outline-offset: 4px;
}

.topbar {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 7px 20px;
  color: #fff;
  background: var(--navy);
  font-size: 0.71rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.topbar__star {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(30, 43, 67, 0.06);
}

.header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 108px;
  height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 650;
}

.nav > a:not(.button) {
  position: relative;
}

.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-align: center;
  transition: transform 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 19px;
  color: #fff;
  background: var(--navy);
}

.button--primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(23, 50, 93, 0.18);
}

.button--primary:hover,
.button--small:hover {
  background: #244577;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 6px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 50, 93, 0.35);
  font-size: 0.88rem;
  font-weight: 750;
  transition: gap 0.2s, border-color 0.2s;
}

.text-link:hover,
.card-link:hover {
  gap: 16px;
  border-color: var(--navy);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--cream);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(248, 245, 238, 0.9), rgba(248, 245, 238, 0.25)), url("assets/images/pattern.png");
  background-position: center, center;
  background-size: auto, 760px auto;
  opacity: 0.23;
}

.hero::after {
  position: absolute;
  bottom: -160px;
  left: 46%;
  width: 500px;
  height: 500px;
  background: rgba(128, 149, 191, 0.14);
  border-radius: 50%;
  content: "";
  filter: blur(10px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  padding-block: 78px 92px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 27px;
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  letter-spacing: -0.06em;
}

.hero h1 em {
  display: block;
  font-size: 0.58em;
  letter-spacing: -0.025em;
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 33px;
  color: #536077;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-bottom: 25px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(30, 141, 98, 0.35);
  border-radius: 50%;
  content: "";
}

.hero__visual {
  position: relative;
  min-height: 555px;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--main {
  top: 0;
  right: 22px;
  width: min(68%, 390px);
  height: 515px;
  border-radius: 190px 190px 28px 28px;
}

.photo-frame--accent {
  bottom: -5px;
  left: 0;
  width: 230px;
  height: 290px;
  border: 10px solid var(--paper);
  border-radius: 120px 120px 24px 24px;
}

.hero__seal {
  position: absolute;
  top: 40px;
  left: 22px;
  display: flex;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--navy);
  background: #fbf8f0;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(36, 50, 76, 0.12);
  font-family: var(--serif);
  line-height: 1.08;
  transform: rotate(-8deg);
}

.hero__seal::before,
.hero__seal::after {
  color: var(--gold);
  content: "✦";
  font-size: 0.62rem;
}

.hero__seal strong {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.hero__seal span {
  font-size: 0.67rem;
}

.hero__flower {
  position: absolute;
  right: -36px;
  bottom: 20px;
  width: 100px;
  fill: rgba(128, 149, 191, 0.18);
  stroke: var(--blue);
  stroke-width: 1.5;
}

.trust-bar {
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--navy);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar__grid > div {
  display: grid;
  padding: 26px 34px;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-bar__grid > div:last-child {
  border-right: 0;
}

.trust-bar__grid span {
  grid-row: 1 / 3;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.trust-bar__grid strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.trust-bar__grid small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.story {
  background: var(--paper);
}

.story__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 95px;
}

.story__visual {
  position: relative;
  padding: 0 0 48px 38px;
}

.story__visual::before {
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 0;
  width: 72%;
  background: var(--blue-soft);
  border-radius: 170px 170px 24px 24px;
  content: "";
}

.story__image {
  position: relative;
  overflow: hidden;
  height: 650px;
  border-radius: 190px 190px 22px 22px;
  box-shadow: var(--shadow);
}

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

.handwritten {
  position: absolute;
  right: -55px;
  bottom: 0;
  width: 260px;
  margin: 0;
  padding: 18px 23px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 14px 40px rgba(30, 45, 70, 0.1);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-2deg);
}

.story__content {
  max-width: 610px;
}

.story__intro {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.05rem;
}

.values {
  display: grid;
  gap: 0;
}

.values article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.values article > span {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.values h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 750;
}

.values p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.collections {
  background: #f1f3f7;
}

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

.section-heading h2 {
  margin: 0;
}

.section-heading > p,
.section-heading > div + p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 580px;
  margin: 0 auto;
}

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

.collection-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 50, 93, 0.09);
  border-radius: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
  box-shadow: 0 20px 50px rgba(25, 40, 68, 0.12);
  transform: translateY(-7px);
}

.collection-card__image {
  position: relative;
  height: 410px;
  overflow: hidden;
}

.collection-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(17, 31, 57, 0.3));
  content: "";
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.collection-card__number {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 15px;
  color: #fff;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-style: italic;
}

.collection-card__body {
  padding: 29px 27px 31px;
}

.tag {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.collection-card p:not(.tag) {
  min-height: 74px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.collections__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
  padding: 23px 29px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.collections__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.collections__footer a {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.process__pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/pattern.png");
  background-position: center;
  background-size: 680px;
  opacity: 0.035;
}

.process .container {
  position: relative;
}

.process__steps {
  display: grid;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process__steps::before {
  position: absolute;
  top: 92px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: var(--gold-soft);
  content: "";
}

.process-step {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.process-step__number {
  position: absolute;
  top: 0;
  left: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.process-step__icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  margin: 36px auto 25px;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-size: 0.88rem;
  letter-spacing: 4px;
  box-shadow: 0 10px 30px rgba(23, 50, 93, 0.06);
}

.process-step__icon--large {
  font-size: 2.2rem;
}

.process-step__icon--medal {
  color: var(--gold);
  font-size: 2.3rem;
}

.process-step__icon--letters {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.palette {
  padding: 95px 0;
  background: var(--blue-soft);
}

.palette__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.palette__content > p:not(.eyebrow) {
  max-width: 460px;
  color: #596981;
}

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

.swatch {
  position: relative;
  display: flex;
  height: 142px;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 16px;
  background: #ccc;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 80px 80px 18px 18px;
  box-shadow: 0 10px 25px rgba(37, 55, 84, 0.08);
}

.swatch::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 44px;
  height: 44px;
  background: currentColor;
  border: 6px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: inset 3px 4px 8px rgba(255, 255, 255, 0.38), 0 5px 11px rgba(0, 0, 0, 0.12);
  content: "";
  transform: translateX(-50%);
}

.swatch span,
.swatch small {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}

.swatch span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.swatch small {
  font-family: var(--serif);
  font-size: 0.95rem;
}

.swatch--turquoise { color: #128f9d; background: #359da8; }
.swatch--lilac { color: #9b83cf; background: #a693d5; }
.swatch--rose { color: #b77983; background: #c68e96; }
.swatch--wine { color: #682b48; background: #7b3854; }
.swatch--pearl { color: #f0e8d9; background: #c5bcae; }
.swatch--green { color: #27775d; background: #43836d; }
.swatch--blue { color: #3b5c87; background: #557198; }
.swatch--wood { color: #583828; background: #76533e; }

.customizer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.customizer::before {
  position: absolute;
  top: -300px;
  left: -300px;
  width: 700px;
  height: 700px;
  background: rgba(128, 149, 191, 0.1);
  border-radius: 50%;
  content: "";
}

.customizer__ornament {
  position: absolute;
  top: 50px;
  right: 6%;
  color: rgba(233, 208, 165, 0.15);
  font-size: 12rem;
  line-height: 1;
}

.customizer .container {
  position: relative;
}

.customizer__heading {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.customizer__heading h2 {
  margin: 0;
  color: #fff;
}

.customizer__heading p:last-child {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.64);
}

.customizer__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
}

.builder,
.order-summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.builder {
  padding: 38px;
  background: rgba(255, 255, 255, 0.055);
}

.builder__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.builder__progress span {
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}

.builder__progress .is-active {
  background: var(--gold-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.form-row label span {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.form-row select,
.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 53px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-row textarea {
  min-height: 90px;
  resize: vertical;
}

.form-row select:focus,
.form-row input:focus,
.form-row textarea:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(233, 208, 165, 0.12);
}

.form-row select option,
.form-row select optgroup {
  color: var(--ink);
  background: #fff;
}

.form-row ::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-row.is-invalid select {
  border-color: #e5a59b;
  box-shadow: 0 0 0 3px rgba(229, 165, 155, 0.13);
}

.order-summary {
  position: sticky;
  top: 115px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
}

.order-summary__visual {
  position: relative;
  height: 185px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 14px;
}

.order-summary__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 22, 42, 0.65));
  content: "";
}

.order-summary__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
}

.order-summary__visual span {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.order-summary dl {
  margin: 0 0 24px;
}

.order-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.order-summary dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.72rem;
  font-weight: 650;
  text-align: right;
}

.button--whatsapp {
  width: 100%;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.17);
}

.button--whatsapp:hover {
  background: #197c56;
}

.button--whatsapp svg {
  width: 20px;
  fill: currentColor;
}

.order-summary__note {
  margin: 13px 4px 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.gallery {
  background: var(--paper);
}

.gallery__grid {
  display: grid;
  height: 740px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 17px;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

.gallery__item--tall {
  grid-row: 1 / 3;
}

.gallery__item--wide {
  grid-column: 2 / 4;
}

.gallery__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 18px;
  text-align: center;
}

.gallery__quote span {
  height: 48px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.gallery__quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.25;
}

.faq {
  background: var(--cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faq__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 27px 52px 27px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 650px;
  margin: -8px 0 27px;
  color: var(--muted);
  font-size: 0.91rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #edf0f6;
}

.final-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/pattern.png");
  background-position: center;
  background-size: 640px;
  opacity: 0.16;
}

.final-cta::after {
  position: absolute;
  inset: 45px max(24px, calc((100% - var(--container)) / 2));
  background: rgba(255, 253, 248, 0.91);
  border: 1px solid rgba(188, 131, 55, 0.25);
  border-radius: 170px 170px 26px 26px;
  content: "";
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta__content img {
  width: 115px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 9px;
}

.final-cta__content .eyebrow {
  justify-content: center;
}

.final-cta__content h2 {
  margin-bottom: 18px;
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255, 255, 255, 0.7);
  background: #0d213d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 90px;
  padding-bottom: 55px;
}

.footer__brand img {
  width: 130px;
  height: 92px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__brand p {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.45;
}

.footer__grid h2 {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-size: 0.82rem;
}

.footer__grid a:hover {
  color: #fff;
}

.footer__grid small {
  max-width: 220px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(17, 74, 53, 0.27);
  font-size: 0.75rem;
  font-weight: 750;
  transition: transform 0.2s, background 0.2s;
}

.floating-whatsapp:hover {
  background: #197c56;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1050px) {
  .nav {
    gap: 18px;
  }

  .nav > a:not(.button) {
    display: none;
  }

  .hero__grid {
    gap: 35px;
  }

  .story__grid {
    gap: 60px;
  }

  .handwritten {
    right: -25px;
  }

  .customizer__layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .topbar {
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .header__inner {
    min-height: 76px;
  }

  .brand img {
    width: 92px;
    height: 60px;
  }

  .menu-button {
    z-index: 2;
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    z-index: 1;
    inset: 100% 0 auto;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 0 24px;
    background: var(--paper);
    box-shadow: 0 22px 40px rgba(21, 35, 61, 0.11);
    opacity: 0;
    transition: max-height 0.35s, padding 0.35s, opacity 0.25s;
  }

  .nav.is-open {
    max-height: 520px;
    padding-block: 23px 30px;
    opacity: 1;
  }

  .nav > a:not(.button) {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
  }

  .nav .button {
    margin-top: 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 65px 80px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3.5rem, 13vw, 5.3rem);
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 610px);
    min-height: 590px;
    margin: 15px auto 0;
  }

  .photo-frame--main {
    width: 72%;
  }

  .photo-frame--accent {
    width: 44%;
    height: 320px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .story__grid,
  .palette__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .story__visual {
    width: min(92%, 520px);
    margin: 0 auto;
  }

  .story__content {
    max-width: none;
  }

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

  .collection-card:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 12px);
    margin-inline: auto;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }

  .process__steps::before {
    display: none;
  }

  .palette__grid {
    gap: 48px;
  }

  .customizer__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .order-summary {
    position: static;
  }

  .gallery__grid {
    height: 900px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.65fr 1fr;
  }

  .gallery__item--tall {
    grid-row: 1 / 3;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
  }

  .faq__grid {
    gap: 50px;
  }

  .faq__heading {
    position: static;
  }
}

@media (max-width: 570px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .topbar__star {
    display: none;
  }

  .hero__grid {
    padding-top: 51px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.7rem);
  }

  .hero__lead {
    font-size: 0.95rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__visual {
    min-height: 460px;
  }

  .photo-frame--main {
    right: 0;
    width: 78%;
    height: 420px;
  }

  .photo-frame--accent {
    width: 48%;
    height: 245px;
    border-width: 7px;
  }

  .hero__seal {
    top: 28px;
    left: 4px;
    width: 88px;
    height: 88px;
  }

  .hero__flower {
    display: none;
  }

  .trust-bar__grid > div {
    padding-inline: 15px;
  }

  .story__visual {
    width: 100%;
    padding-left: 18px;
  }

  .story__image {
    height: 520px;
  }

  .handwritten {
    right: -4px;
    width: 225px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p,
  .section-heading > div + p {
    margin-top: 19px;
  }

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

  .collection-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .collection-card__image {
    height: 420px;
  }

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

  .collections__footer a {
    white-space: normal;
  }

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

  .process-step {
    max-width: 350px;
    margin-inline: auto;
  }

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

  .customizer__ornament {
    display: none;
  }

  .builder {
    padding: 25px 17px;
  }

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

  .order-summary {
    padding: 18px;
  }

  .gallery__grid {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 220px 300px;
  }

  .gallery__item--tall {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .gallery__quote {
    padding: 18px;
  }

  .gallery__quote p {
    font-size: 1rem;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta::after {
    inset: 24px 12px;
    border-radius: 100px 100px 22px 22px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer__brand {
    grid-column: 1 / 3;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 7px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Refinamento visual e mobile v2 */

.topbar {
  display: none;
}

.site-header,
.site-header.is-scrolled {
  color: #fff;
  background: linear-gradient(110deg, #0d2341 0%, #17365f 58%, #1d426d 100%);
  border-bottom: 1px solid rgba(233, 208, 165, 0.28);
  box-shadow: 0 14px 36px rgba(8, 27, 52, 0.18);
  backdrop-filter: blur(20px);
}

.header__inner {
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  width: 78px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid rgba(233, 208, 165, 0.7);
  border-radius: 38px 38px 14px 14px;
  box-shadow: 0 10px 28px rgba(4, 17, 33, 0.28), inset 0 0 0 4px rgba(188, 131, 55, 0.07);
}

.brand__mark img,
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__copy strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.brand__copy small {
  margin-top: 7px;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav {
  color: rgba(255, 255, 255, 0.88);
}

.nav > a:not(.button)::after {
  background: var(--gold-soft);
}

.button--primary,
.button--header-cta {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(16, 111, 76, 0.24);
}

.button--primary:hover,
.button--header-cta:hover {
  background: #17764f;
  border-color: #17764f;
}

.menu-button > span:not(.sr-only) {
  background: #fff8e9;
}

.hero {
  min-height: 710px;
  background:
    radial-gradient(circle at 84% 18%, rgba(128, 149, 191, 0.2), transparent 29%),
    radial-gradient(circle at 70% 84%, rgba(233, 208, 165, 0.26), transparent 26%),
    var(--cream);
}

.hero__pattern {
  background-image: linear-gradient(90deg, rgba(248, 245, 238, 0.96), rgba(248, 245, 238, 0.5)), url("assets/images/pattern.png");
  background-size: auto, 670px auto;
  opacity: 0.19;
}

.hero::after {
  right: 8%;
  bottom: -210px;
  left: auto;
  width: 580px;
  height: 580px;
  background: rgba(188, 131, 55, 0.08);
}

.hero__grid {
  min-height: 710px;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 60px;
  padding-block: 62px 76px;
}

.hero h1 {
  font-size: clamp(3.7rem, 5.5vw, 6rem);
}

.hero__visual {
  min-height: 600px;
}

.photo-frame {
  border: 1px solid rgba(188, 131, 55, 0.28);
  box-shadow: 0 28px 65px rgba(24, 42, 70, 0.18);
}

.photo-frame img {
  object-fit: contain;
  filter: brightness(1.045) contrast(1.055) saturate(0.92);
}

.photo-frame--main {
  top: 4px;
  right: 14px;
  width: min(74%, 425px);
  height: 566px;
  padding: 10px;
  background: linear-gradient(145deg, #c9c2b6, #e5e0d7);
  border: 10px solid rgba(255, 253, 248, 0.92);
  border-radius: 215px 215px 28px 28px;
}

.photo-frame--main img {
  border-radius: 195px 195px 20px 20px;
}

.photo-frame--accent {
  bottom: 7px;
  left: 7px;
  width: 220px;
  height: 285px;
  padding: 7px;
  background: #cbc5b9;
  border: 8px solid var(--paper);
}

.photo-frame--accent img {
  border-radius: 100px 100px 18px 18px;
}

.hero__cross-motif {
  position: absolute;
  top: -25px;
  right: -56px;
  width: 190px;
  fill: none;
  stroke: rgba(188, 131, 55, 0.36);
  stroke-width: 1.4;
}

.hero__cross-motif circle {
  stroke-dasharray: 2 7;
}

.hero__cross-rays {
  stroke: rgba(128, 149, 191, 0.65);
}

.hero__seal {
  top: 46px;
  left: 18px;
  z-index: 3;
}

.hero__product-tag {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--navy);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  box-shadow: 0 13px 30px rgba(23, 50, 93, 0.14);
  backdrop-filter: blur(12px);
}

.hero__product-tag > span {
  color: var(--gold);
}

.hero__product-tag div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero__product-tag strong {
  font-size: 0.75rem;
}

.hero__product-tag small {
  color: var(--muted);
  font-size: 0.64rem;
}

.hero__flower {
  opacity: 0.42;
}

.trust-bar {
  background: #102b4e;
  border-block: 1px solid rgba(233, 208, 165, 0.2);
}

.trust-bar__grid > .trust-item {
  display: grid;
  align-items: center;
  padding: 25px 34px;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
}

.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(233, 208, 165, 0.32);
  border-radius: 50%;
}

.trust-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.trust-bar__grid .trust-icon + strong {
  color: #fff;
}

.rosary-divider {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: -22px;
  color: var(--gold);
  background: var(--paper);
}

.rosary-divider > span {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.rosary-divider i,
.rosary-divider b {
  width: 9px;
  height: 9px;
  background: var(--blue);
  border: 2px solid #e8edf6;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 50, 93, 0.18);
}

.rosary-divider b {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-color: #f4e5c8;
}

.rosary-divider svg {
  width: 23px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 2;
}

.story__image,
.collection-card__image,
.gallery__item,
.order-summary__visual {
  background: linear-gradient(145deg, #d9d4cb, #efebe3);
}

.story__image img,
.collection-card__image img,
.gallery__item img,
.order-summary__visual img {
  object-fit: contain;
  object-position: center;
  filter: brightness(1.04) contrast(1.045) saturate(0.93);
}

.collection-card__image img,
.gallery__item img {
  padding: 10px;
}

.collection-card__image img {
  border-radius: 18px;
}

.collection-card:hover .collection-card__image img,
.gallery__item:hover img {
  transform: none;
}

.swipe-hint {
  display: none;
}

.builder {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(5, 23, 43, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 70px rgba(0, 0, 0, 0.13);
}

.builder__progress {
  position: relative;
  display: grid;
  margin: -4px 0 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.builder__progress::before {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.builder__step-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  border: 0;
}

.builder__step-indicator > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #173452;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  transition: color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.builder__step-indicator small {
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder__step-indicator.is-active,
.builder__step-indicator.is-complete {
  color: #fff;
}

.builder__step-indicator.is-active > span {
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(233, 208, 165, 0.12);
}

.builder__step-indicator.is-complete > span {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.builder-step[hidden] {
  display: none;
}

.builder-step.is-active {
  animation: builder-step-in 0.35s ease both;
}

@keyframes builder-step-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.builder-step__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.builder-step__title span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-style: italic;
}

.builder__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.builder-nav {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.builder-nav--next {
  margin-left: auto;
  color: var(--navy-deep);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.builder-nav:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.order-summary__visual {
  height: 245px;
}

.order-summary__visual img {
  padding: 8px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1050px) {
  .brand__copy {
    display: none;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 76px;
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    box-shadow: 0 12px 28px rgba(7, 23, 44, 0.24);
  }

  .header__inner {
    min-height: 82px;
  }

  .brand__mark {
    width: 64px;
    height: 64px;
    border-radius: 32px 32px 12px 12px;
  }

  .brand__mark img,
  .brand img {
    width: 59px;
    height: 59px;
  }

  .nav {
    color: #fff;
    background: linear-gradient(180deg, #102b4e, #0b203b);
    border-top: 1px solid rgba(233, 208, 165, 0.2);
    box-shadow: 0 24px 45px rgba(5, 18, 35, 0.28);
  }

  .nav > a:not(.button) {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .nav .button {
    background: var(--green);
    border-color: var(--green);
  }

  .hero,
  .hero__grid {
    min-height: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 50px 66px;
  }

  .hero__content {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .hero__content .eyebrow,
  .hero__actions,
  .hero__note {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 12vw, 5rem);
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__visual {
    width: min(100%, 540px);
    min-height: 560px;
    margin-inline: auto;
  }

  .photo-frame--main {
    right: 50%;
    width: min(79%, 400px);
    height: 525px;
    transform: translateX(50%);
  }

  .photo-frame--accent {
    left: 0;
    width: 190px;
    height: 235px;
  }

  .hero__seal {
    top: 36px;
    left: 0;
  }

  .hero__product-tag {
    right: 0;
    bottom: 10px;
  }

  .hero__cross-motif {
    top: -46px;
    right: -18px;
    width: 155px;
  }

  .trust-bar {
    overflow: hidden;
    padding: 17px 0;
  }

  .trust-bar__grid {
    display: flex;
    width: min(calc(100% - 20px), var(--container));
    gap: 12px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-bar__grid::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__grid > .trust-item {
    flex: 0 0 min(74vw, 320px);
    padding: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    scroll-snap-align: center;
  }

  .rosary-divider {
    margin-bottom: -15px;
  }

  .story__image {
    height: 570px;
  }

  .collections__grid {
    display: flex;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 18px 24px 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .collections__grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card,
  .collection-card:last-child {
    flex: 0 0 min(78vw, 360px);
    width: auto;
    margin: 0;
    scroll-snap-align: start;
  }

  .collection-card__image {
    height: 430px;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -30px 0 20px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .swipe-hint span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .process-step {
    padding: 17px 10px;
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .process-step__number {
    top: 10px;
    left: 12px;
  }

  .process-step__icon {
    width: 82px;
    height: 82px;
    margin: 16px auto 17px;
  }

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

  .order-summary {
    position: static;
  }

  .gallery__grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 480px 250px 360px;
  }

  .gallery__item--tall {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 1200;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    min-height: 60px;
    padding: 6px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(23, 50, 93, 0.13);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(11, 31, 58, 0.22);
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6px;
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-cta__customize {
    color: var(--navy);
    background: #edf1f7;
  }

  .mobile-cta__customize span {
    color: var(--gold);
  }

  .mobile-cta__whatsapp {
    color: #fff;
    background: var(--green);
    box-shadow: 0 8px 18px rgba(30, 141, 98, 0.22);
  }

  .mobile-cta__whatsapp svg {
    width: 20px;
    fill: currentColor;
  }
}

@media (max-width: 570px) {
  .section {
    padding: 70px 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header__inner {
    min-height: 78px;
  }

  .brand__mark {
    width: 60px;
    height: 60px;
  }

  .brand__mark img,
  .brand img {
    width: 56px;
    height: 56px;
  }

  .hero__grid {
    gap: 32px;
    padding-block: 42px 56px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 15.5vw, 4.2rem);
    line-height: 0.98;
  }

  .hero h1 em {
    margin-top: 10px;
    font-size: 0.52em;
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .hero__actions {
    gap: 18px;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .hero__note {
    font-size: 0.7rem;
  }

  .hero__visual {
    min-height: 475px;
  }

  .photo-frame--main {
    width: min(86%, 345px);
    height: 450px;
    padding: 7px;
    border-width: 7px;
  }

  .photo-frame--accent {
    display: none;
  }

  .hero__seal {
    top: 20px;
    left: -3px;
    width: 82px;
    height: 82px;
  }

  .hero__product-tag {
    right: -2px;
    bottom: 7px;
  }

  .hero__cross-motif {
    top: -45px;
    right: -28px;
    width: 135px;
  }

  .trust-bar__grid > .trust-item {
    flex-basis: 82vw;
  }

  .rosary-divider > span {
    width: 34px;
  }

  .story__visual {
    padding: 0 0 38px;
  }

  .story__visual::before {
    left: -12px;
  }

  .story__image {
    height: 490px;
  }

  .handwritten {
    right: 0;
  }

  .collection-card,
  .collection-card:last-child {
    flex-basis: 84vw;
  }

  .collection-card__image {
    height: 390px;
  }

  .process-step h3 {
    font-size: 1.22rem;
  }

  .process-step p {
    font-size: 0.76rem;
    line-height: 1.48;
  }

  .palette__swatches {
    gap: 9px;
  }

  .swatch {
    height: 125px;
  }

  .builder {
    padding: 24px 16px 18px;
    border-radius: 18px;
  }

  .builder__progress {
    margin-bottom: 30px;
  }

  .builder__step-indicator small {
    font-size: 0.56rem;
  }

  .builder-step__title {
    align-items: flex-start;
    font-size: 1.08rem;
  }

  .form-row select,
  .form-row input,
  .form-row textarea {
    min-height: 56px;
    font-size: 0.9rem;
  }

  .builder-nav {
    min-height: 46px;
    padding-inline: 15px;
  }

  .order-summary__visual {
    height: 290px;
  }

  .gallery__grid {
    grid-template-rows: 390px 210px 320px;
    gap: 10px;
  }

  .gallery__quote {
    padding: 16px;
  }

  .final-cta__content {
    padding-inline: 10px;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}
