:root {
  --bg: #faf7f2;
  --bg-soft: #f3ede4;
  --bg-card: #ffffff;
  --ink: #1a1612;
  --ink-soft: #4a4540;
  --muted: #8a8278;
  --brand: #b94139;
  --brand-deep: #9c362e;
  --brand-bright: #d04b41;
  --brand-glow: rgba(185, 65, 57, 0.10);
  --line: rgba(26, 22, 18, 0.10);
  --line-warm: rgba(185, 65, 57, 0.3);
  --serif-italic: 'Caveat', cursive;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--brand); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 247, 242, 0.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid rgba(26, 22, 18, 0.05);
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 14px 24px;
}
.logo-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); position: relative; z-index: 2; }
.logo-mark img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-mark:hover img { transform: scale(1.04); }

.nav-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.45em;
  color: var(--brand);
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 0.45em;
  z-index: 1;
  pointer-events: auto;
  transition: color 0.3s ease;
  display: inline-block;
}
.nav-wordmark:hover { opacity: 0.85; }

.nav-menu { display: none; gap: 8px; align-items: center; }
.nav-menu a {
  color: var(--ink-soft); text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-menu a:hover {
  color: var(--ink);
  background: rgba(185, 65, 57, 0.18);
}

.nav-cta {
  display: none; background: var(--brand); color: var(--ink); text-decoration: none;
  padding: 11px 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: 100px; transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--brand-bright); transform: translateY(-1px); }

.menu-btn {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: all 0.3s ease;
}
.menu-btn:hover { border-color: var(--brand); color: var(--brand); }
.menu-btn svg { width: 18px; height: 18px; }

.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px -8px rgba(185, 65, 57, 0.55);
}
.nav-icon-btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(185, 65, 57, 0.7);
}
.nav-icon-btn svg { width: 18px; height: 18px; }

.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: min(85%, 360px); background: var(--bg-soft); z-index: 95;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 90px 32px 32px; border-left: 1px solid var(--line);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; color: var(--ink); text-decoration: none;
  font-size: 22px; font-weight: 300; padding: 16px 0;
  border-bottom: 1px solid var(--line); transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--brand); padding-left: 8px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 92;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* HERO — video only */
.hero {
  position: relative;
  height: 100vh; height: 100dvh;
  min-height: 540px;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay-min {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0) 70%,
    rgba(250,247,242,0.85) 100%);
  pointer-events: none;
}

.hero-sound {
  position: absolute; bottom: 24px; right: 24px; z-index: 3;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center;
  transition: all 0.4s ease;
  opacity: 0; animation: fadeIn 0.8s 1s ease forwards;
}
.hero-sound:hover {
  background: var(--brand); border-color: var(--brand);
  transform: scale(1.06);
}
.hero-sound svg { width: 16px; height: 16px; }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink); font-size: 9px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; z-index: 3; pointer-events: none;
  opacity: 0; animation: fadeIn 0.8s 1.2s ease forwards, bounce 2.5s 1.7s ease infinite;
  text-shadow: 0 1px 8px rgba(255,255,255,0.4);
}
.scroll-cue svg { width: 14px; height: 14px; }

/* ABOUT HERO BLOCK (merged from old hero) */
.about-hero-title {
  font-weight: 200;
  font-size: clamp(44px, 8.5vw, 88px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 8px 0 28px;
  max-width: 14ch;
  opacity: 0;
}
.about-hero-title.reveal { opacity: 0; }
.about-hero-title.reveal.visible { opacity: 1; }
.about-hero-title strong { font-weight: 600; }
.about-hero-small {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
  line-height: 1;
}
.about-hero-title em {
  font-family: var(--serif-italic);
  font-style: normal; font-weight: 500;
  color: var(--brand);
  font-size: 1.55em;
  line-height: 0.9;
  display: block;
  margin: 0 0 4px -0.05em;
  letter-spacing: -0.02em;
}
.about-hero-rest {
  display: block;
  font-size: 0.85em;
  line-height: 1.1;
  margin-top: 8px;
}

.about-hero-body {
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 40px;
}
.about-hero-body p + p { margin-top: 18px; }
.about-hero-body strong { color: var(--ink); font-weight: 500; }
.about-hero-body .accent { color: var(--brand); font-weight: 400; font-style: italic; }

.about-hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px; font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--brand); color: var(--ink);
  box-shadow: 0 14px 40px -14px rgba(185, 65, 57, 0.6);
}
.btn-primary:link, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px rgba(185, 65, 57, 0.85);
}
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-arrow { display: inline-block; transition: transform 0.4s ease; }
.btn-primary:hover .btn-arrow, .btn-ghost:hover .btn-arrow { transform: translateX(5px); }

