/* -------------------------------------------------------
   Tinea — website stylesheet
   versão 2.0
   ------------------------------------------------------- */

:root {
  --bg: #05050b;
  --bg-deep: #030307;
  --bg-2: #080817;
  --bg-3: #141022;
  --bg-soft: rgba(17, 18, 38, 0.82);
  --bg-card: rgba(23, 18, 42, 0.76);
  --bg-card-hover: rgba(34, 24, 58, 0.84);

  --text: #f4f0ff;
  --text-soft: #ddd7f4;
  --muted: #b7b0cf;
  --muted-2: #8f88aa;

--purple: #b28cff;
--purple-soft: #e3d6ff;
--purple-dark: #5a3d88;

--blue: #9a83ff;
--blue-soft: #d9cfff;
--blue-dark: #4f427f;

  --rose: #b85f8a;
  --rose-dark: #6d2b4d;

  --paper: #efe4cf;
  --paper-muted: #cdbb9e;

  --border: rgba(244, 240, 255, 0.13);
  --border-strong: rgba(227, 214, 255, 0.38);
  --border-soft: rgba(227, 214, 255, 0.15);


  --shadow: rgba(0, 0, 0, 0.64);
  --shadow-soft: rgba(0, 0, 0, 0.35);
  --glow-purple: rgba(178, 140, 255, 0.35);
  --glow-blue: rgba(178, 140, 255, 0.18);
  --glow-rose: rgba(184, 95, 138, 0.16);

  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* base ------------------------------------------------ */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--serif);
  line-height: 1.75;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(155, 124, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 2%, rgba(106, 169, 255, 0.13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(184, 95, 138, 0.12), transparent 38%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 42%, #070716 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.75), transparent 92%);
  opacity: 0.22;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.48;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.04), transparent 17%),
    radial-gradient(circle at 76% 62%, rgba(155, 124, 255, 0.06), transparent 24%),
    radial-gradient(circle at 50% 40%, rgba(106, 169, 255, 0.03), transparent 42%);
}

::selection {
  color: #080817;
  background: var(--purple-soft);
}

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

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

strong {
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

/* decorative layers ---------------------------------- */

.rain-layer,
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.rain-layer {
  z-index: 2;
  opacity: 0.2;
  overflow: hidden;
  background-image:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 45%,
      rgba(180, 211, 255, 0.5) 46%,
      transparent 49%,
      transparent 100%
    );
  background-size: 88px 132px;
  animation: rainFall 0.85s linear infinite;
}

.noise-layer {
  z-index: 3;
  opacity: 0.06;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.rain-drop {
  position: absolute;
  top: -130px;
  width: 1px;
  height: 92px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(180, 211, 255, 0.66),
      transparent
    );
  transform: rotate(14deg);
  animation: rainDropFall linear infinite;
}

.dust-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dust-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(180, 211, 255, 0.34);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatDust linear infinite;
}

/* header --------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(5, 5, 14, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 14, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.38);
}

.navbar {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 4;
}

.logo {
  color: var(--purple-soft);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 18px var(--glow-purple);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.78rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease,
    transform 0.2s ease;
}

.nav-links a::before {
  content: "⊹";
  margin-right: 0.26rem;
  color: rgba(201, 186, 255, 0.55);
  font-size: 0.7rem;
}

.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 14px var(--glow-blue);
}

.language-button {
  padding: 0.42rem 0.82rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(155, 124, 255, 0.08);
}

.language-button:hover {
  background: rgba(155, 124, 255, 0.16);
}

/* audio ---------------------------------------------- */

.audio-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  color: var(--text);
  background: rgba(10, 10, 24, 0.84);
  backdrop-filter: blur(12px);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.audio-toggle:hover {
  transform: translateY(-3px);
  background: rgba(155, 124, 255, 0.14);
}

.audio-toggle.is-playing {
  border-color: rgba(180, 211, 255, 0.72);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(106, 169, 255, 0.22);
}

/* hero ----------------------------------------------- */

.hero {
  min-height: 100vh;
  padding: 9rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(3, 3, 9, 0.36), rgba(3, 3, 9, 0.94)),
    radial-gradient(circle at 50% 38%, rgba(155, 124, 255, 0.23), transparent 33%),
    radial-gradient(circle at 33% 72%, rgba(106, 169, 255, 0.13), transparent 31%),
    radial-gradient(circle at 72% 74%, rgba(184, 95, 138, 0.14), transparent 29%),
    linear-gradient(135deg, #080819, #030309 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 6rem 1.5rem 3rem;
  z-index: -1;
  border: 1px solid rgba(201, 186, 255, 0.12);
  box-shadow:
    inset 0 0 70px rgba(155, 124, 255, 0.06),
    0 0 70px rgba(0, 0, 0, 0.4);
  opacity: 0.82;
}

