@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;1,600&family=Raleway:wght@300;400;500;600;700;800&display=swap");

:root {
  --brown: #6b4226;
  --brown-light: #8b5a3a;
  --brown-dark: #3d2010;
  --brown-mid: #4a2c15;
  --surface-dark-warm: linear-gradient(
    140deg,
    var(--brown-dark) 0%,
    var(--brown) 100%
  );
  --surface-dark-story: #301c10;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #f5edd6;
  --nude: #e8c9a8;
  --nude-light: #f4e4d4;
  --cream: #fdf8f2;
  --pastel-rose: #f2d9d9;
  --pastel-sage: #d9e8d9;
  --pastel-lav: #e4d9f0;
  --text-dark: #2a1a0e;
  --text-mid: #5c3d22;
  --text-soft: #7a5236;
  --text-light: rgba(255, 255, 255, 0.82);
  --text-light-soft: rgba(255, 255, 255, 0.68);
  --surface-white: rgba(255, 255, 255, 0.96);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(253, 248, 242, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 30px rgba(107, 66, 38, 0.1);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fef3c7;
  transition: color 0.4s;
}
.nav-brand-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fcd34d;
  transition: color 0.4s;
}
#navbar.scrolled .nav-brand-name {
  color: var(--brown-dark);
}
#navbar.scrolled .nav-brand-sub {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
#navbar.scrolled .nav-link {
  color: var(--text-mid);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link:hover {
  color: var(--gold-light) !important;
}
.nav-link.active {
  color: var(--gold) !important;
}

.nav-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}
#navbar.scrolled .hamburger {
  color: var(--brown-dark);
}

.mobile-menu {
  display: none;
  background: rgba(253, 248, 242, 0.98);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 10px 40px rgba(107, 66, 38, 0.15);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-pale);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brown-dark);
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.45);
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  transition: all 0.3s ease;
}
.btn-ghost i,
.btn-ghost span {
  transition: color 0.3s ease;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--brown-dark) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost:hover i,
.btn-ghost:hover span {
  color: var(--brown-dark) !important;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  transition: all 0.3s ease;
}
.btn-ghost-dark i,
.btn-ghost-dark span {
  transition: color 0.3s ease;
}
.btn-ghost-dark:hover {
  background: var(--gold);
  color: var(--brown-dark) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost-dark:hover i,
.btn-ghost-dark:hover span {
  color: var(--brown-dark) !important;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}

/* ── DECORATIVE ── */
.gold-line {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-line-l {
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-line-r {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
}
.section-title-light {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
}
.divider {
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(
    150deg,
    var(--brown-dark) 0%,
    var(--brown) 60%,
    var(--brown-light) 100%
  );
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 55%
  );
}
.page-hero-bg-word {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  bottom: -1rem;
  right: -1rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  z-index: 990;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.wa-float:hover {
  transform: scale(1.12);
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 4px 36px rgba(37, 211, 102, 0.8),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: none;
}

/* ── SYSTEM FX ── */
body > * {
  position: relative;
  z-index: 1;
}

body > .global-particles,
body > .page-transition-overlay,
body > .scroll-progress,
body > .custom-cursor,
body > .cursor-trail,
body > .wa-tooltip {
  position: fixed;
}

.texture-surface {
  position: relative;
  isolation: isolate;
}

.texture-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='organic'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23organic)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.texture-surface > * {
  position: relative;
  z-index: 1;
}

.global-particles {
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.scroll-progress {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.35);
  z-index: 10001;
}

.page-transition-overlay {
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--gold-pale),
    rgba(245, 237, 214, 0.96)
  );
  transform: translateY(-100%);
  transition: transform 0.4s ease-in;
  pointer-events: none;
  z-index: 10003;
}

.page-transition-overlay.is-visible {
  transform: translateY(0);
}

.page-transition-overlay.is-lifting {
  transition-timing-function: ease-out;
  transform: translateY(-100%);
}

.nav-links {
  position: relative;
}

.nav-indicator {
  position: absolute;
  bottom: -6px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.2),
    var(--gold),
    rgba(201, 168, 76, 0.2)
  );
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.28);
  transition:
    left 0.35s ease,
    width 0.35s ease,
    opacity 0.35s ease;
  opacity: 0;
}

.nav-indicator.is-ready {
  opacity: 1;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

.custom-cursor,
.cursor-trail {
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.custom-cursor {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold);
  background: transparent;
  transition:
    width 0.22s ease,
    height 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  z-index: 10002;
}

.custom-cursor.is-hover {
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, 0.15);
}

.cursor-trail {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: rgba(201, 168, 76, 0.08);
  z-index: 10001;
}

