:root {
  color-scheme: light;
  font-size: 16px;
  /* Palette */
  --ink: #161c16;
  --paper: #fefefe;
  --coral: #ef3f4f;
  --mauve: #c8abbb;
  --mauve-25: color-mix(in srgb, var(--mauve) 25%, var(--paper));
  --mauve-40: color-mix(in srgb, var(--mauve) 40%, var(--paper));
  --coral-10: color-mix(in srgb, var(--coral) 10%, var(--paper));
  --coral-14: color-mix(in srgb, var(--coral) 14%, var(--paper));
  --color-bg: var(--paper);
  --color-bg-alt: #fcfbfa;
  --color-surface: #fffdfc;
  --color-text: var(--ink);
  --color-muted: rgba(22, 28, 22, 0.62);
  --color-line: rgba(22, 28, 22, 0.12);
  --color-accent: var(--coral);
  --color-accent-soft: rgba(239, 63, 79, 0.18);
  --color-secondary: var(--mauve);
  --color-secondary-soft: rgba(200, 171, 187, 0.2);
  --color-highlight: #f8a221;
  --color-highlight-soft: rgba(248, 162, 33, 0.18);
  /* Typography */
  --font-courier: "Courier Prime";
  --font-cardo: "Cardo";
  --font-body: var(--font-cardo);
  --font-heading: var(--font-courier);
  --font-accent: var(--font-courier);
  --type-lg: clamp(2.8rem, 7vw, 4.4rem);
  --type-md: clamp(2rem, 4vw, 3rem);
  --type-base: 1rem;
  --type-small: 0.9rem;
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  /* Radii + shadow */
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 35px rgba(12, 12, 11, 0.08);
  /* Motion */
  --duration-micro: 180ms;
  --duration-base: 320ms;
  --duration-slow: 520ms;
  --ease-ui: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  /* Legacy aliases */
  --bg: var(--color-bg);
  --bg-elevated: var(--color-bg-alt);
  --bg-soft: var(--color-surface);
  --text: var(--color-text);
  --muted: var(--color-muted);
  --accent: var(--color-accent);
  --accent-soft: var(--color-accent-soft);
  --secondary: var(--color-secondary);
  --secondary-soft: var(--color-secondary-soft);
  --highlight: var(--color-highlight);
  --highlight-soft: var(--color-highlight-soft);
  --line: var(--color-line);
  --radius: var(--radius-lg);
  --radius-sm: var(--radius-md);
  --shadow: var(--shadow-soft);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.6em;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h1 {
  font-size: var(--type-lg);
}

h2 {
  font-size: var(--type-md);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.site-wrapper {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.9s ease, transform 1.9s ease;
  overflow: hidden;
}

.site-wrapper.is-visible {
  opacity: 1;
  transform: none;
}

.grain-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.35;
  animation: grain 12s steps(10) infinite;
  z-index: 5;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  position: relative;
  padding: clamp(var(--space-xl), 10vw, var(--space-xxl)) 0;
}

.eyebrow {
  font-family: var(--font-heading);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.typewrap {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-width: var(--type-min-width, 16ch);
  white-space: nowrap;
  position: relative;
  font-weight: inherit;
  color: inherit;
}

#type-target {
  display: inline-block;
  font-weight: inherit;
}

.caret {
  display: inline-block;
  margin-left: 0.15rem;
  color: inherit;
  animation: caretBlink 0.8s steps(2) infinite;
  opacity: 1;
}

.caret.is-paused {
  animation: none;
  opacity: 1;
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.eyebrow--large {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: none;
}

.lede {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.btn,
.btn-primary,
.btn-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  transition: transform 160ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.btn {
  background: transparent;
  color: var(--ink);
  border-color: var(--mauve-40);
}

.btn:hover {
  background: var(--coral-10);
  border-color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 28, 22, 0.1);
}

.btn:active {
  background: var(--coral-14);
  border-color: var(--coral);
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--paper);
  border-color: var(--coral);
  box-shadow: 0 14px 28px rgba(22, 28, 22, 0.14);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--coral) 88%, #000);
  border-color: color-mix(in srgb, var(--coral) 88%, #000);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(22, 28, 22, 0.18);
}

.btn-primary:active {
  background: color-mix(in srgb, var(--coral) 80%, #000);
  border-color: color-mix(in srgb, var(--coral) 80%, #000);
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(22, 28, 22, 0.16);
}

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--mauve-25);
  letter-spacing: 0.02em;
  font-weight: 400;
  box-shadow: none;
}

.btn-quiet:hover {
  background: color-mix(in srgb, var(--mauve) 10%, var(--paper));
  border-color: var(--mauve-40);
  transform: translateY(-1px);
}

.btn-quiet:active {
  background: color-mix(in srgb, var(--mauve) 16%, var(--paper));
  border-color: var(--mauve-40);
  transform: translateY(0);
}

.cta-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 44px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--mauve-25);
  box-shadow: none;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 160ms ease,
    box-shadow 220ms ease;
}