.hero-frame {
  width: min(880px, 100%);
  text-align: center;
  padding: clamp(2rem, 6vw, 4.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 17, 38, 0.84), rgba(5, 5, 14, 0.74)),
    radial-gradient(circle at top, rgba(155, 124, 255, 0.16), transparent 47%);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.47),
    inset 0 0 40px rgba(255, 255, 255, 0.025);
  position: relative;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border-color: rgba(180, 211, 255, 0.35);
  border-style: solid;
  pointer-events: none;
}

.hero-frame::before {
  left: 18px;
  top: 18px;
  border-width: 1px 0 0 1px;
}

.hero-frame::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.eyebrow,
.section-label {
  color: var(--purple-soft);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(4.8rem, 13vw, 10rem);
  line-height: 0.85;
  color: var(--text);
  letter-spacing: 0.035em;
  text-shadow:
    0 0 18px rgba(155, 124, 255, 0.45),
    0 0 45px rgba(106, 169, 255, 0.2);
}

.hero-subtitle {
  margin-top: 1.55rem;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  color: var(--blue-soft);
}

.hero-description {
  max-width: 730px;
  margin: 1.15rem auto 0;
}

.status-row {
  margin: 1.55rem auto 0;
  max-width: 760px;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.status-row span {
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--sans);
  font-size: 0.84rem;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 700;
}

.primary-button {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  box-shadow: 0 0 24px rgba(155, 124, 255, 0.22);
}

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

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--shadow);
}

.hero-note {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1rem, 7vw, 5rem);
  max-width: 280px;
  padding: 1.1rem;
  transform: rotate(2deg);
  background:
    linear-gradient(180deg, rgba(244, 240, 255, 0.1), rgba(244, 240, 255, 0.055));
  border: 1px solid rgba(244, 240, 255, 0.16);
  border-radius: 7px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-note span {
  display: block;
  color: var(--blue-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.hero-note p {
  color: var(--text);
  font-size: 0.98rem;
  font-style: italic;
}

/* sections ------------------------------------------- */

.section {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
  padding: 6rem 0;
  position: relative;
  z-index: 4;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(12, 12, 28, 0.88), rgba(5, 5, 14, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(155, 124, 255, 0.14), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(106, 169, 255, 0.08), transparent 32%);
  border-block: 1px solid var(--border);
}

.section-header {
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section h2::after {
  content: "";
  display: block;
  margin-top: 1rem;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue), transparent);
}

.section-intro {
  max-width: 800px;
  margin-bottom: 2rem;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: center;
}

.two-columns p + p,
.atmosphere-content p + p {
  margin-top: 1rem;
}

/* window --------------------------------------------- */

.pixel-window {
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 10, 22, 0.86);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(155, 124, 255, 0.08);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  background: rgba(244, 240, 255, 0.06);
  border-bottom: 1px solid var(--border);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) {
  background: var(--rose);
}

.window-bar span:nth-child(2) {
  background: var(--purple);
}

.window-bar span:nth-child(3) {
  background: var(--blue);
}

.window-content {
  padding: 1.45rem;
}

.mini-title,
.window-content .mini-title {
  color: var(--blue-soft);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.window-content p:last-child {
  color: var(--text);
}

/* grids and cards ------------------------------------ */

.location-grid,
.collection-grid,
.feature-list,
.inspiration-grid {
  display: grid;
  gap: 1rem;
}

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

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

.feature-list,
.inspiration-grid {
  grid-template-columns: repeat(4, 1fr);
}

.location-card,
.collection-card,
.feature-item,
.inspiration-card,
.timeline-item {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(24, 24, 48, 0.86), rgba(12, 12, 28, 0.82));
  border-radius: var(--radius-md);
  padding: 1.38rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before,
.collection-card::before,
.feature-item::before,
.inspiration-card::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(155, 124, 255, 0.08), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(106, 169, 255, 0.08), transparent 35%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.location-card:hover,
.collection-card:hover,
.feature-item:hover,
.inspiration-card:hover,
.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 186, 255, 0.45);
  background: var(--bg-card-hover);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(155, 124, 255, 0.1);
}

.location-card:hover::before,
.collection-card:hover::before,
.feature-item:hover::before,
.inspiration-card:hover::before,
.timeline-item:hover::before {
  opacity: 1;
}

.location-card h3,
.collection-card h3,
.feature-item h3,
.inspiration-card h3,
.timeline-item h3 {
  color: var(--blue-soft);
  margin-bottom: 0.6rem;
  position: relative;
}

.location-card p,
.collection-card p,
.feature-item p,
.inspiration-card p,
.timeline-item p {
  position: relative;
  font-size: 0.98rem;
}

