/* OliStamp — premium landing (mobile-first) */

:root {
  --ivory: #faf7f3;
  --ivory-deep: #f3ebe4;
  --blush: #f5e6e8;
  --champagne: #ebe3d7;
  --peach: #fde9e0;
  --rose-light: #e8c4a8;
  --rose-mid: #c9a27e;
  --rose-deep: #9a7352;
  --copper: #b8956e;
  --text: #3a2f28;
  --text-soft: #5c4f47;
  --white: #fffefc;
  --shadow-soft: 0 18px 48px rgba(58, 47, 40, 0.08);
  --shadow-lift: 0 12px 32px rgba(154, 115, 82, 0.15);
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

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

a {
  color: var(--rose-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a:hover,
a:focus-visible {
  color: var(--copper);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--rose-mid);
  border-radius: 8px;
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* —— Loader —— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush) 45%, var(--champagne) 100%);
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  position: relative;
  text-align: center;
}

.site-logo {
  display: block;
  flex-shrink: 0;
  background: transparent;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 14px rgba(201, 162, 126, 0.1));
}

.site-logo--loader {
  margin-inline: auto;
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.92);
  animation: loaderLogo 1.1s var(--ease-out) forwards;
}

.site-logo--header {
  width: 52px;
  height: 52px;
}

.site-logo--cta {
  margin: 0 auto 1rem;
  width: 100px;
  height: 100px;
}

.site-logo--footer {
  margin-inline: auto;
  width: 64px;
  height: 64px;
}

.loader__shimmer {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 250, 245, 0.55) 50%,
    transparent 60%
  );
  animation: shimmerPass 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes loaderLogo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmerPass {
  0% {
    transform: translateX(-30%) rotate(8deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(30%) rotate(8deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-logo--loader {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .loader__shimmer {
    animation: none;
    opacity: 0;
  }
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 162, 126, 0.35);
  box-shadow: 0 4px 24px rgba(58, 47, 40, 0.06);
}

.site-header__bar {
  width: min(1120px, 100% - 1.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.site-header__brand:hover,
.site-header__brand:focus-visible {
  color: var(--text);
  opacity: 0.85;
}

.site-header__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav__list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
}

.site-nav__list a:hover {
  color: var(--rose-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(201, 162, 126, 0.45);
  border-radius: 12px;
  background: rgba(255, 254, 252, 0.7);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--rose-mid);
  background: var(--white);
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose-mid));
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.site-header.nav-open .nav-toggle__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) - 6px);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.5rem;
    background: rgba(255, 254, 252, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 162, 126, 0.4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out);
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-nav__list a {
    display: block;
    padding: 0.5rem 0;
  }

  .btn--header {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s, background 0.28s, border-color 0.28s, color 0.28s;
}

.btn:focus-visible {
  outline: 2px solid var(--rose-mid);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, #c9a27e 0%, #a67c52 50%, #8f6845 100%);
  box-shadow: 0 6px 20px rgba(154, 115, 82, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(154, 115, 82, 0.42);
}

.btn--ghost {
  color: var(--rose-deep);
  background: rgba(255, 254, 252, 0.65);
  border-color: rgba(201, 162, 126, 0.55);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--rose-mid);
  box-shadow: var(--shadow-lift);
}

.btn--header {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn--wide {
  min-width: min(280px, 100%);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 0.25rem) 0 clamp(1rem, 3vh, 1.75rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--blush) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}

@media (min-width: 720px) and (max-height: 880px) {
  .hero {
    padding: calc(var(--header-h) + 0.15rem) 0 clamp(0.85rem, 2.5vh, 1.35rem);
  }

  .hero__orbit {
    height: clamp(150px, 24vh, 200px);
  }

  .hero__text {
    margin-inline: auto;
    margin-top: clamp(0.4rem, 1.2vh, 0.85rem);
    margin-bottom: 0;
  }

  .hero__title {
    margin-bottom: 0.35rem;
    line-height: 1.1;
  }

  .hero__subtitle {
    margin-bottom: 0.65rem;
  }

  .hero__actions {
    gap: 0.55rem;
  }
}

.hero__bg-word {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 13vw, 9.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(201, 162, 126, 0.078);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
  pointer-events: none;
}

.hero__glow--1 {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: 8%;
  right: -10%;
  background: radial-gradient(circle, rgba(232, 196, 168, 0.7) 0%, transparent 70%);
}

.hero__glow--2 {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(253, 233, 224, 0.9) 0%, transparent 70%);
}