.cta-button:hover,
.header-cta:hover {
  color: var(--coral);
  background: color-mix(in srgb, var(--coral) 9%, var(--paper));
  border-color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 28, 22, 0.1);
}

.cta-button:active,
.header-cta:active {
  transform: translateY(0);
  box-shadow: none;
  color: var(--coral);
}

.cta-button:focus-visible,
.header-cta:focus-visible {
  color: var(--ink);
  border-color: var(--coral);
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-quiet:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--coral) 35%, var(--mauve));
  outline-offset: 3px;
}

.btn .arrow,
.btn-quiet .arrow {
  transition: transform 160ms ease;
  opacity: 0.85;
}

.btn:hover .arrow,
.btn-quiet:hover .arrow {
  transform: translateX(2px);
}

.contact-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(21, 21, 19, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 25px 50px rgba(33, 31, 26, 0.15);
  opacity: 0;
  transform: translateY(90px) scale(0.9);
  filter: blur(12px);
  transition:
    box-shadow var(--duration-base) var(--ease-ui),
    background var(--duration-base) var(--ease-ui),
    color var(--duration-base) var(--ease-ui);
}

.contact-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 35px 70px rgba(33, 31, 26, 0.2);
  background: rgba(255, 255, 255, 0.3);
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-fab:active {
  transform: translateY(1px) scale(0.98);
}

.contact-fab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  color: var(--accent);
  box-shadow: 0 35px 70px rgba(33, 31, 26, 0.25);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.site-wrapper.is-visible .contact-fab {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: contactFabBubble 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes contactFabBubble {
  0% {
    opacity: 0;
    transform: translateY(90px) scale(0.9);
    filter: blur(12px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab {
    transform: none;
    transition: none;
    opacity: 1;
    filter: none;
  }
  .site-wrapper.is-visible .contact-fab {
    animation: none;
  }
}

body.modal-open .contact-fab {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .contact-fab {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    letter-spacing: 0.12em;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  z-index: 1000;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.preloader__inner {
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 0;
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--text);
  animation: preloaderRise 1s cubic-bezier(0.6, 0, 0.4, 1) forwards;
  will-change: transform;
}

.preloader__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}

.preloader__logo {
  width: min(220px, 45vw);
  height: auto;
}

@keyframes preloaderRise {
  0% {
    transform: translateY(60vh);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-60vh);
    opacity: 0;
  }
}

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

.cursor-dot {
  position: fixed;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 21, 19, 0.4);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.3s ease;
}

.announcement {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--secondary-soft);
}

.announcement__track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  width: 100%;
}

.announcement__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.announcement__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--highlight);
}