/* SECTION FRAME */
.section { padding: 56px 24px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--brand);
}
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::after {
  content: ""; width: 32px; height: 1px; background: var(--brand);
}

/* ABOUT */
.about { background: var(--bg); border-top: 1px solid var(--line); }

/* TAGLINE BAND */
.tagline-band {
  background: var(--brand);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.tagline-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tagline-band::after {
  content: "";
  position: absolute;
  top: 24px; bottom: 24px; left: 24px; right: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
  z-index: 1;
}
.tagline-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 36px 16px;
}
.tagline-mark {
  font-family: var(--serif-italic);
  font-size: 60px;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: -8px;
  user-select: none;
}
.tagline-headline {
  font-weight: 200;
  font-size: clamp(34px, 6.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.tagline-headline strong {
  font-weight: 700;
  display: block;
}
.tagline-headline em {
  font-family: var(--serif-italic);
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  color: rgba(255,255,255,0.95);
  font-size: 1.05em;
  letter-spacing: 0;
  display: block;
  margin-top: 6px;
}
.tagline-divider {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 26px auto 0;
}

/* EASIER LIFE SECTION */
.easier {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.easier-header {
  text-align: right;
  max-width: 720px;
  margin: 0 0 32px auto;
}
.easier-header .section-eyebrow.center {
  justify-content: flex-end;
}
.easier-header .section-eyebrow.center::before {
  display: none;
}
.easier-title {
  font-weight: 200;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.easier-title strong { font-weight: 600; }
.easier-title em {
  font-family: var(--serif-italic);
  font-style: normal;
  color: var(--brand);
  font-size: 1em;
  text-transform: none;
}
.easier-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.easier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.easier-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.easier-block.is-open {
  border-color: var(--brand);
  box-shadow: 0 18px 40px -20px rgba(185, 65, 57, 0.35);
}

.easier-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  min-height: 88px;
  background: var(--bg-card);
  transition: background 0.5s cubic-bezier(0.32, 0.72, 0.24, 1);
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.easier-block.is-open .easier-block-head {
  background: var(--brand);
}

.easier-block-num {
  font-weight: 200;
  font-size: 36px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
  flex-shrink: 0;
}
.easier-block.is-open .easier-block-num {
  color: #fff;
}

.easier-block-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.4s ease;
  flex: 1;
}
.easier-block.is-open .easier-block-title {
  color: #fff;
}

.easier-block-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), color 0.4s ease;
  flex-shrink: 0;
}
.easier-block-toggle svg {
  width: 18px;
  height: 18px;
}
.easier-block.is-open .easier-block-toggle {
  transform: rotate(180deg);
  color: #fff;
}

/* Collapsing body — smooth and luxurious */
.easier-block-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.7s cubic-bezier(0.32, 0.72, 0.24, 1),
    opacity 0.5s cubic-bezier(0.32, 0.72, 0.24, 1) 0.05s;
}
.easier-block.is-open .easier-block-body {
  max-height: 480px;
  opacity: 1;
  transition:
    max-height 0.7s cubic-bezier(0.32, 0.72, 0.24, 1),
    opacity 0.6s cubic-bezier(0.32, 0.72, 0.24, 1) 0.15s;
}
.easier-block-body .easier-list {
  padding: 24px 28px 28px;
}

.easier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.easier-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.easier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.easier-list li em {
  font-family: var(--serif-italic);
  font-style: normal;
  color: var(--brand);
  font-size: 1.15em;
}

/* SERVICES */
.services { background: var(--bg-soft); border-top: 1px solid var(--line); }

