:root {
  --ink: #f7f3e9;
  --muted: #aebbb2;
  --deep: #07110c;
  --green: #264e36;
  --sage: #78947c;
  --gold: #c8a05a;
  --gold-light: #e3c27c;
  --line: rgba(233, 240, 233, 0.12);
  --surface: rgba(24, 49, 34, 0.5);
  --surface-strong: rgba(23, 52, 35, 0.78);
  --ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--deep);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--deep);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.share-button svg,
.primary-button svg,
.icon-box svg,
.arrow-badge svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box img.brand-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.92;
}

.brand-icon--tiktok {
  width: 22px;
  height: 22px;
}

.brand-icon--facebook {
  width: 14px;
  height: 25px;
}

.perfamix-page {
  position: relative;
  z-index: 0;
  min-height: 100svh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 14% 5%, rgba(120, 148, 124, 0.14), transparent 30rem),
    radial-gradient(circle at 88% 22%, rgba(200, 160, 90, 0.1), transparent 28rem),
    linear-gradient(145deg, #0a1710 0%, #06100b 48%, #09150f 100%);
}

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0,
    rgba(255, 255, 255, 0.4) 1px,
    transparent 1px,
    transparent 3px
  );
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.2;
  filter: blur(100px);
}

.ambient-one {
  top: -18rem;
  left: -15rem;
  background: var(--sage);
}

.ambient-two {
  right: -18rem;
  bottom: -18rem;
  background: var(--gold);
}

.site-shell {
  width: min(calc(100% - 28px), 1180px);
  margin-inline: auto;
  padding-bottom: 24px;
}

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

.topbar > a {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 126px;
  height: auto;
}

.share-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #dce5de;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.experience {
  display: grid;
  gap: 42px;
}

.hero-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 72%;
  --glow-y: 28%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid rgba(214, 228, 216, 0.15);
  border-radius: 32px;
  background:
    linear-gradient(150deg, rgba(53, 93, 65, 0.7), rgba(13, 33, 22, 0.9) 52%, rgba(6, 17, 12, 0.96)),
    var(--green);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
  perspective: 900px;
}

.hero-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.075), transparent 30%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 12px
    );
  content: "";
}

.hero-card::after {
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(231, 208, 155, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.012),
    0 0 0 8rem rgba(255, 255, 255, 0.01);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(229, 196, 126, 0.18),
    transparent 17rem
  );
  transition: background-position 120ms linear;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 30rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  color: rgba(234, 240, 235, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(200, 160, 90, 0.12);
}

.hero-copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.75rem, 14vw, 4.25rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero-copy h1 em {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 20rem;
  margin: 22px 0 0;
  color: rgba(229, 237, 231, 0.72);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  width: min(100%, 15.5rem);
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.primary-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 17px;
  border: 1px solid rgba(255, 244, 219, 0.55);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow:
    0 15px 34px rgba(6, 15, 10, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: #102017;
  font-size: 12px;
  font-weight: 760;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 3px;
  color: rgba(241, 244, 240, 0.78);
  font-size: 11px;
  font-weight: 600;
}

.quiet-link span {
  color: var(--gold-light);
}

.hero-coordinate {
  position: absolute;
  z-index: 4;
  bottom: 23px;
  left: 24px;
  display: flex;
  gap: 14px;
  color: rgba(223, 233, 225, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.product-stage {
  --bottle-width: 122px;
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: -28px;
  width: 214px;
  height: 330px;
  pointer-events: none;
  perspective: 850px;
}

.product-stage::before {
  position: absolute;
  z-index: 0;
  right: -26px;
  bottom: 4px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 194, 124, 0.22),
    rgba(200, 160, 90, 0.07) 38%,
    transparent 69%
  );
  filter: blur(6px);
  content: "";
}

.product-stage::after {
  position: absolute;
  z-index: 1;
  right: 11px;
  bottom: 35px;
  width: 122px;
  height: 170px;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 236, 190, 0.08) 49%,
    transparent 64%
  );
  filter: blur(5px);
  content: "";
}

