:root {
  --bg-color: #FDFBF8;
  --text-color: #0A0A0A;
  --accent-color: #C9A962;
  --line-color: rgba(10, 10, 10, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);

  --font-display: 'Italiana', serif;
  --font-tech: 'Manrope', sans-serif;

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
}

html {
  scroll-behavior: auto;
  /* Lenis handles this */
  scroll-padding-top: 100px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-tech);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Premium Selection */
::selection {
  background: var(--accent-color);
  color: var(--bg-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 10, 10, 0.4);
}

/* Base Classes */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Noise Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Premium Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-content {
  text-align: center;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.3em;
  margin-bottom: 40px;
  display: block;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.footer {
  padding-bottom: 80px;
  /* Space for sticky button */
}

.loader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader.hidden {
  opacity: 1;
  /* Keep opacity 1 for the slide effect */
  visibility: visible;
  transform: translateY(-100%);
  /* Slide up */
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  /* EaseInOutQuart-ish */
  pointer-events: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--text-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.2s var(--easing), opacity 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.4s var(--easing), height 0.4s var(--easing),
    border-color 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-outline.hovering {
  width: 80px;
  height: 80px;
  background-color: rgba(201, 169, 98, 0.1);
  border-color: var(--accent-color);
}

.cursor-outline.clicking {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Grid System */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0 4vw;
  width: 100%;
}

/* Typography Scale */
.hero-title {
  /* Fluid scaling: min 3.5rem (mobile) -> 14vw (fluid) -> max 12rem (4k) */
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  /* Adjusted from -0.04em to prevent overlap */
  font-weight: 400;
}

.hero-title .line {
  display: block;
  overflow: visible;
  padding-top: 0.1em;
}

.hero-title .line.offset {
  margin-left: 10vw;
}

/* Split text animation */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.huge-contact-title {
  /* Fluid scaling: min 3rem -> 10vw -> max 8rem */
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 20px;
  overflow: hidden;
}

.huge-contact-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.editorial-text {
  font-family: var(--font-display);
  /* Fluid scaling: min 1.5rem -> 2.5vw -> max 3rem */
  font-size: clamp(1.5rem, 2.8vw, 2.8rem);
  line-height: 1.35;
  text-align: left;
}

/* Word reveal animation */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.25em;
}

.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  z-index: 100;
  color: var(--text-color);
  background: var(--bg-color);
  transition: background 0.4s var(--easing), padding 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.navbar.scrolled {
  padding: 20px 4vw;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .brand-name,
.navbar.scrolled .brand-sub,
.navbar.scrolled .book-btn {
  color: var(--text-color);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.brand-name:hover {
  opacity: 0.7;
}

.brand-sub {
  font-size: 0.7rem;
  margin-left: 10px;
  opacity: 0.7;
}

.book-btn {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--text-color);
  padding: 10px 24px;
  transition: all 0.4s var(--easing);
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  transition: left 0.4s var(--easing);
  z-index: -1;
}

.book-btn:hover,
.navbar.scrolled .book-btn:hover {
  color: var(--bg-color);
  border-color: var(--text-color);
}

.book-btn:hover::before {
  left: 0;
}

/* Hero Section */
.hero-section {
  padding-top: 10vh;
  min-height: 100vh;
  position: relative;
  padding-bottom: 5vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 0 4vw;
}

.hero-text-block {
  grid-column: 1 / -1;
  z-index: 2;
  mix-blend-mode: exclusion;
  color: #fff;
}

.hero-image-block {
  grid-column: 6 / 12;
  margin-top: -15vh;
  height: 75vh;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.hero-img-wrapper {
  width: 100%;
  height: 120%;
  position: relative;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2);
  transform: scale(1.1);
}

.hero-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-color) 100%);
  pointer-events: none;
}

