:root {
  --cream: #f8f4ef;
  --warm-beige: #e8d2c4;
  --beige-deep: #d4ad99;
  --pink: #efb6bf;
  --pink-soft: #f7eff2;
  --white: #ffffff;
  --brown: #5a3428;
  --brown-soft: #6b3a28;
  --gold: #b58a55;
  --ink: #2d211d;
  --muted: #7b685f;
  --line: rgba(74, 47, 37, 0.14);
  --shadow: 0 18px 50px rgba(74, 47, 37, 0.12);
  --radius: 8px;
  font-family: "Inter", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

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

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

button,
a.button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}

.brand {
  display: grid;
  gap: 2px;
  color: var(--brown);
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.74rem;
  max-width: 170px;
}

.text-brand {
  display: block;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand img {
  width: 150px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.68rem;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brown);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

.nav-links {
  position: absolute;
  inset: 72px 16px auto 16px;
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
}

.nav-links.open {
  display: grid;
}

.nav-links a {
  padding: 12px 10px;
  border-radius: 6px;
  color: var(--brown-soft);
  font-weight: 650;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--pink-soft);
  color: var(--brown);
}

.nav-links .nav-message {
  background: var(--brown);
  color: var(--white);
  border: 1px solid var(--brown);
}

.nav-links .nav-message:hover {
  background: var(--brown-soft);
  color: var(--white);
}

.section {
  padding: 64px 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 6.4vw, 4.6rem);
  max-width: 790px;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.8rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
}

p {
  margin: 0;
  color: var(--brown-soft);
}

.lead {
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  color: var(--brown);
  max-width: 730px;
}

.muted {
  color: var(--muted);
}

.hero {
  min-height: 68vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 239, 242, 0.96), rgba(232, 210, 196, 0.32), rgba(248, 244, 239, 0.98)),
    var(--pink-soft);
  padding: 76px 0 64px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 46px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 30px;
  align-items: center;
  padding-bottom: 0;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-subtitle {
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-description {
  max-width: 650px;
  font-size: 1.04rem;
}

.hero-logo-panel {
  width: min(100%, 360px);
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(90, 52, 40, 0.12);
  background: var(--warm-beige);
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.simple-trust .feature {
  min-height: 128px;
  align-content: start;
  gap: 12px;
}

.feature-icon,
.wholesale-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--brown);
}

.feature-icon svg,
.wholesale-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.simple-open-box {
  align-items: center;
}

.small-proof-card {
  max-width: 430px;
  justify-self: center;
}

.small-proof-card::after {
  bottom: 12px;
}

.small-proof-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero + .trust-strip-section {
  padding: 34px 0 56px;
}

.wholesale-section {
  background: var(--pink-soft);
}

.wholesale-card {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(90, 52, 40, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(90, 52, 40, 0.08);
}

.wholesale-icon {
  width: 58px;
  height: 58px;
}

.wholesale-icon svg {
  width: 29px;
  height: 29px;
}

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

.benefit-list li {
  position: relative;
  padding-left: 24px;
  color: var(--brown-soft);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
}

.hero-logo-mark {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(64%, 310px);
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(90, 52, 40, 0.1);
  box-shadow: 0 16px 36px rgba(90, 52, 40, 0.1);
}

.hero-logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-portrait-card {
  width: min(82%, 390px);
  overflow: hidden;
  border: 1px solid rgba(107, 74, 58, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 46%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--brown);
  background: var(--brown);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(74, 47, 37, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--brown);
}

.button.soft {
  background: var(--pink-soft);
  color: var(--brown);
  border-color: transparent;
}

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--brown);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--brown);
}

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.meet-portrait img {
  object-position: center 44%;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-2,
.cards-3,
.cards-4,
.steps {
  display: grid;
  gap: 14px;
}

.card,
.step,
.notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

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

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--brown);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.feature {
  min-height: 138px;
  display: grid;
  align-content: space-between;
}