.hero__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 252, 248, 0.35) 50%,
    transparent 58%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: heroShimmer 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes heroShimmer {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shimmer {
    animation: none;
    opacity: 0.18;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 100% - 1.5rem);
  margin-inline: auto;
  margin-top: clamp(1rem, 3.5vmin, 1.75rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.12rem, 0.65vh, 0.38rem);
}

@media (min-width: 600px) {
  .hero__content {
    margin-top: clamp(2.25rem, 5vmin, 3.25rem);
  }
}

@media (min-width: 720px) and (max-height: 880px) {
  .hero__content {
    gap: clamp(0.12rem, 0.65vh, 0.35rem);
    margin-top: clamp(1.15rem, 3vmin, 2.25rem);
  }
}

.hero__orbit {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: clamp(172px, 30vw, 238px);
  margin: 0;
}

@media (max-width: 719px) and (max-height: 720px) {
  .hero__orbit {
    height: clamp(140px, 26vw, 180px);
  }
}

.hero__product {
  position: absolute;
  will-change: transform;
}

.hero__product > * {
  filter: drop-shadow(0 14px 26px rgba(58, 47, 40, 0.13));
}

.hero__float {
  display: block;
}

.hero__product--mug {
  left: 2%;
  top: 6%;
}

.hero__float--mug {
  animation: floatA 7s ease-in-out infinite;
}

.hero__product--panel {
  right: 0;
  top: 0;
}

.hero__float--panel {
  animation: floatB 8s ease-in-out infinite 0.5s;
}

.hero__product--tote {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.hero__float--tote {
  animation: floatC 7.5s ease-in-out infinite 0.3s;
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-14px) rotate(-3deg);
  }
}

@keyframes floatC {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__float--mug,
  .hero__float--panel,
  .hero__float--tote {
    animation: none;
  }
}

.hero__text {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  margin-top: clamp(0.85rem, 2.8vh, 2rem);
  margin-bottom: 0;
  padding-top: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.hero__subtitle {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Hero: mockups slightly larger (scoped to hero only) */
.hero .mock-mug--small {
  width: 100px;
  height: 108px;
}

.hero .mock-panel--small {
  width: 112px;
  height: 80px;
}

.hero .mock-tote--small {
  width: 100px;
  height: 110px;
}

/* —— Mock: Mug —— */
.mock-mug {
  position: relative;
  width: 100px;
  height: 110px;
  transform-style: preserve-3d;
}

.mock-mug::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 16%;
  bottom: -1px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(58, 47, 40, 0.12) 0%, rgba(58, 47, 40, 0.03) 55%, transparent 72%);
  filter: blur(3px);
  z-index: 0;
  pointer-events: none;
}

.mock-mug--small {
  width: 88px;
  height: 96px;
}

.mock-mug--large {
  width: min(200px, 42vw);
  height: min(220px, 46vw);
}

.mock-mug__body {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  height: 78%;
  z-index: 1;
  border-radius: 15px 15px 22px 22px / 12px 12px 28px 28px;
  background:
    radial-gradient(ellipse 125% 95% at 30% 12%, rgba(255, 255, 255, 0.58) 0%, transparent 50%),
    radial-gradient(ellipse 85% 65% at 82% 70%, rgba(58, 47, 40, 0.05) 0%, transparent 52%),
    linear-gradient(
      102deg,
      #e8e2dc 0%,
      #f6f3ef 20%,
      #fffcfa 40%,
      #f4efea 65%,
      #dcd7d1 100%
    );
  box-shadow:
    inset 0 4px 10px rgba(255, 255, 255, 0.88),
    inset -12px 2px 18px rgba(0, 0, 0, 0.035),
    inset 8px -2px 14px rgba(255, 255, 255, 0.32),
    inset 0 -12px 20px rgba(58, 47, 40, 0.05),
    0 6px 14px rgba(58, 47, 40, 0.07),
    0 14px 28px rgba(58, 47, 40, 0.06);
}