/* Scroll Indicator - Enhanced */
.hero-meta {
  position: absolute;
  bottom: 5vh;
  left: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* About Section - Dark Mode */
.section-dark {
  background-color: #050505;
  color: #FFFFFF;
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .editorial-text {
  color: #FFFFFF;
}

.editorial-section {
  padding: 10vh 0;
  border-top: 1px solid var(--line-color);
}

/* Partner Section */
.partner-section {
  padding: 12vh 0;
}

.partner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s var(--easing);
}

.partner-link:hover {
  opacity: 0.7;
}

.partner-title {
  font-family: var(--font-display);
  /* Fluid scaling: min 2.5rem -> 5vw -> max 6rem */
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  transition: letter-spacing 0.5s var(--easing);
}

.partner-link:hover .partner-title {
  letter-spacing: 0.1em;
}

.partner-tagline {
  font-family: var(--font-tech);
  font-size: 1rem;
  opacity: 0.6;
  margin-bottom: 30px;
}

.partner-cta {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
  transition: border-color 0.3s var(--easing);
}

.partner-link:hover .partner-cta {
  border-color: rgba(255, 255, 255, 0.8);
}

.col-4-start {
  grid-column: 1 / 4;
}

.col-6-end {
  grid-column: 6 / 13;
}

/* Services */
.services-section {
  padding: 8vh 0;
}

.col-12 {
  grid-column: 1 / -1;
}



.flex-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 20px;
}

.services-heading {
  position: relative;
  overflow: hidden;
}

.service-category-row {
  border-bottom: 1px solid var(--line-color);
  padding: 40px 4vw;
  transition: background 0.5s var(--easing);
}

.service-category-row:hover {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.03), transparent);
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;
}

.cat-title {
  font-size: 2rem;
  transition: letter-spacing 0.4s var(--easing);
}

.cat-header:hover .cat-title {
  letter-spacing: 0.05em;
}

.expand-icon {
  transition: transform 0.4s var(--easing);
}

.cat-header:hover .expand-icon {
  transform: rotate(90deg);
}

/* Premium Service Item */
.service-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-color);
  font-size: 1.15rem;
  color: rgba(10, 10, 10, 0.7);
  transition: all 0.5s var(--easing);
  position: relative;
}

.service-item-row::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  transition: width 0.6s var(--easing);
}

.service-item-row:hover {
  transform: translateX(15px);
  color: #000;
  padding-left: 10px;
}

.service-item-row:hover::before {
  width: 100%;
}