.services-header {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 32px; align-items: end;
}
.services-title {
  font-weight: 200; font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1; letter-spacing: -0.025em; text-transform: uppercase;
}
.services-title strong { font-weight: 600; }
.services-title em {
  font-family: var(--serif-italic); font-style: normal;
  color: var(--brand); font-size: 1em; text-transform: none;
}
.services-intro {
  font-size: 15px; color: var(--ink-soft); line-height: 1.75;
  max-width: 480px; font-weight: 300;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.service-card.is-open {
  border-color: var(--brand);
  box-shadow: 0 18px 40px -20px rgba(185, 65, 57, 0.35);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  min-height: 90px;
  background: var(--bg-card);
  transition: background 0.5s cubic-bezier(0.32, 0.72, 0.24, 1);
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.service-card.is-open .service-head {
  background: var(--brand);
}

.service-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--ink);
  text-transform: uppercase;
  transition: color 0.4s ease;
  flex: 1;
  margin: 0;
}
.service-card.is-open .service-name {
  color: #fff;
}

.service-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), color 0.4s ease;
  flex-shrink: 0;
}
.service-toggle svg {
  width: 18px;
  height: 18px;
}
.service-card.is-open .service-toggle {
  transform: rotate(180deg);
  color: #fff;
}

.service-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.7s cubic-bezier(0.32, 0.72, 0.24, 1),
    opacity 0.5s cubic-bezier(0.32, 0.72, 0.24, 1) 0.05s;
}
.service-card.is-open .service-body {
  max-height: 320px;
  opacity: 1;
  transition:
    max-height 0.7s cubic-bezier(0.32, 0.72, 0.24, 1),
    opacity 0.6s cubic-bezier(0.32, 0.72, 0.24, 1) 0.15s;
}
.service-body .service-desc {
  padding: 24px 28px 28px;
}

.service-desc {
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* FINAL CTA */
.final-cta {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 64px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 800px; height: 800px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }

.final-cta-title {
  font-weight: 200; font-size: clamp(40px, 7vw, 84px);
  line-height: 1; letter-spacing: -0.025em;
  text-transform: uppercase; margin-bottom: 28px;
}
.final-cta-title strong { font-weight: 600; }
.final-cta-title em {
  font-family: var(--serif-italic); font-style: normal;
  color: var(--brand); font-size: 1em; text-transform: none;
}
.final-cta-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--ink-soft); max-width: 580px; margin: 0 auto 48px;
}
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.handwritten-note {
  font-family: var(--serif-italic); font-size: 22px; color: var(--brand);
  margin-top: 56px; transform: rotate(-1.5deg); display: inline-block; line-height: 1.4;
}

/* FOOTER */
.footer { background: var(--bg-soft); padding: 60px 24px 28px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand img {
  height: 110px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 320px;
  font-weight: 300;
  margin: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 13px;
  font-weight: 400; transition: color 0.3s;
}
.footer-links a:hover { color: var(--brand); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-contact a {
  color: var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 400;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--brand); }

.footer-meta {
  display: flex; flex-direction: column; gap: 16px; padding-top: 28px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em; color: var(--muted);
}
.footer-meta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.footer-meta a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-meta a:hover { color: var(--brand); }

.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 6px;
  display: grid; place-items: center; color: var(--ink-soft);
  transition: all 0.3s ease; text-decoration: none;
}
.social-icon:hover {
  background: var(--brand); color: var(--ink); border-color: var(--brand);
  transform: translateY(-2px);
}
.social-icon svg { width: 15px; height: 15px; }

/* ANIMATIONS */
@keyframes rise { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* DESKTOP */
@media (min-width: 768px) {
  .nav { padding: 24px 48px; }
  .nav.scrolled { padding: 16px 48px; }
  .nav-menu { display: flex; }
  .nav-wordmark { display: none; }
  .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .nav-icon-btn { display: none; }
  .nav-mobile-actions { display: none; }
  .hero-content { padding: 0 48px; }
  .hero-sound {
    top: 50%;
    right: 48px;
    bottom: auto;
    transform: translateY(-50%);
  }
  .hero-sound:hover { transform: translateY(-50%) scale(1.06); }
  .section { padding: 72px 48px; }
  .final-cta { padding: 80px 48px; }
  .footer { padding: 60px 48px 32px; }
  .services-header { grid-template-columns: 1.2fr 1fr; gap: 80px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .easier-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
  .footer-meta { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .easier-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
