@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  background: var(--midnight);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TOKENS ===== */
:root {
  --midnight: #0A1A2A;
  --deep-night: #0E2237;
  --night-blue: #132E45;
  --moonlight: #D4A762;
  --moonlight-dim: #B8924F;
  --moonbeam: #F0E4D0;
  --cream: #F5F0E8;
  --cream-muted: rgba(245, 240, 232, 0.6);
  --tropical-green: #5A7A52;
  --terracotta: #C4846C;
  --shadow: #06111C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --max-width: 1200px;
  --max-width-narrow: 800px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
}

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

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

p {
  max-width: 65ch;
}

.text-moonlight {
  color: var(--moonlight);
}

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

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

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(10, 26, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem var(--space-md);
  box-shadow: 0 1px 0 rgba(212, 167, 98, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--moonlight);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--moonlight);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--moonlight);
  color: var(--moonlight) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--moonlight);
  color: var(--midnight) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(212, 167, 98, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(90, 122, 82, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 20%, rgba(212, 167, 98, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--shadow) 0%, var(--midnight) 30%, var(--deep-night) 70%, var(--midnight) 100%);
  z-index: 0;
}

/* Moonlight glow effect */
.hero::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 98, 0.12) 0%, rgba(212, 167, 98, 0.03) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md);
}

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moonlight);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--moonlight);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-muted);
  max-width: 500px;
  margin: var(--space-sm) auto var(--space-lg);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-rating {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moonlight-dim);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-rating strong {
  font-weight: 500;
  color: var(--moonlight);
  font-size: 1rem;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--moonlight), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all 0.4s ease;
}

.btn--primary {
  background: var(--moonlight);
  color: var(--midnight);
}

.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 167, 98, 0.25);
}

.btn--outline {
  border: 1px solid var(--moonlight);
  color: var(--moonlight);
}

.btn--outline:hover {
  background: var(--moonlight);
  color: var(--midnight);
}

.btn--ghost {
  color: var(--moonlight);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--moonlight);
  letter-spacing: 0.12em;
}

.btn--ghost:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--deep-night);
}

.section--warm {
  background: linear-gradient(180deg, var(--deep-night), var(--night-blue), var(--deep-night));
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moonlight);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--moonlight);
  margin: var(--space-xs) 0 var(--space-md);
}

/* ===== INTRO SECTION ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--cream);
}

.intro-text {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(212, 167, 98, 0.1);
  position: relative;
  transition: border-color 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(212, 167, 98, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--moonlight), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 167, 98, 0.2);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--cream-muted);
  font-size: 0.9rem;
}

/* ===== ROOMS / HABITACIONES ===== */
.rooms-intro {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.room-card {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(212, 167, 98, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.room-card:last-child {
  border-bottom: none;
}

.room-type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moonlight);
  margin-bottom: var(--space-xs);
}

.room-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.room-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
}

.room-detail {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.room-detail strong {
  color: var(--moonlight);
  font-weight: 400;
}

.room-description {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.room-amenity {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(212, 167, 98, 0.15);
  color: var(--cream-muted);
}

/* ===== REVIEWS / TESTIMONIALS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.review {
  position: relative;
  padding-left: var(--space-md);
  border-left: 1px solid rgba(212, 167, 98, 0.2);
}

.review-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.review-quote::before {
  content: none;
}

.review-attribution {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moonlight-dim);
}

.review-source {
  color: var(--moonlight);
}

/* ===== SERVICES / AMENITIES ===== */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(212, 167, 98, 0.06);
}

.service-item {
  background: var(--midnight);
  padding: var(--space-md) var(--space-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: var(--deep-night);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(212, 167, 98, 0.3);
  line-height: 1;
  width: 40px;
}

.service-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.location-distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.distance-item {
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(212, 167, 98, 0.08);
}

.distance-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--moonlight);
  line-height: 1;
}

.distance-label {
  font-size: 0.78rem;
  color: var(--cream-muted);
  margin-top: 0.2rem;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moonlight);
  border-bottom: 1px solid var(--moonlight);
  padding-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.location-map-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-block h3 {
  font-size: 1.1rem;
  color: var(--moonlight);
  margin-bottom: var(--space-xs);
}

.contact-block p,
.contact-block a {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.8;
}

.contact-block a:hover {
  color: var(--cream);
}

/* ===== BOOKING PLATFORMS ===== */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.platform-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 167, 98, 0.15);
  color: var(--cream-muted);
  transition: all 0.3s ease;
}

.platform-link:hover {
  border-color: var(--moonlight);
  color: var(--moonlight);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212, 167, 98, 0.06) 0%, transparent 70%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  margin: 0 auto var(--space-lg);
  color: var(--cream-muted);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(212, 167, 98, 0.08);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moonlight);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: calc(var(--space-2xl) + 2rem) 0 var(--space-xl);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 20%, rgba(212, 167, 98, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--shadow) 0%, var(--midnight) 100%);
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--cream-muted);
}

/* ===== DECORATIVE ELEMENTS ===== */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--moonlight);
}

.gold-line--center {
  margin: 0 auto;
}

/* Stars decorative pattern */
.stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--cream);
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.6; }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .services-list {
    grid-template-columns: 1fr 1fr;
  }

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

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 960px) {
  .intro {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }

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

  .room-card {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-lg);
    align-items: start;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

/* ===== RESPONSIVE: MOBILE NAV ===== */
@media (max-width: 959px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    z-index: 99;
  }

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

  .nav-links a {
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    font-size: 0.85rem !important;
  }
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