.announcement__message {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.announcement__button {
  font-family: var(--font-heading);
  border-radius: 999px;
  border: 1px solid var(--highlight);
  padding: 0.4rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--highlight);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.announcement__button:hover {
  background: var(--highlight-soft);
  color: var(--text);
}

.announcement__separator {
  color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .announcement__track {
    animation-duration: 9s;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(253, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
}

.site-header.has-floating-logo .nav {
  padding-left: clamp(4.5rem, 8vw, 6rem);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__brand img {
  height: 78px;
  width: auto;
}

.nav__links a {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav__brand.is-floating {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(253, 252, 246, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 30;
  padding: 0.5rem;
}

.nav__brand.is-floating img {
  height: 78px;
  width: auto;
}

.nav__brand.is-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.site-header.has-floating-logo .nav {
  padding-left: clamp(4.5rem, 8vw, 6rem);
}

.site-header .nav__brand.is-floating {
  width: 72px;
  height: 72px;
}

@media (max-width: 640px) {
  .nav__brand.is-floating {
    width: 56px;
    height: 56px;
    top: 0.8rem;
    left: 0.8rem;
    right: auto;
    padding: 0.35rem;
  }

  .nav__brand.is-floating img {
    height: 26px;
  }

  .site-header.has-floating-logo .nav {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .site-header .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-left: 0;
  }

  .site-header .nav__brand,
  .site-header .nav__cta {
    width: 100%;
  }

  .site-header .nav__cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .nav__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
  }

  .nav__brand img {
    height: 60px;
  }

  .nav__cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
  }

  .nav__button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .nav__toggle {
    align-self: center;
    margin-top: 0.25rem;
  }

  .site-header.has-floating-logo .nav {
    padding-left: 0;
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero__grid {
  position: relative;
  width: 100%;
}

.hero__grid--full {
  display: block;
}

@media (max-width: 768px) {
  .hero__media--full {
    min-height: auto;
  }

  .hero__overlay {
    position: static;
    padding: 0;
    margin-bottom: 1.5rem;
    color: var(--color-text);
  }

  .hero__overlay::before {
    display: none;
  }

  .hero__overlay .hero__copy {
    max-width: 100%;
    color: var(--color-text);
  }

  .hero__overlay .eyebrow,
  .hero__overlay h1 {
    color: var(--color-text);
    text-shadow: none;
  }

  .hero__media-primary {
    order: 2;
  }

  .hero__overlay {
    order: 1;
  }

  .hero__media--full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero__copy .hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-reviews {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  touch-action: pan-y;
}

.hero-reviews--section {
  margin-top: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--secondary-soft);
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 24px 70px rgba(12, 12, 11, 0.08);
}

.hero-reviews--section .hero-review {
  padding: 0;
}

.hero-reviews--section .hero-review__card {
  width: 100%;
}

.hero-reviews__viewport {
  border-radius: var(--radius);
  border: none;
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.hero-reviews__track {
  display: flex;
  width: 100%;
  gap: 0;
  padding: 0;
  margin: 0;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.hero-review {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.hero-review__card {
  width: min(640px, 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

.hero-review__rating {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  letter-spacing: 0.45em;
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--highlight);
}

.hero-review p {
  margin: 0;
}

@media (max-width: 640px) {
  .hero-review__card {
    max-height: 220px;
    overflow: hidden;
  }
  .hero-review__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(254, 254, 254, 0) 0%, rgba(252, 251, 249, 0.95) 75%, rgba(252, 251, 249, 1));
    pointer-events: none;
  }
}

.hero-reviews__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.hero-reviews__dots {
  display: inline-flex;
  gap: 0.4rem;
}

.hero-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: var(--secondary-soft);
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-reviews__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.hero__stats span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
}

.contact-hero {
  background: var(--color-bg);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: stretch;
}

.contact-hero__copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
}

.contact-summary {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.contact-summary span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(21, 20, 18, 0.55);
  margin-bottom: 0.35rem;
}

.contact-summary a {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-hero__card {
  border: 1px solid rgba(21, 20, 18, 0.12);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 30px 80px rgba(15, 14, 12, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-details__grid article {
  border: 1px solid rgba(21, 20, 18, 0.12);
  border-radius: 24px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  transition: border-color var(--duration-base) var(--ease-ui), transform var(--duration-base) var(--ease-enter);
}

.contact-details__grid article:hover {
  border-color: rgba(21, 20, 18, 0.4);
  transform: translateY(-4px);
}

.contact-details__grid a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

.contact-form {
  background: var(--color-bg-alt);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
}

.contact-form__intro ul {
  margin: 1.2rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-form__privacy {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(21, 20, 18, 0.65);
}

.contact-form__embed {
  border: 1px solid rgba(21, 20, 18, 0.12);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.contact-form__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 20, 18, 0.45);
}

.contact-form__embed.is-loaded .contact-form__loading {
  display: none;
}

.contact-form__embed iframe {
  width: 100%;
  height: 640px;
  border: none;
  border-radius: 18px;
}

.contact-form__notice {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(21, 20, 18, 0.6);
}

.contact-form--solo {
  padding-top: clamp(var(--space-lg), 8vw, var(--space-xxl));
}

.contact-form__grid--solo {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: start;
}

.contact-form__intro--solo h1 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  text-transform: lowercase;
  letter-spacing: 0.1em;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__fields label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(21, 20, 18, 0.7);
}

.contact-form__fields input,
.contact-form__fields select,
.contact-form__fields textarea {
  border: 1px solid rgba(21, 20, 18, 0.2);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form__fields select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(21, 20, 18, 0.6) 50%), linear-gradient(135deg, rgba(21, 20, 18, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.contact-form__two-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.contact-form__checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form__checkbox input {
  width: auto;
  padding: 0;
  border-radius: 4px;
  margin-top: 0.3rem;
}

.contact-form__small {
  font-size: 0.85rem;
  color: rgba(21, 20, 18, 0.7);
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
}

body.is-embedded .site-header {
  display: none;
}

body.is-embedded .contact-form--solo {
  padding-top: clamp(var(--space-md), 4vw, var(--space-xl));
}

body.is-embedded .site-footer {
  display: none;
}

.contact-form__status {
  min-height: 1.25rem;
}

.contact-map__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-map__embed iframe {
  border-radius: 24px;
}

.policy-hero {
  background: var(--color-bg);
}

.policy-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.policy-hero__copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.policy-meta {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.policy-meta span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(21, 20, 18, 0.55);
  margin-bottom: 0.35rem;
}

.policy-meta a {
  font-weight: 600;
}

.policy-hero__card {
  border: 1px solid rgba(21, 20, 18, 0.12);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 60px rgba(15, 14, 12, 0.1);
}

.policy-card__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
}

.policy-card__note {
  font-size: 0.92rem;
  color: rgba(21, 20, 18, 0.75);
}

.policy-body {
  background: var(--color-bg-alt);
}

.policy-body__inner {
  max-width: 960px;
  margin: 0 auto;
}

.policy-richtext {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(21, 20, 18, 0.12);
  box-shadow: 0 20px 45px rgba(15, 14, 12, 0.08);
  padding: clamp(1.75rem, 5vw, 3.5rem);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.policy-richtext h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.policy-richtext h2:first-child {
  margin-top: 0;
}

.policy-richtext h3 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.policy-richtext h4 {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  text-transform: none;
}

.policy-richtext ul,
.policy-richtext ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.policy-richtext a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.policy-richtext strong {
  font-weight: 600;
}

.policy-intro {
  margin-bottom: 2rem;
}

.policy-inline-card {
  margin-top: 1.75rem;
}

.testimonials {
  padding-top: 0;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: minmax(300px, 420px) minmax(520px, 1fr);
    align-items: center;
  }
}

.hero__media {
  position: relative;
  isolation: isolate;
  align-self: stretch;
}

.hero__media--full {
  border-radius: clamp(1.5rem, 3vw, 2.75rem);
  overflow: hidden;
  min-height: clamp(460px, 85vh, 920px);
  box-shadow: 0 40px 90px rgba(12, 12, 11, 0.18);
}

.amenities__media {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__media-primary {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 4.5rem);
  color: var(--color-surface);
}

.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(22, 28, 22, 0.1) 0%, rgba(22, 28, 22, 0.35) 40%, rgba(22, 28, 22, 0.78) 100%),
    radial-gradient(circle at top left, rgba(239, 63, 79, 0.25), transparent 60%);
  z-index: 0;
}

.hero__overlay .hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: min(640px, 80vw);
}

.hero__overlay .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero__overlay h1 {
  color: var(--color-surface);
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin: 0;
}

.hero__overlay .btn-primary {
  box-shadow: 0 20px 40px rgba(239, 63, 79, 0.3);
}

.hero__overlay .btn-primary:hover {
  box-shadow: 0 26px 46px rgba(239, 63, 79, 0.32);
}

.hero__overlay .btn-primary:active {
  box-shadow: 0 18px 32px rgba(239, 63, 79, 0.28);
}

.hero__media-secondary,
.hero__media-secondary-inner,
.hero__media-card {
  display: none;
}

.amenities--showcase {
  background: var(--color-bg-alt);
  color: var(--color-text);
  padding: clamp(var(--space-xl), 12vw, var(--space-xxl)) 0;
}

.amenities--showcase .eyebrow {
  color: var(--muted);
}

.amenities__showcase {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.amenities__intro h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--color-text);
}

.amenities__lede {
  color: rgba(21, 20, 18, 0.7);
  font-size: 1.05rem;
  max-width: 38ch;
}

.amenities__discover {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.amenities__discover span {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.amenities__gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

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

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

.amenities__dots {
  display: inline-flex;
  gap: 0.4rem;
}

.amenities__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(21, 21, 19, 0.25);
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.amenities__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.amenity-card {
  flex: 0 0 min(320px, 70vw);
  background: var(--color-surface);
  border-radius: 24px;
  border: 1px solid rgba(31, 31, 29, 0.12);
  padding: 1.75rem;
  display: flex;
  min-height: 220px;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(15, 14, 12, 0.05);
}

.amenity-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(21, 20, 18, 0.85);
}

.amenity-card__meta h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-text);
}

.amenity-card__meta p {
  margin: 0;
  color: rgba(21, 20, 18, 0.65);
  font-size: 1rem;
  line-height: 1.5;
}


@media (max-width: 960px) {
  .amenities__showcase {
    grid-template-columns: 1fr;
  }

  .amenities__gallery {
    padding-top: 1rem;
  }
}

.plans {
  overflow: hidden;
  background: linear-gradient(180deg, #fefefe 0%, #f7f5f0 100%);
  color: var(--color-text);
  padding: clamp(var(--space-xl), 10vw, var(--space-xxl)) 0;
}

.plans__shell {
  border: 1px solid rgba(22, 28, 22, 0.12);
  border-radius: 20px;
  background: var(--color-surface);
  padding: clamp(2rem, 4.5vw, 3.75rem);
  box-shadow: 0 30px 70px rgba(15, 14, 12, 0.08);
}

.plans__shell::after {
  content: "";
  display: block;
  height: 6px;
  width: 90px;
  margin: clamp(1rem, 4vw, 2rem) auto 0;
  border-radius: 999px;
  background: var(--highlight);
}

.plans__intro {
  position: relative;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.plans__intro h2 {
  color: var(--color-text);
  letter-spacing: 0.18em;
  text-transform: none;
}

.plans__lede {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.plans__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.favorites-cta {
  background: var(--color-bg-alt);
  padding: clamp(var(--space-lg), 10vw, var(--space-xxl)) 0;
}

.favorites-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.favorites-cta__content {
  max-width: 620px;
}

.favorites-cta__content h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.5rem;
}

.favorites-cta__copy {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.favorites-cta__inner .btn,
.favorites-cta__inner .btn-primary,
.favorites-cta__button {
  min-width: 260px;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2.8rem;
}

@media (max-width: 640px) {
  .favorites-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .favorites-cta__copy {
    font-size: 1rem;
  }
}

.plan-card {
  position: relative;
  width: 100%;
  min-height: 120px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(22, 28, 22, 0.14);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(15, 14, 12, 0.06);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.plan-card.is-dropdown-interactive {
  cursor: pointer;
}

.plan-card.has-toggle {
  justify-content: space-between;
}

.plan-card:hover {
  color: var(--color-text);
  transform: translateY(-6px);
  border-color: rgba(22, 28, 22, 0.25);
  box-shadow: 0 34px 70px rgba(15, 14, 12, 0.12);
}

.plan-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .plan-card__content {
    align-items: center;
    flex-wrap: nowrap;
  }
  .plan-card__details {
    flex: 1;
    min-width: 0;
  }
  .plan-card__toggle {
    align-self: center;
  }
}

.plan-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  width: 100%;
}

.plan-card__details > p {
  max-width: 56ch;
  color: rgba(15, 14, 12, 0.78);
  line-height: 1.55;
}

.plan-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.plan-card__toggle {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(22, 28, 22, 0.25);
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.plan-card__toggle:hover {
  color: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.plan-card__toggle:active {
  transform: translateY(1px);
}

.plan-card__toggle[aria-expanded="true"] {
  transform: rotate(45deg);
  color: var(--coral);
  border-color: var(--coral);
}

.plan-card__tag {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--highlight);
  font-weight: 500;
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
}

.plan-card p {
  margin: 0;
  color: rgba(15, 14, 12, 0.72);
}

.plan-card.has-toggle h3 {
  color: var(--ink);
}

.plan-card__actions {
  flex-shrink: 0;
  min-width: 1px;
  text-align: right;
}

/* plan-card__cta legacy style intentionally left blank since CTAs now use shared .cta-button */

.plan-card__cta span:last-child {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent);
}

.plan-card__cta:active {
  transform: translateX(2px) scale(0.98);
}

.plan-dropdown {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  width: 100%;
  border-top: none;
}

.plan-dropdown__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(31, 31, 29, 0.18);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.plan-dropdown__toggle span {
  font-size: 1.2rem;
}

.plan-dropdown__toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.plan-dropdown__toggle:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
}

.plan-dropdown__panel {
  margin-top: 1rem;
  padding: 0;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(22, 28, 22, 0.14);
  background: var(--color-bg);
  box-shadow: 0 20px 50px rgba(12, 12, 11, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 320ms ease-out,
    transform 320ms ease-out;
}

.plan-dropdown__panel.is-open {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--color-surface);
  border-color: rgba(22, 28, 22, 0.2);
  box-shadow: 0 30px 80px rgba(12, 12, 11, 0.08);
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.plan-dropdown__panel.is-animating {
  will-change: opacity, transform;
}

.plan-dropdown__intro {
  margin: 0 0 1rem;
  color: rgba(15, 14, 12, 0.7);
}

.plan-dropdown__intro a {
  color: var(--accent);
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.plan-option-group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}

.plan-option-group:first-of-type {
  margin-top: 0.5rem;
  border-top: none;
  padding-top: 0;
}

.plan-option-group h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 500;
}

.plan-option-group > p {
  margin: 0 0 0.85rem;
  color: rgba(15, 14, 12, 0.72);
  font-size: 0.95rem;
}

.plan-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  cursor: pointer;
}

.plan-option:last-child {
  border-bottom: none;
}

.plan-option__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}

.plan-option__label {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--highlight);
}

.plan-option__description {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(15, 14, 12, 0.92);
  font-weight: 500;
}

.plan-option__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  align-items: center;
}

.plan-option__cta {
  flex-shrink: 0;
}

.plan-dropdown__note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(21, 20, 18, 0.6);
}

