/* ============================================
   VINTERIOR — Design System
   Metanoia-inspired editorial aesthetic
   ============================================ */

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

:root {
  --bg: #F5F1EB;
  --bg-dark: #1A1815;
  --text: #1A1815;
  --text-light: #8A847A;
  --text-muted: #B5AFA5;
  --accent: #A08B6E;
  --accent-light: #C4B49A;
  --border: #DDD6CB;
  --white: #FDFBF8;
  --cream: #F0EBE3;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 80px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: none;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  cursor: none;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- CUSTOM CURSOR ---------- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

.custom-cursor.hovering {
  width: 60px;
  height: 60px;
  background: var(--accent);
  mix-blend-mode: normal;
  opacity: 0.15;
}

.cursor-follower.hovering {
  width: 80px;
  height: 80px;
  border-color: var(--accent);
  opacity: 0.3;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 2rem;
  animation: fadeInUp 1s var(--ease) forwards;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
  animation: expandLine 1.5s var(--ease) 0.5s forwards;
  transform: scaleX(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

/* ---------- NAVIGATION ---------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#nav.scrolled {
  background: rgba(245, 241, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

#nav.hero-dark .nav-logo {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.4s var(--ease);
}

.menu-toggle span:first-child {
  top: 4px;
}

.menu-toggle span:last-child {
  bottom: 4px;
}

.menu-toggle.active span:first-child {
  top: 50%;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open .mobile-link:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu.open .mobile-link:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu.open .mobile-link:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-link:hover {
  color: var(--accent);
}

.mobile-menu-footer {
  margin-top: 3rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.5s;
}

.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
}

.mobile-menu-footer p {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 12s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 24, 21, 0.1) 0%,
      rgba(26, 24, 21, 0.15) 40%,
      rgba(26, 24, 21, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(4rem, 10vh, 8rem);
  width: 100%;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 900px;
}

.hero-title span {
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(4rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  writing-mode: vertical-rl;
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.marquee-dot {
  color: var(--accent) !important;
  font-size: 0.6rem !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
}

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

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.philosophy-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ---------- FEATURED IMAGE ---------- */
.featured-image {
  position: relative;
  overflow: hidden;
}

.parallax-container {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  will-change: transform;
}

.featured-caption {
  padding: 1.5rem var(--gutter);
}

.featured-caption span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.featured-caption.light span {
  color: var(--text-muted);
}

/* ---------- WORKS ---------- */
.works {
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
}

.works-header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.work-item {
  position: relative;
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.work-item:hover .work-img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 21, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s var(--ease);
}

.work-item:hover .work-overlay {
  background: rgba(26, 24, 21, 0.3);
}

.work-view {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.5rem;
}

.work-item:hover .work-view {
  opacity: 1;
  transform: translateY(0);
}

.work-info {
  padding: 1.25rem 0;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.work-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.works-cta {
  text-align: right;
  margin-top: 2rem;
}

.text-link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.text-link:hover {
  color: var(--text);
}

.text-link .arrow {
  transition: transform 0.3s var(--ease);
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- EDITORIAL QUOTE ---------- */
.editorial-quote {
  padding: clamp(6rem, 14vh, 12rem) 0;
  background: var(--bg-dark);
}

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

.big-quote p {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.big-quote em {
  font-style: italic;
  color: var(--accent-light);
}

/* ---------- PROCESS ---------- */
.process {
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.process-header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.process-step {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.process-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.process-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--cream);
}

.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-project {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ---------- QUOTE ATTRIBUTION ---------- */
.quote-attribution {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ---------- TECH PLATFORM ---------- */
.tech-platform {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg-dark);
  color: var(--cream);
}

.tech-platform .section-label {
  color: var(--accent-light);
}

.tech-platform .section-heading {
  color: var(--cream);
}

.tech-platform .body-text {
  color: rgba(240, 235, 227, 0.6);
}

.tech-header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.tech-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(240, 235, 227, 0.1);
  border-radius: 2px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.tech-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.tech-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.5rem;
}

.tech-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.tech-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 235, 227, 0.5);
}

/* ---------- PRICING ---------- */
.pricing {
  padding: clamp(5rem, 10vh, 8rem) 0;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(160, 139, 110, 0.08);
}

.pricing-type {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}

.pricing-range {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2rem;
  font-weight: 300;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(5rem, 10vh, 8rem) 0;
  border-top: 1px solid var(--border);
}

.faq-header {
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  padding: 1.5rem 2rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}

details[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 2rem 1.5rem 0;
}

.faq-answer p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* ---------- CALENDAR WIDGET ---------- */
.calendar-widget {
  background: rgba(240, 235, 227, 0.06);
  border: 1px solid rgba(240, 235, 227, 0.12);
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-month-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.cal-nav {
  background: none;
  border: 1px solid rgba(240, 235, 227, 0.15);
  color: var(--accent-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
}

.cal-nav:hover {
  border-color: var(--accent);
  color: var(--cream);
}

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  margin-bottom: 0.5rem;
}

.calendar-days-header span {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.35);
  padding: 0.5rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(240, 235, 227, 0.6);
  border-radius: 2px;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none;
  background: none;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(160, 139, 110, 0.2);
  color: var(--cream);
}

.cal-day.selected {
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 500;
}

.cal-day.today {
  border: 1px solid var(--accent);
}

.cal-day.disabled {
  color: rgba(240, 235, 227, 0.15);
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.5rem;
}

.form-note {
  font-size: 0.7rem;
  color: rgba(240, 235, 227, 0.3);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ---------- WHATSAPP & CONTACT DIRECT ---------- */
.contact-direct {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-or {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.35);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s var(--ease);
  align-self: flex-start;
}

.whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
  }
}

/* ---------- ECOSYSTEM STRIP ---------- */
.ecosystem-strip {
  padding: 2rem 0;
  border-top: 1px solid rgba(240, 235, 227, 0.06);
  border-bottom: 1px solid rgba(240, 235, 227, 0.06);
  margin-bottom: 2rem;
  text-align: center;
}

.ecosystem-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.25);
  display: block;
  margin-bottom: 1rem;
}

.ecosystem-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eco-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(240, 235, 227, 0.35);
  transition: color 0.3s;
  padding: 0.25rem 0.5rem;
}