.feature strong,
.destination {
  color: var(--brown);
  font-weight: 850;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.destination {
  background: var(--pink-soft);
  border: 1px solid rgba(239, 182, 191, 0.5);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.photo-grid {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.trust-showcase {
  display: grid;
  gap: 24px;
  align-items: center;
}

.trust-copy {
  display: grid;
  gap: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(74, 47, 37, 0.09);
}

.photo-card::after {
  content: "MISSVILL COLLECTION";
  position: absolute;
  right: 12px;
  bottom: 92px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(90, 52, 40, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.photo-card:has(> img:only-child)::after,
.event-gallery .photo-card::after {
  bottom: 12px;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-card div {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.photo-card strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.12;
}

.photo-card p {
  font-size: 0.96rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(90, 52, 40, 0.09);
}

.mini-photo-card::after {
  content: "MISSVILL COLLECTION";
  position: absolute;
  right: 10px;
  bottom: 38px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.mini-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
}

.mini-photo-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(90, 52, 40, 0.64));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.photo-card-large img {
  aspect-ratio: 4 / 5;
  object-position: center 62%;
}

.two-photo-grid .photo-card img {
  aspect-ratio: 4 / 5;
}

.volume-grid .photo-card img {
  aspect-ratio: 4 / 5;
}

.stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  min-height: 104px;
  align-content: center;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(107, 74, 58, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(74, 47, 37, 0.07);
}

.stat-card strong {
  grid-column: 2;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1;
}

.stat-card span {
  grid-column: 2;
  color: var(--brown-soft);
  font-weight: 800;
}

.stat-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--brown);
}

.stat-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.gallery-slider {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 78%);
  gap: 16px;
}

.gallery-slide {
  scroll-snap-align: start;
}

.event-gallery .photo-card img {
  aspect-ratio: 4 / 5;
}

.process-steps .step {
  position: relative;
  text-align: center;
  justify-items: center;
  background: rgba(255, 255, 255, 0.78);
}

.process-steps .step-number {
  width: 54px;
  height: 54px;
  border: 8px solid var(--pink-soft);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(90, 52, 40, 0.1);
}

.rates {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.shipping-chart-grid {
  display: grid;
  gap: 18px;
}

.shipping-chart-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(90, 52, 40, 0.08);
}

.shipping-chart-card h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.shipping-chart-card a {
  display: block;
  overflow: auto;
  border-radius: 6px;
  background: var(--cream);
}

.shipping-chart-card img {
  width: 100%;
  height: auto;
  min-width: 0;
  object-fit: contain;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--brown);
  background: var(--pink-soft);
  font-size: 0.86rem;
}

td {
  color: var(--brown-soft);
}

tr:last-child td {
  border-bottom: 0;
}

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

.event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--warm-beige);
  color: var(--brown);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 850;
}

.cta {
  background: var(--brown);
  color: var(--white);
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--white), var(--cream));
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  gap: 16px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--brown);
  font-weight: 850;
}

details p {
  margin-top: 12px;
}

.formula {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--pink-soft);
  color: var(--brown);
  font-weight: 850;
}

.policy-grid {
  display: grid;
  gap: 14px;
}

.policy-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(107, 74, 58, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(74, 47, 37, 0.07);
}

.policy-card h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.payment-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 85% 18%, rgba(239, 182, 191, 0.42), transparent 34%),
    linear-gradient(180deg, var(--white), var(--cream));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.payment-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.payment-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(248, 220, 225, 0.86)),
    radial-gradient(circle at 74% 22%, rgba(181, 138, 85, 0.22), transparent 28%);
}

.payment-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(74, 47, 37, 0.1);
  border-radius: var(--radius);
}

.payment-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -62px;
  bottom: -54px;
  border-radius: 50%;
  background: rgba(239, 182, 191, 0.5);
}

.visual-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(74, 47, 37, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(74, 47, 37, 0.12);
}

.payment-visual-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  width: min(78%, 380px);
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(74, 47, 37, 0.12);
}

.thank-you-card {
  left: 34px;
  top: 42px;
  width: 190px;
  min-height: 122px;
  display: grid;
  place-content: center;
  gap: 7px;
  text-align: center;
  transform: rotate(-4deg);
}

.thank-you-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.thank-you-card strong {
  color: var(--brown);
  letter-spacing: 0.13em;
  font-size: 0.74rem;
}

.payment-token {
  right: 34px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: var(--brown);
  font-weight: 850;
}

.payment-token svg {
  width: 26px;
  height: 26px;
}

.visual-bag {
  position: absolute;
  z-index: 1;
  left: 58%;
  top: 58%;
  width: 132px;
  height: 138px;
  transform: translate(-12%, -18%) rotate(4deg);
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(145deg, #efb6bf, #f7d4da 68%, #fff4ee);
  box-shadow: 0 24px 44px rgba(116, 84, 70, 0.18);
}

.visual-bag::before {
  content: "";
  position: absolute;
  left: 49px;
  top: -28px;
  width: 82px;
  height: 58px;
  border: 8px solid rgba(181, 138, 85, 0.68);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.visual-bag span {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
}

.payment-methods-section {
  background: var(--cream);
}

.payment-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.payment-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(74, 47, 37, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(74, 47, 37, 0.07);
  text-align: center;
}

.payment-logo-frame {
  width: 100%;
  height: 82px;
  display: grid;
  place-items: center;
}

.payment-brand-logo {
  width: min(100%, 184px);
  height: 74px;
  object-fit: contain;
  object-position: center;
}

.payment-card h2 {
  min-height: 3.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.payment-divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 47, 37, 0.28), transparent);
}

.payment-card p {
  font-size: 0.95rem;
}