@keyframes dropdownReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .plan-card,
  .plan-card__cta,
  .plan-dropdown__panel,
  .plan-option,
  .cta-button {
    transition: none;
  }
}

@media (max-width: 640px) {
  .plan-card {
    align-items: stretch;
  }

  .plan-card__content {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .plan-card__aside {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
  }

  .plan-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .plan-option__actions {
    justify-content: flex-start;
  }
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.products {
  padding-top: 0;
}

.products__viewport {
  margin-top: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.products__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 5vw 2rem;
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__media {
  padding-top: 120%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}

.product-card__body {
  padding: 1.25rem 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  gap: 0.5rem;
}

.slider-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-button:hover {
  background: rgba(15, 16, 17, 0.06);
}

.testimonials__slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--secondary-soft);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0.65;
  box-shadow: 0 18px 45px rgba(12, 12, 11, 0.05);
  transition: opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial__rating {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonials__dots button.is-active {
  background: var(--accent);
  transform: scale(1.4);
}

.feed__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.feed-card {
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--secondary-soft);
  color: var(--color-surface);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(239, 63, 79, 0.2);
}

.cta__inner {
  border-radius: var(--radius);
  padding: 4rem;
  background: linear-gradient(140deg, rgba(239, 63, 79, 0.08), rgba(200, 171, 187, 0.15), rgba(255, 255, 255, 0.85));
  border: 1px solid var(--secondary-soft);
  text-align: center;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--color-bg-alt);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 320px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.footer__links strong {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer__links a {
  color: var(--text);
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.map__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.map__details {
  background: var(--bg-soft);
  border: 1px solid var(--secondary-soft);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.map__embed iframe {
  border-radius: var(--radius-sm);
  min-height: 380px;
  border: 1px solid var(--secondary-soft);
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(5%, -5%); }
  50% { transform: translate(-5%, 5%); }
  75% { transform: translate(5%, 5%); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    text-align: center;
    z-index: 9;
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__toggle {
    display: flex;
  }

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

@media (max-width: 640px) {
  .hero__copy .hero__actions {
    flex-direction: column;
  }

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

  .hero-review {
    padding: 0 1rem;
  }

  .hero-review__card {
    padding: 1rem 1.25rem;
  }

  .cta__inner {
    padding: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .announcement__track {
    animation: none;
  }

  .products__viewport,
  .site-wrapper,
  [data-animate] {
    transition: none;
  }

  .cursor-dot {
    display: none;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.popup-overlay[hidden] {
  display: none;
}

.popup-overlay__dialog {
  position: relative;
  width: min(100%, 900px);
  height: min(90vh, 700px);
  background: var(--color-surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.popup-overlay__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem;
  text-align: center;
  color: rgba(22, 28, 22, 0.72);
  font-family: var(--font-body);
}

.popup-overlay__fallback p {
  margin: 0;
}

.popup-overlay__fallback[hidden] {
  display: none;
}

.popup-overlay__fallback-note {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

.popup-overlay__fallback-link {
  margin-top: 0.25rem;
}

.popup-overlay__backdrop {
  position: absolute;
  inset: 0;
}

.popup-overlay__dialog iframe {
  border: none;
  width: 100%;
  height: 100%;
  background: var(--color-surface);
}

.popup-overlay__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: rgba(22, 28, 22, 0.08);
  color: var(--text);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.popup-overlay__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

body.modal-open {
  overflow: hidden;
}