.mock-mug__body::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: -2px;
  height: 12%;
  max-height: 18px;
  border-radius: 48% 48% 35% 35% / 90% 90% 25% 25%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 250, 247, 0.55) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.mock-mug--large .mock-mug__body {
  border-radius: 18px 18px 28px 28px / 14px 14px 34px 34px;
}

.mock-mug--large .mock-mug__body::before {
  max-height: 26px;
}

.mock-mug__handle {
  position: absolute;
  right: 2.5%;
  top: 24%;
  width: 31%;
  height: 46%;
  z-index: 3;
  border: 5px solid #d9d3cd;
  border-left: none;
  border-radius: 0 54% 46% 0 / 0 48% 42% 0;
  background: linear-gradient(100deg, rgba(232, 227, 221, 0.55) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(220, 215, 209, 0.35) 100%);
  box-shadow:
    inset 4px 0 10px rgba(255, 255, 255, 0.55),
    inset -3px 0 8px rgba(0, 0, 0, 0.05),
    4px 8px 14px rgba(58, 47, 40, 0.1),
    1px 0 0 rgba(255, 255, 255, 0.35);
}

.mock-mug--small .mock-mug__handle {
  border-width: 4px;
}

.mock-mug__print {
  position: absolute;
  left: 11%;
  top: 17%;
  width: 54%;
  height: 50%;
  z-index: 1;
  border-radius: 7px;
  background: linear-gradient(148deg, var(--blush) 0%, var(--peach) 48%, var(--champagne) 100%);
  border: 1px solid rgba(201, 162, 126, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255, 252, 250, 0.75),
    inset 0 2px 8px rgba(255, 255, 255, 0.55),
    inset 0 -6px 12px rgba(201, 162, 126, 0.08),
    0 1px 3px rgba(154, 115, 82, 0.1);
}

.mock-mug--large .mock-mug__print {
  border-radius: 11px;
}

.mock-mug__shine {
  position: absolute;
  left: 18%;
  top: 10%;
  width: 24%;
  height: 72%;
  border-radius: 45%;
  background: linear-gradient(96deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.22) 38%, transparent 78%);
  opacity: 0.52;
  pointer-events: none;
  z-index: 4;
}

/* —— Mock: Aluminum panel —— */
.mock-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  perspective: 600px;
}

.mock-panel--small {
  width: 100px;
  height: 72px;
}

.mock-panel--medium {
  width: min(200px, 48vw);
  height: min(140px, 34vw);
}

.mock-panel--large {
  width: min(260px, 58vw);
  height: min(180px, 40vw);
}

.mock-panel__face {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #d4c4b8 0%,
    #efe8e0 18%,
    #faf6f2 40%,
    #e5ddd4 62%,
    #c9b8a8 100%
  );
  box-shadow: 0 12px 28px rgba(58, 47, 40, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
}

.mock-panel--large .mock-panel__face {
  border-radius: 10px;
}

.mock-panel__photo {
  position: absolute;
  inset: 10%;
  border-radius: 4px;
  background: linear-gradient(160deg, #c4a894 0%, #e8d4c8 35%, #b8956e 100%);
  opacity: 0.92;
}

.mock-panel--large .mock-panel__photo {
  border-radius: 6px;
}

.mock-panel__sweep {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 248, 240, 0.25) 52%,
    transparent 65%
  );
  animation: panelSweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translateX(-15%) skewX(-12deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(15%) skewX(-12deg);
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mock-panel__sweep {
    animation: none;
    opacity: 0.35;
  }
}