.payment-logo {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(74, 47, 37, 0.12);
  color: var(--brown);
  background: var(--pink-soft);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.payment-logo svg {
  width: 22px;
  height: 22px;
}

.wise-logo {
  background: #e6f5ec;
  color: #285b42;
}

.our-logo {
  background: var(--warm-beige);
  color: var(--brown);
  letter-spacing: 0.16em;
}

.zelle-logo {
  background: #efe5ff;
  color: #51367a;
}

.card-logo {
  background: #fff4dc;
  color: #7c5528;
}

.paypal-logo {
  background: #e1f0ff;
  color: #254f77;
}

.payment-support-section {
  padding-top: 12px;
  background: var(--cream);
}

.payment-support-grid {
  display: grid;
  gap: 14px;
}

.payment-notice-card,
.help-card {
  border-radius: var(--radius);
  border: 1px solid rgba(74, 47, 37, 0.12);
  box-shadow: var(--shadow);
}

.payment-notice-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 220, 225, 0.98), rgba(255, 250, 244, 0.94)),
    var(--pink-soft);
}

.payment-notice-card h2,
.help-card h2 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.notice-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 12px 24px rgba(74, 47, 37, 0.1);
}

.notice-icon svg {
  width: 28px;
  height: 28px;
}

.notice-decoration {
  display: none;
  color: rgba(74, 47, 37, 0.18);
}

.help-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  background: var(--white);
}

.help-card .button-row {
  margin-top: 2px;
}

.trust-strip-section {
  padding: 0 0 64px;
  background: var(--cream);
}

.trust-strip {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-strip div {
  padding: 12px;
  border-radius: 6px;
  background: var(--cream);
}

.trust-strip strong {
  color: var(--brown);
}

.trust-strip p {
  margin-top: 4px;
  font-size: 0.92rem;
}

.footer {
  padding: 36px 0 88px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating-message {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  box-shadow: 0 12px 28px rgba(74, 47, 37, 0.28);
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(45, 33, 29, 0.42);
}

.popup-backdrop.show {
  display: flex;
}

.country-popup {
  width: min(520px, 100%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(45, 33, 29, 0.28);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.country-popup h2 {
  font-size: clamp(1.8rem, 8vw, 2.7rem);
}

.country-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.country-options button {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--brown);
  font-weight: 800;
  cursor: pointer;
}

.country-options button:hover {
  background: var(--pink-soft);
}

.tiny {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .brand {
    font-size: 0.9rem;
    max-width: none;
  }

  .brand img {
    width: 178px;
    height: 42px;
  }

  .hero {
    align-items: center;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    padding-top: 24px;
  }

  .hero-logo-panel {
    justify-self: end;
  }

  .split {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 54px;
  }

  .split.reverse {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

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

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

  .trust-showcase {
    grid-template-columns: minmax(220px, 0.72fr) minmax(340px, 1.18fr) minmax(230px, 0.76fr);
    gap: 26px;
  }

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

  .payment-hero-grid {
    grid-template-columns: 1fr 0.84fr;
    gap: 54px;
  }

  .wholesale-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 32px;
  }

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

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

  .payment-support-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  }

  .payment-notice-card {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .notice-decoration {
    display: block;
  }

  .notice-decoration svg {
    width: 78px;
    height: 78px;
  }

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

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

  .trust-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    align-items: stretch;
  }

  .trust-grid .photo-card-large img {
    aspect-ratio: 16 / 10;
  }

  .two-photo-grid,
  .event-gallery,
  .volume-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-track {
    grid-auto-columns: minmax(330px, 42%);
  }

  .process-steps .step::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -15px;
    width: 30px;
    height: 1px;
    background: rgba(90, 52, 40, 0.24);
  }

  .process-steps .step:nth-child(3)::after,
  .process-steps .step:last-child::after {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-links a {
    padding: 10px 6px;
    font-size: 0.78rem;
  }
}

@media (min-width: 980px) {
  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

  .process-steps .step::after {
    display: block;
  }

  .process-steps .step:nth-child(3)::after {
    display: block;
  }

  .process-steps .step:last-child::after {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

@media (max-width: 719px) {
  .hero {
    min-height: auto;
    padding: 58px 0 48px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-logo-mark {
    width: min(58%, 230px);
  }

  .hero-portrait-card {
    width: min(86%, 330px);
  }

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

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .mini-photo-card,
  .mini-photo-card img {
    min-height: 230px;
  }

  .button-row .button {
    width: 100%;
  }

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

  .payment-hero {
    padding: 52px 0 42px;
  }

  .payment-visual {
    min-height: 300px;
  }

  .thank-you-card {
    left: 22px;
    top: 34px;
    width: 162px;
  }

  .payment-token {
    right: 22px;
    bottom: 30px;
  }

  .visual-bag {
    width: 112px;
    height: 118px;
  }

  .payment-card {
    min-height: auto;
  }

  .floating-message {
    left: 16px;
    right: 16px;
  }
}

@media (min-width: 540px) and (max-width: 719px) {
  .payment-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-card:last-child {
    grid-column: 1 / -1;
  }
}