.eco-link:hover {
  color: var(--accent-light);
}

.eco-sep {
  font-size: 0.5rem;
  color: rgba(240, 235, 227, 0.15);
}

/* ---------- FOOTER REGISTRATION ---------- */
.footer-reg {
  font-size: 0.7rem !important;
  color: rgba(240, 235, 227, 0.3) !important;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg-dark);
  color: var(--cream);
}

.contact .section-label {
  color: var(--accent-light);
}

.contact .section-heading {
  color: var(--cream);
}

.contact .body-text {
  color: rgba(240, 235, 227, 0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240, 235, 227, 0.2);
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 235, 227, 0.35);
  font-weight: 300;
}

.form-group select {
  color: rgba(240, 235, 227, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23A08B6E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  align-self: flex-start;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid rgba(240, 235, 227, 0.1);
  background: var(--bg-dark);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-light);
}

.footer-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(240, 235, 227, 0.5);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 235, 227, 0.08);
}

.footer-bottom span {
  font-size: 0.7rem;
  color: rgba(240, 235, 227, 0.3);
  letter-spacing: 0.05em;
}

/* ---------- BRANDS SHOWCASE (ATMOS STYLE) ---------- */
.brands-showcase {
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(240, 235, 227, 0.08);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(240, 235, 227, 0.06);
  border: 1px solid rgba(240, 235, 227, 0.06);
}

.brand-card {
  display: block;
  background: var(--bg-dark);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160, 139, 110, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

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

.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.brand-card-inner {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.brand-card-category {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.brand-card-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.brand-card:hover .brand-card-name {
  color: #fff;
}

.brand-card-desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 235, 227, 0.4);
  margin-bottom: auto;
  max-width: 260px;
  transition: color 0.4s;
}

.brand-card:hover .brand-card-desc {
  color: rgba(240, 235, 227, 0.6);
}

.brand-card-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 1.5rem;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.4s var(--ease), color 0.3s;
  opacity: 0.4;
}

.brand-card:hover .brand-card-arrow {
  transform: translateX(6px);
  opacity: 1;
  color: var(--accent-light);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CURSOR FALLBACK ---------- */
@media (pointer: coarse) {

  html,
  body,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto !important;
  }

  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

  .philosophy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  html {
    cursor: auto;
  }

  body {
    cursor: auto;
  }

  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }

  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .brand-card-inner {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .parallax-container {
    height: 50vh;
  }

  .philosophy-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .ecosystem-links {
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}@media (max-width: 768px) {
  .hero-title, .section-heading, .section-label, .body-text, .process-title, .process-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .submit-btn, .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
  .works-cta, .contact-direct {
    text-align: center;
    align-items: center;
  }
  .philosophy-stats {
    text-align: center;
  }
}