.wa-tooltip {
  right: 5.8rem;
  bottom: 2.2rem;
  background: rgba(61, 32, 16, 0.94);
  color: white;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.75rem 0.95rem;
  font-size: 0.82rem;
  line-height: 1.45;
  box-shadow: 0 14px 32px rgba(61, 32, 16, 0.22);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  z-index: 995;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: rgba(61, 32, 16, 0.94);
  border-right: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transform: translateY(-50%) rotate(-45deg);
}

.wa-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.organic-divider {
  --divider-color: var(--cream);
  --divider-top-color: var(--divider-color);
  --divider-bottom-color: var(--divider-color);
  width: 100%;
  height: 96px;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.organic-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.organic-divider.concave {
  height: 112px;
  background: var(--divider-bottom-color);
}

.organic-divider.concave::before {
  background: var(--divider-top-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0,0C110,22,230,20,338,30C486,44,566,92,716,92C866,92,942,18,1098,18C1228,18,1332,20,1440,0V0H0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0,0C110,22,230,20,338,30C486,44,566,92,716,92C866,92,942,18,1098,18C1228,18,1332,20,1440,0V0H0Z'/%3E%3C/svg%3E");
}

.organic-divider.convex {
  height: 112px;
  background: var(--divider-bottom-color);
}

.organic-divider.convex::before {
  background: var(--divider-top-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0,0C126,16,236,18,346,18C496,18,582,92,720,92C858,92,944,18,1094,18C1206,18,1318,16,1440,0V0H0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0,0C126,16,236,18,346,18C496,18,582,92,720,92C858,92,944,18,1094,18C1206,18,1318,16,1440,0V0H0Z'/%3E%3C/svg%3E");
}

.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition:
    clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1),
    transform 0.8s ease;
}

.clip-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.timeline-draw {
  --timeline-progress: 0;
}

.timeline-draw::before {
  transform-origin: top;
  transform: scaleY(var(--timeline-progress));
}

.tl-item.is-visible .tl-dot {
  animation: pulse-dot 0.75s ease-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.65);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.55);
  }
  80% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }
  100% {
    transform: scale(1);
  }
}

.shimmer-card {
  position: relative;
  overflow: hidden;
}

.shimmer-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 65%
  );
  transform: translateX(-130%) rotate(10deg);
  opacity: 0;
  pointer-events: none;
}

.shimmer-card:hover::after {
  opacity: 1;
  animation: shimmer-pass 0.6s ease forwards;
}

@keyframes shimmer-pass {
  from {
    transform: translateX(-130%) rotate(10deg);
  }
  to {
    transform: translateX(130%) rotate(10deg);
  }
}

.star-shimmer {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 0 rgba(255, 244, 201, 0);
  animation: stars-breathe 3.8s ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}

@keyframes stars-breathe {
  0%,
  100% {
    opacity: 0.88;
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(255, 244, 201, 0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(255, 232, 170, 0.3);
  }
}

.hero-parallax-layer {
  transition:
    transform 0.18s ease-out,
    box-shadow 0.25s ease-out;
  will-change: transform;
}

.dramatic-pulse {
  animation: dramatic-pulse 8s ease-in-out infinite;
}

@keyframes dramatic-pulse {
  0%,
  100% {
    background-size: 100% 100%;
    filter: saturate(1);
  }
  50% {
    background-size: 110% 110%;
    filter: saturate(1.08);
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: white;
  font-weight: 500;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.9;
}
.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: block;
}
.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-social:hover {
  color: var(--gold-light);
}
.footer-social i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav-inner,
  .footer-inner {
    padding: 0 1.2rem;
  }
  .nav-brand-name {
    font-size: 1.22rem;
  }
  .nav-brand-sub {
    font-size: 0.5rem;
  }
  .mobile-menu {
    padding: 1.1rem 1.2rem 1.5rem;
  }
  .page-hero {
    padding: 7.5rem 0 3.5rem;
  }
  .page-hero-bg-word {
    font-size: clamp(4rem, 22vw, 7rem);
    bottom: 0;
    right: -0.4rem;
  }
  .wa-float {
    width: 48px;
    height: 48px;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.25rem;
  }
  .btn-primary,
  .btn-ghost,
  .btn-ghost-dark,
  .btn-wa {
    justify-content: center;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .organic-divider {
    display: none;
  }
  .wa-tooltip {
    display: none;
  }
}

@media (max-width: 520px) {
  #navbar {
    padding: 0.95rem 0;
  }
  .nav-brand-name {
    font-size: 1.08rem;
  }
  .nav-brand-sub {
    letter-spacing: 0.18em;
  }
  .section-title,
  .section-title-light {
    line-height: 1.08;
  }
}

@media (pointer: coarse) {
  .custom-cursor,
  .cursor-trail {
    display: none;
  }
}