.product-bottle {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 0;
  display: block;
  width: var(--bottle-width);
  height: auto;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(-1.5deg);
  transform-origin: 52% 76%;
  filter:
    drop-shadow(0 30px 24px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 11px rgba(227, 194, 124, 0.14));
  transition: transform 180ms var(--ease-out);
  will-change: transform;
}

.bottle-shadow {
  position: absolute;
  z-index: 1;
  right: 7px;
  bottom: 2px;
  width: calc(var(--bottle-width) + 20px);
  height: 24px;
  transform: rotate(-2deg);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(11px);
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 57%;
  left: 58%;
  border: 1px solid rgba(228, 210, 168, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 238px;
  height: 132px;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.orbit-two {
  width: 174px;
  height: 270px;
  transform: translate(-50%, -50%) rotate(25deg);
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-inline: 3px;
}

.section-kicker {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.edition-mark {
  color: rgba(216, 226, 218, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

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

.card-wide {
  grid-column: 1 / -1;
}

.link-card,
.payment-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(22px);
}

.link-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 320ms var(--ease-out);
}

.card-topline {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-box,
.arrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #dfe8e0;
}

.arrow-badge {
  width: 35px;
  height: 35px;
  margin-left: auto;
  border-radius: 50%;
  color: rgba(238, 242, 238, 0.74);
  transition:
    transform 320ms var(--ease-out),
    color 220ms ease,
    background 220ms ease;
}

.card-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.card-copy p,
.payment-card p {
  margin: 0 0 7px;
  color: rgba(226, 236, 228, 0.52);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 570;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.card-copy > span,
.payment-card > div > span {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: rgba(220, 230, 222, 0.5);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concierge-card {
  min-height: 252px;
  padding: 20px;
  background:
    radial-gradient(circle at 83% 58%, rgba(202, 166, 96, 0.22), transparent 12rem),
    linear-gradient(145deg, rgba(54, 101, 68, 0.82), rgba(20, 53, 34, 0.72));
}

.concierge-card::before {
  position: absolute;
  right: -3rem;
  bottom: -6rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(230, 204, 151, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.6rem rgba(255, 255, 255, 0.016),
    0 0 0 5rem rgba(255, 255, 255, 0.012);
  content: "";
}

.concierge-card .card-copy {
  max-width: 18rem;
}

.concierge-card .card-copy h3 {
  color: #fbf7ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.concierge-card .card-copy > span {
  font-size: 11px;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(231, 239, 233, 0.6);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9ac7a2;
  box-shadow: 0 0 0 5px rgba(154, 199, 162, 0.11);
}

.concierge-orb {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(255, 238, 198, 0.32);
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 245, 218, 0.35), transparent 14%),
    radial-gradient(circle at 65% 72%, rgba(19, 62, 37, 0.76), transparent 56%),
    linear-gradient(145deg, rgba(220, 186, 118, 0.58), rgba(49, 94, 61, 0.45));
  box-shadow:
    inset -18px -25px 40px rgba(5, 25, 13, 0.3),
    inset 12px 8px 24px rgba(255, 255, 255, 0.1),
    0 26px 50px rgba(0, 0, 0, 0.2);
  opacity: 0.52;
  filter: saturate(0.85);
  transform: rotate(-18deg);
}

.website-card {
  min-height: 205px;
  background:
    linear-gradient(115deg, rgba(39, 76, 51, 0.72), rgba(15, 35, 23, 0.74)),
    var(--surface);
}

.website-card .card-copy h3 {
  font-size: 27px;
}

.domain-watermark {
  position: absolute;
  right: -4px;
  bottom: -17px;
  color: rgba(220, 232, 221, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 104px;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
}

.social-card {
  min-height: 174px;
}

.social-card .card-copy h3 {
  max-width: 8ch;
  font-size: 18px;
}

.instagram-card {
  background:
    radial-gradient(circle at 100% 100%, rgba(200, 160, 90, 0.15), transparent 10rem),
    rgba(25, 50, 35, 0.52);
}

.tiktok-card {
  background:
    radial-gradient(circle at 15% 110%, rgba(120, 148, 124, 0.21), transparent 10rem),
    rgba(17, 40, 27, 0.52);
}

.facebook-card {
  background:
    linear-gradient(145deg, rgba(41, 72, 50, 0.53), rgba(15, 35, 24, 0.55)),
    var(--surface);
}

.email-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 160, 90, 0.14), transparent 9rem),
    rgba(25, 50, 35, 0.5);
}

.location-card {
  min-height: 275px;
  padding: 0;
  background: #10251a;
}

.location-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(90deg, rgba(7, 23, 14, 0.97) 0%, rgba(8, 26, 16, 0.74) 55%, rgba(8, 25, 16, 0.15));
}

.location-card .card-copy h3 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.map-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(197, 220, 201, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 220, 201, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 78% 45%, rgba(200, 160, 90, 0.18), transparent 8rem),
    #173824;
  background-size:
    29px 29px,
    29px 29px,
    auto,
    auto;
}