.price-tag {
  text-align: right;
  font-family: var(--font-tech);
  font-weight: 200;
  font-style: italic;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.service-item-row:hover .price-tag {
  opacity: 1;
  color: var(--accent-color);
}

/* Contact Section */
.contact-section {
  padding: 10vh 0;
  border-top: 20px solid #000;
  margin-top: 5vh;
  background: #EBE9E4;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
  pointer-events: none;
}

.col-left-details {
  display: none;
  /* Deprecated */
}

/* 3-Column Layout */
.contact-col-image {
  grid-column: 1 / 5;
  height: 100%;
  min-height: 450px;
}

.contact-col-details {
  grid-column: 6 / 9;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-col-hours {
  grid-column: 10 / 13;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  text-align: right;
}

.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.contact-note {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: rgba(10, 10, 10, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.detail-block .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.5;
}

.detail-block p {
  font-size: 1.2rem;
  font-family: var(--font-display);
}

/* Premium Hover Links */
.hover-link {
  position: relative;
  display: inline-block;
}

.hover-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.4s var(--easing);
}

.hover-link:hover::after {
  width: 100%;
}

/* Magnetic Button */
.magnetic-btn {
  width: 200px;
  height: 200px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.5s var(--easing), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.magnetic-btn .btn-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  padding-bottom: 0%;
  background: var(--text-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s var(--easing);
  z-index: 0;
}

.magnetic-btn:hover .btn-bg {
  width: 110%;
  padding-bottom: 110%;
}

.magnetic-btn .btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.magnetic-btn:hover .btn-text {
  color: #fff;
}

/* Glassmorphism Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 40px;
  right: 4vw;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.4s var(--easing);
}

.sticky-cta .cta-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--easing);
}

.sticky-cta.hidden-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
}

.static-contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 32px;
  background: #000;
  color: #fff;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: 1px solid #000;
  transition: all 0.4s var(--easing);
  text-decoration: none;
}

.static-contact-btn:hover {
  background: transparent;
  color: #000;
}

.sticky-cta:hover {
  background: rgba(201, 169, 98, 0.95);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sticky-cta:hover .cta-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Subtle Pulse */
.sticky-cta .cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 2px;
  animation: subtlePulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes subtlePulse {

  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  left: 4vw;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--easing);
  font-family: var(--font-tech);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--text-color);
  color: var(--bg-color);
  transform: translateY(-5px);
}

.btt-arrow {
  transition: transform 0.3s var(--easing);
}

.back-to-top:hover .btt-arrow {
  transform: translateY(-3px);
}

/* Footer */
.footer {
  padding: 0 0 40px 0;
  border-top: 1px solid var(--line-color);
  overflow: hidden;
}

.running-ticker {
  background: var(--text-color);
  color: var(--bg-color);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-content {
  display: inline-flex;
  animation: scrollTicker 20s linear infinite;
}

.ticker-content span {
  padding-right: 50px;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.footer-meta {
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
}

.footer-meta a {
  margin-left: 20px;
  position: relative;
}

.footer-meta a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--text-color);
  transition: width 0.3s var(--easing);
}

.footer-meta a:hover::after {
  width: 100%;
}

/* Mobile Refinements */
@media (max-width: 768px) {

  .grid-12,
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .navbar {
    padding: 20px 24px;
    align-items: center;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .book-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .hero-section {
    padding-top: 15vh;
    min-height: auto;
    padding-bottom: 5vh;
  }

  .hero-title {
    font-size: 13vw;
    word-wrap: break-word;
    line-height: 0.95;
  }

  .hero-title .line.offset {
    margin-left: 0;
  }

  .hero-text-block {
    mix-blend-mode: normal;
    color: var(--text-color);
  }

  .ticker-content span {
    padding-right: 20px;
    font-size: 1.5rem;
  }

  .hero-image-block {
    grid-column: 1 / -1;
    height: 50vh;
    margin-top: 20px;
    position: relative;
  }

  .hero-meta {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 30px;
    flex-direction: row;
    gap: 20px;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
  }

  .scroll-line-inner {
    width: 100%;
    height: 100%;
    animation: scrollRight 2s infinite;
  }

  .scroll-text {
    writing-mode: horizontal-tb;
    transform: none;
  }

  @keyframes scrollRight {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(100%);
    }
  }

  .editorial-text {
    font-size: 1.25rem;
  }

  .col-4-start,
  .col-6-end,
  .col-left-details,
  .col-right-action,
  .col-right-aligned {
    grid-column: 1 / -1;
    text-align: left;
    align-items: flex-start;
  }

  .col-left-details {
    flex-direction: column;
    gap: 40px;
  }

  .col-right-action {
    justify-content: flex-start;
    margin-bottom: 80px;
  }

  .magnetic-btn {
    width: 140px;
    height: 140px;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
    justify-content: center;
    padding: 14px;
    font-size: 0.8rem;
  }

  .back-to-top {
    left: auto;
    right: 20px;
    bottom: 80px;
  }

  .cat-title {
    font-size: 1.5rem;
  }

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    cursor: auto;
  }

  .huge-contact-title {
    font-size: 2.8rem;
    /* Safer than vw for preventing vertical stacking */
    line-height: 1.1;
    white-space: normal;
  }

  .contact-col-image,
  .contact-col-details,
  .contact-col-hours {
    grid-column: 1 / -1;
    margin-top: 40px;
    align-items: flex-start;
    text-align: left;
  }

  .contact-col-image {
    min-height: 300px;
    /* Reduced specific height for mobile */
    max-height: 400px;
  }

  .contact-col-hours {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

/* Utils */
.line {
  display: block;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s var(--easing);
}

/* Staggered Reveals */
.reveal-item {
  opacity: 0;
  transform: translateY(10px);
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}

/* GPU acceleration hints */
.hero-img-wrapper,
.hero-title .char,
.sticky-cta,
.magnetic-btn {
  will-change: transform;
}