.mock-panel__edge {
  width: 10px;
  background: linear-gradient(180deg, #a8988a 0%, #8a7a6e 100%);
  border-radius: 0 4px 4px 0;
  box-shadow: inset -2px 0 6px rgba(0, 0, 0, 0.15);
}

.mock-panel--small .mock-panel__edge {
  width: 7px;
}

/* —— Mock: Tote —— */
.mock-tote {
  position: relative;
  width: 100px;
  height: 110px;
}

.mock-tote--small {
  width: 92px;
  height: 102px;
}

.mock-tote--large {
  width: min(220px, 52vw);
  height: min(240px, 56vw);
}

.mock-tote__handle {
  position: absolute;
  top: 0;
  width: 38%;
  height: 28%;
  border: 3px solid #c4b8ad;
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.9;
}

.mock-tote--large .mock-tote__handle {
  border-width: 4px;
}

.mock-tote__handle--l {
  left: 12%;
}

.mock-tote__handle--r {
  right: 12%;
}

.mock-tote__bag {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 88%;
  height: 72%;
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(
    180deg,
    #f2ebe4 0%,
    #e8dfd6 40%,
    #ddd3c9 100%
  ),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.04) 2px, rgba(255, 255, 255, 0.04) 3px);
  box-shadow: 0 14px 24px rgba(58, 47, 40, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mock-tote--large .mock-tote__bag {
  border-radius: 6px 6px 14px 14px;
}

.mock-tote__print {
  position: absolute;
  left: 14%;
  top: 22%;
  width: 72%;
  height: 48%;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blush), var(--peach));
  border: 1px dashed rgba(154, 115, 82, 0.35);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
}

.section__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .section__grid--reverse .section__visual {
    order: 2;
  }

  .section__grid--reverse .section__copy {
    order: 1;
  }
}

.section__visual {
  display: flex;
  justify-content: center;
}

.section__copy {
  text-align: center;
}

@media (min-width: 880px) {
  .section__copy {
    text-align: left;
  }
}

.eyebrow {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin: 0 0 0.5rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.section__title--center {
  text-align: center;
}

.section__lead {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section__header {
  margin-bottom: 2.5rem;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.card--soft {
  background: rgba(255, 254, 252, 0.85);
  border: 1px solid rgba(201, 162, 126, 0.35);
  box-shadow: var(--shadow-soft);
}

.card--soft:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.card p {
  margin: 0;
}

/* Product stages + label */
.product-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 126, 0.55);
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.95), rgba(253, 233, 224, 0.5));
  box-shadow: 0 4px 14px rgba(154, 115, 82, 0.12);
}

.product-stage--mug .mock-mug__shine {
  animation: mugShineDrift 9s ease-in-out infinite;
}

@keyframes mugShineDrift {
  0%,
  100% {
    transform: translateX(-25%) skewX(-4deg);
  }
  50% {
    transform: translateX(35%) skewX(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage--mug .mock-mug__shine {
    animation: none;
  }
}

/* Steps */
.section--steps {
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(245, 230, 232, 0.5) 0%, transparent 60%), var(--ivory);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 252, 0.92);
  border: 1px solid rgba(201, 162, 126, 0.38);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose-light), var(--rose-deep));
  box-shadow: 0 4px 12px rgba(154, 115, 82, 0.3);
}

.step-card__decor {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 126, 0.25);
  border-radius: 50%;
  opacity: 0.8;
}

.step-card__decor::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 126, 0.2);
  border-radius: 50%;
}

.step-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-soft);
}

/* Personalization */
.section--personal {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--peach) 35%, var(--ivory) 100%);
}

.personal {
  text-align: center;
}

.personal__text {
  max-width: 38rem;
  margin-inline: auto 2rem;
}

.personal__stage {
  position: relative;
  margin-top: 2.5rem;
  min-height: min(320px, 70vw);
  display: grid;
  place-items: center;
}

.personal__mockup {
  filter: drop-shadow(0 20px 40px rgba(58, 47, 40, 0.12));
}

.personal__tag {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 254, 252, 0.95);
  border: 1px solid rgba(201, 162, 126, 0.45);
  color: var(--rose-deep);
  box-shadow: 0 6px 16px rgba(154, 115, 82, 0.12);
  animation: tagFloat 5s ease-in-out infinite;
}