.map-grid::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 48%, transparent, rgba(4, 15, 9, 0.24) 58%);
  content: "";
}

.map-line {
  position: absolute;
  width: 150%;
  height: 26px;
  border-block: 1px solid rgba(225, 237, 227, 0.085);
  background: rgba(255, 255, 255, 0.018);
}

.line-one {
  top: 38%;
  left: 12%;
  transform: rotate(-29deg);
}

.line-two {
  top: 14%;
  left: 39%;
  transform: rotate(67deg);
}

.line-three {
  top: 67%;
  left: 38%;
  transform: rotate(8deg);
}

.map-point {
  position: absolute;
  z-index: 3;
  top: 42%;
  right: 16%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(226, 199, 139, 0.34);
  border-radius: 50%;
  background: rgba(200, 160, 90, 0.1);
  box-shadow:
    0 0 0 13px rgba(200, 160, 90, 0.04),
    0 0 35px rgba(200, 160, 90, 0.25);
}

.map-point b {
  width: 9px;
  height: 9px;
  border: 2px solid #152719;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px var(--gold);
}

.review-card {
  min-height: 218px;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  background:
    radial-gradient(circle at 92% 92%, rgba(200, 160, 90, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(38, 74, 50, 0.62), rgba(14, 34, 22, 0.68));
}

.review-content {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: space-between;
}

.review-card .card-copy h3 {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.payment-card {
  display: grid;
  min-height: 148px;
  gap: 20px;
  padding: 19px;
  background: rgba(17, 39, 26, 0.58);
}

.payment-card p {
  margin-bottom: 5px;
}

.payment-card > div > span {
  margin: 0;
}

.payment-window {
  display: flex;
  min-width: 0;
  align-items: center;
  overflow: hidden;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(2, 11, 6, 0.35);
}

.payment-window img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.86;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  align-items: center;
  padding: 29px 3px 4px;
  color: rgba(219, 228, 221, 0.42);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(222, 198, 148, 0.7);
}

.site-footer > span {
  grid-column: 1 / -1;
}

.is-ready .reveal {
  animation: reveal-in 780ms var(--ease-out) both;
}

.is-ready .reveal-2 {
  animation-delay: 70ms;
}

.is-ready .reveal-3 {
  animation-delay: 120ms;
}

.is-ready .reveal-4 {
  animation-delay: 170ms;
}

.is-ready .reveal-5 {
  animation-delay: 220ms;
}

.is-ready .reveal-6 {
  animation-delay: 270ms;
}

.is-ready .reveal-7 {
  animation-delay: 320ms;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .share-button:hover {
    border-color: rgba(224, 198, 140, 0.32);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
  }

  .primary-button:hover {
    box-shadow:
      0 20px 42px rgba(6, 15, 10, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
  }

  .link-card:hover {
    border-color: rgba(222, 198, 146, 0.3);
    background-color: rgba(34, 67, 46, 0.7);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 26px 54px rgba(0, 0, 0, 0.23);
    transform: translateY(-4px);
  }

  .link-card:hover .arrow-badge {
    background: var(--gold);
    color: #112017;
    transform: rotate(45deg);
  }
}

@media (min-width: 560px) {
  .site-shell {
    width: min(calc(100% - 48px), 1180px);
  }

  .topbar {
    min-height: 92px;
  }

  .brand-logo {
    width: 145px;
  }

  .hero-card {
    min-height: 590px;
    padding: 38px;
  }

  .hero-coordinate {
    bottom: 31px;
    left: 38px;
  }

  .hero-description {
    font-size: 15px;
  }

  .product-stage {
    --bottle-width: 142px;
    right: -10px;
    bottom: -16px;
    width: 244px;
    height: 370px;
  }

  .hero-actions {
    max-width: 16rem;
  }

  .link-card {
    padding: 20px;
  }

  .social-card {
    min-height: 195px;
  }

  .card-copy h3 {
    font-size: 21px;
  }

  .payment-card {
    grid-template-columns: 0.65fr 1.35fr;
    align-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
  }

  .site-footer > span {
    grid-column: auto;
  }
}

@media (min-width: 920px) {
  .site-shell {
    padding-bottom: 34px;
  }

  .topbar {
    min-height: 104px;
  }

  .experience {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 22px;
    align-items: start;
  }

  .hero-card {
    position: sticky;
    top: 22px;
    height: calc(100svh - 44px);
    min-height: 680px;
    max-height: 830px;
    padding: 42px;
    border-radius: 38px;
  }

  .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(3.65rem, 5.2vw, 4.65rem);
  }

  .hero-description {
    max-width: 21rem;
  }

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

  .hero-coordinate {
    bottom: 36px;
    left: 42px;
  }

  .product-stage {
    --bottle-width: 160px;
    right: -6px;
    bottom: 18px;
    width: 284px;
    height: 420px;
  }

  .link-gallery {
    padding-top: 7px;
  }

  .section-intro {
    min-height: 73px;
    margin-bottom: 12px;
    padding-inline: 6px;
  }

  .links-grid {
    gap: 12px;
  }

  .concierge-card {
    min-height: 270px;
  }

  .website-card {
    min-height: 220px;
  }

  .social-card {
    min-height: 190px;
  }

  .location-card,
  .location-content {
    min-height: 290px;
  }

  .site-footer {
    padding-top: 34px;
  }
}

@media (min-width: 1160px) {
  .experience {
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
    gap: 26px;
  }

  .hero-card {
    padding: 50px;
  }

  .hero-copy h1 {
    font-size: 4.85rem;
  }

  .hero-description {
    font-size: 16px;
  }

  .product-stage {
    --bottle-width: 178px;
    right: 14px;
    bottom: 28px;
    width: 316px;
    height: 460px;
  }

  .hero-coordinate {
    left: 50px;
  }
}

@media (max-width: 374px) {
  .site-shell {
    width: min(calc(100% - 20px), 1180px);
  }

  .brand-logo {
    width: 116px;
  }

  .share-button {
    padding-inline: 12px;
  }

  .hero-card {
    min-height: 550px;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-description {
    max-width: 16.5rem;
    font-size: 13px;
  }

  .hero-coordinate {
    left: 20px;
  }

  .product-stage {
    --bottle-width: 112px;
    right: -30px;
    bottom: -30px;
    width: 204px;
    height: 310px;
  }

  .link-card {
    border-radius: 21px;
  }

  .social-card .card-copy h3 {
    font-size: 16px;
  }
}

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

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