.room-number {
  display: inline-block;
  color: var(--purple-soft);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
}

.card-icon {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(201, 186, 255, 0.22);
  border-radius: 999px;
  color: var(--purple-soft);
  background: rgba(155, 124, 255, 0.075);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* atmosphere ----------------------------------------- */

.atmosphere-content {
  max-width: 930px;
}

.word-list,
.vibe-grid {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.word-list span,
.vibe-grid span {
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 20px rgba(155, 124, 255, 0.025);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.word-list span:hover,
.vibe-grid span:hover {
  color: var(--text);
  border-color: rgba(201, 186, 255, 0.5);
  transform: translateY(-2px);
}

.spoiler-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--purple);
  background: rgba(155, 124, 255, 0.08);
  color: var(--muted);
  border-radius: var(--radius-sm);
}

/* timeline ------------------------------------------- */

.timeline {
  display: grid;
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(var(--purple), var(--blue), transparent);
  opacity: 0.45;
}

.timeline-item {
  margin-left: 2.5rem;
}

.timeline-date {
  display: inline-block;
  color: var(--purple-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* contact and footer --------------------------------- */

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-section p {
  max-width: 720px;
  margin: 0 auto;
}

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

.contact-links a {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.contact-links a:hover {
  color: white;
  background: rgba(155, 124, 255, 0.14);
  border-color: rgba(201, 186, 255, 0.5);
  transform: translateY(-3px);
}

.footer {
  position: relative;
  z-index: 4;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #050511;
}

.footer p {
  font-size: 0.95rem;
}

/* animations ----------------------------------------- */

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

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

.title-ready {
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes rainFall {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -88px 132px;
  }
}

@keyframes rainDropFall {
  from {
    transform: translateY(-130px) translateX(0) rotate(14deg);
  }

  to {
    transform: translateY(120vh) translateX(-72px) rotate(14deg);
  }
}

@keyframes floatDust {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: 0.72;
  }

  100% {
    transform: translateY(-120px) translateX(35px);
    opacity: 0;
  }
}

@keyframes titleGlow {
  from {
    text-shadow:
      0 0 18px rgba(155, 124, 255, 0.45),
      0 0 45px rgba(106, 169, 255, 0.2);
  }

  to {
    text-shadow:
      0 0 26px rgba(155, 124, 255, 0.72),
      0 0 60px rgba(106, 169, 255, 0.34);
  }
}

/* scroll moods --------------------------------------- */

.mood-morning {
  --purple: #a994ff;
  --blue: #82bdff;
  --blue-soft: #c6ddff;
}

.mood-afternoon {
  --purple: #9b7cff;
  --blue: #6aa9ff;
  --blue-soft: #a8ccff;
}

.mood-night {
  --purple: #8b6cff;
  --blue: #5f9dff;
  --blue-soft: #9cc7ff;
}

/* scrollbar ------------------------------------------ */

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #050511;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple-dark), var(--blue-dark));
  border: 3px solid #050511;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--purple), var(--blue));
}

/* accessibility -------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .rain-layer,
  .dust-particles {
    display: none;
  }
}

/* responsive ----------------------------------------- */

@media (max-width: 1120px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-list,
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-note {
    position: static;
    margin: 2rem auto 0;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    justify-content: center;
  }

  .two-columns,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 2rem, var(--max-width));
    padding-block: 5rem;
  }

  .dark-section {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 10rem;
  }
}

@media (max-width: 680px) {
  p {
    font-size: 1rem;
  }

  .nav-links {
    font-size: 0.8rem;
    gap: 0.58rem;
  }

  .nav-links a::before {
    display: none;
  }

  .hero {
    padding: 11rem 1rem 4rem;
    min-height: auto;
  }

  .hero::after {
    inset: 7rem 0.8rem 2rem;
  }

  .hero-frame {
    padding: 2.1rem 1.15rem;
    border-radius: 22px;
  }

  .hero-frame::before,
  .hero-frame::after {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 5.5rem);
  }

  .status-row span {
    font-size: 0.78rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .location-grid,
  .feature-list,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 4rem;
  }

  .section h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .audio-toggle {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }

  .timeline::before {
    left: 0.4rem;
  }

  .timeline-item {
    margin-left: 1.5rem;
  }
}

@media (max-width: 420px) {
  .navbar {
    width: min(100% - 1rem, var(--max-width));
  }

  .hero-note {
    transform: none;
  }

  .collection-card,
  .feature-item,
  .inspiration-card,
  .location-card,
  .timeline-item {
    padding: 1.1rem;
  }
}

.contact-section .section h2::after,
.contact-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.contact-section .section-header h2::after {
  margin-left: auto;
  margin-right: auto;
}