.personal__tag--1 {
  top: 8%;
  left: 8%;
  animation-delay: 0s;
}

.personal__tag--2 {
  top: 18%;
  right: 6%;
  animation-delay: 0.4s;
}

.personal__tag--3 {
  bottom: 28%;
  left: 4%;
  animation-delay: 0.8s;
}

.personal__tag--4 {
  bottom: 12%;
  right: 10%;
  animation-delay: 1.2s;
}

.personal__tag--5 {
  top: 42%;
  left: 2%;
  animation-delay: 1.6s;
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .personal__tag {
    animation: none;
  }
}

@media (max-width: 520px) {
  .personal__tag--5 {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 4%;
  }
}

/* Emotion */
.section--emotion {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.emotion__frame {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: 50%;
  max-width: min(640px, 100%);
  margin-inline: auto;
  background: radial-gradient(circle at 50% 30%, rgba(255, 252, 248, 0.95) 0%, rgba(245, 230, 232, 0.35) 55%, transparent 70%),
    linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 100%);
  border: 1px solid rgba(201, 162, 126, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), var(--shadow-soft);
}

.emotion__rings {
  position: absolute;
  inset: 8%;
  pointer-events: none;
}

.emotion__rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 126, 0.2);
  border-radius: 50%;
}

.emotion__rings span:last-child {
  inset: 5%;
  opacity: 0.7;
}

.emotion__leaves {
  position: absolute;
  width: min(140px, 28vw);
  height: auto;
  opacity: 0.85;
  pointer-events: none;
}

.emotion__leaves--tl {
  top: 4%;
  left: 2%;
}

.emotion__leaves--br {
  bottom: 4%;
  right: 2%;
  transform: rotate(180deg);
}

.emotion__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.emotion__divider {
  width: min(200px, 50%);
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, var(--rose-mid), var(--rose-light), var(--rose-mid), transparent);
  position: relative;
}

.emotion__divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--rose-mid);
  border-radius: 50%;
  opacity: 0.85;
}

.emotion__text {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

/* CTA */
.section--cta {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__blur {
  position: absolute;
  filter: blur(36px);
  opacity: 0.35;
}

.cta__blur--mug {
  width: 200px;
  height: 220px;
  left: 10%;
  top: 20%;
  background: radial-gradient(circle, var(--champagne), transparent);
}

.cta__blur--panel {
  width: 280px;
  height: 180px;
  right: 5%;
  bottom: 15%;
  background: radial-gradient(circle, var(--rose-light), transparent);
}

.cta__blur--tote {
  width: 240px;
  height: 260px;
  left: 40%;
  bottom: -5%;
  background: radial-gradient(circle, var(--peach), transparent);
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 252, 0.72);
  border: 1px solid rgba(201, 162, 126, 0.45);
  box-shadow: 0 0 60px rgba(232, 196, 168, 0.35), var(--shadow-soft);
  max-width: 560px;
  margin-inline: auto;
}

.cta__lead {
  margin: 0 0 1.75rem;
  color: var(--text-soft);
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 126, 0.35);
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    text-align: left;
    align-items: start;
  }

  .site-footer__brand .site-logo--footer {
    margin-inline: 0;
  }
}

.site-footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__nav a,
.site-footer__contact a {
  font-weight: 500;
  color: var(--text-soft);
}

.site-footer__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin: 0 0 0.35rem;
}

.site-footer__copy {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--text-soft);
  opacity: 0.85;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* JS-driven transforms on product stages */
.product-stage.is-hover .mock-mug--large,
.product-stage.is-hover .mock-mug--small {
  transition: transform 0.5s var(--ease-out);
}

.product-stage--mug .mock-mug {
  transition: transform 0.15s linear;
}

.product-stage--panel .mock-panel {
  transition: transform 0.15s linear;
}

.product-stage--tote .mock-tote {
  transition: transform 0.2s var(--ease-out);
}

.mock-mug__shine {
  transition: opacity 0.4s;
}

.product-stage.is-hover .mock-mug__shine {
  opacity: 0.85;
}
