@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=Inter:wght@300;400;500;600&display=swap');

:root {
  --c-bg: #f6f3ee;
  --c-bg-dark: #121210;
  --c-bg-card: #edeae4;
  --c-text: #2a2a28;
  --c-text-muted: #7a7a72;
  --c-text-light: #a8a89e;
  --c-green: #3a6b35;
  --c-green-dark: #1a3a15;
  --c-green-light: #5a8f50;
  --c-gold: #b8963a;
  --c-gold-light: #d4b76a;
  --c-gold-pale: #e8d9ae;
  --c-cream: #faf7f2;
  --c-white: #ffffff;
  --c-border: rgba(42, 42, 40, 0.1);
  --c-border-light: rgba(42, 42, 40, 0.06);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

/* Custom cursor fallback rules when active */
body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input,
body.custom-cursor-active textarea,
body.custom-cursor-active select {
  cursor: none !important;
}

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

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-text {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--c-cream);
  animation: preloader-fade 1.5s var(--ease) infinite alternate;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: 20px auto 0;
  animation: preloader-grow 1.5s var(--ease) infinite;
}

@keyframes preloader-fade {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes preloader-grow {

  0%,
  100% {
    transform: scaleX(0.3);
  }

  50% {
    transform: scaleX(1);
  }
}

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

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10004;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s var(--ease);
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.visible,
.cursor-follower.visible {
  opacity: 1;
}

body.cursor-hover .cursor {
  width: 0;
  height: 0;
}

body.cursor-hover .cursor-follower {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== GRAIN OVERLAY ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--c-gold), var(--c-gold-light));
  width: 0%;
  z-index: 10010;
  pointer-events: none;
}

/* ===== EDITORIAL GRID BACKGROUND ===== */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.grid-line {
  width: 1px;
  height: 100%;
  background: var(--c-border-light);
  opacity: 0.5;
}

.grid-line:nth-child(2),
.grid-line:nth-child(3) {
  opacity: 0.3;
}

/* Make sections relative with z-index for layering above grid lines */
.section {
  position: relative;
  z-index: 5;
  background: transparent;
}

.hero {
  position: relative;
  z-index: 5;
}

.marquee {
  position: relative;
  z-index: 5;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 24px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(246, 243, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo-text {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--c-text);
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  margin-top: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-contact-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--c-text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-contact-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav-contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--c-text);
}

.nav-toggle-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}

.nav-toggle-lines span {
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}

.nav-toggle-lines span:first-child {
  width: 24px;
}

.nav-toggle-lines span:last-child {
  width: 16px;
}

.nav-toggle:hover .nav-toggle-lines span:last-child {
  width: 24px;
}

.nav-toggle.active .nav-toggle-lines span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active .nav-toggle-lines span:last-child {
  width: 24px;
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ===== FULL SCREEN MENU ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--c-bg-dark);
  clip-path: circle(0% at calc(100% - 60px) 40px);
  transition: clip-path 0.8s var(--ease);
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
}

.menu-overlay.open {
  clip-path: circle(150% at calc(100% - 60px) 40px);
}

.nav.menu-open .nav-logo-text {
  color: var(--c-cream);
}

.nav.menu-open .nav-toggle-lines span {
  background: var(--c-cream);
}

.nav.menu-open .nav-toggle-label {
  color: rgba(250, 247, 242, 0.5);
}

.nav.menu-open .nav-contact-link {
  color: rgba(250, 247, 242, 0.5);
}

.menu-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 12px 0;
  color: var(--c-cream);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}

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

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

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

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

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

.menu-overlay.open .menu-link:nth-child(5) {
  transition-delay: 0.35s;
}

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

.menu-link-num {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  color: var(--c-gold);
  letter-spacing: 1px;
}

.menu-link-text {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}

.menu-link:hover {
  color: var(--c-gold-light);
}

.menu-footer {
  display: flex;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}

.menu-footer-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 8px;
}

.menu-footer p,
.menu-footer a {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.6;
}

.menu-social-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-social-links a:hover {
  color: var(--c-gold-light);
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 140px 0;
}

.section-num {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--c-text-light);
  margin-bottom: 40px;
}

.section-num-light {
  color: rgba(250, 247, 242, 0.3);
}

/* ===== RADIAL GLOWS & ATMOSPHERE ===== */
.hero {
  background: radial-gradient(circle at 85% 20%, rgba(212, 183, 106, 0.12), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(58, 107, 53, 0.08), transparent 45%),
    var(--c-bg) !important;
}

.about {
  background: radial-gradient(circle at 10% 20%, rgba(212, 183, 106, 0.1), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(58, 107, 53, 0.06), transparent 40%),
    var(--c-bg) !important;
}

.services {
  background: radial-gradient(circle at 50% 50%, rgba(212, 183, 106, 0.07), transparent 60%),
    var(--c-cream) !important;
}

.products {
  background: radial-gradient(circle at 90% 15%, rgba(58, 107, 53, 0.08), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(212, 183, 106, 0.08), transparent 45%),
    var(--c-bg) !important;
}

.why {
  background: radial-gradient(circle at 10% 15%, rgba(212, 183, 106, 0.07), transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(58, 107, 53, 0.06), transparent 40%),
    var(--c-cream) !important;
}

.gallery {
  background: radial-gradient(circle at 50% 5%, rgba(212, 183, 106, 0.06), transparent 50%),
    var(--c-bg) !important;
}

.contact {
  background: radial-gradient(circle at 85% 15%, rgba(212, 183, 106, 0.08), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(58, 107, 53, 0.04), transparent 45%),
    var(--c-bg-dark) !important;
}

/* ===== LEAF DECORATIONS ===== */
.leaf-deco-inline {
  display: inline-block;
  vertical-align: middle;
  color: var(--c-gold);
  opacity: 0.65;
  margin-left: 8px;
  animation: leafFloat 4s ease-in-out infinite alternate;
}

@keyframes leafFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-4px) rotate(5deg);
  }
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(42, 42, 40, 0.025);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.1em;
  user-select: none;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 1.9s forwards;
}

.status-sep {
  color: var(--c-gold);
  font-weight: 300;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 1.8s forwards;
}

.hero-tag-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroFadeUp 1s var(--ease) forwards;
}

.hero-line:nth-child(1) {
  animation-delay: 2s;
}

.hero-line:nth-child(2) {
  animation-delay: 2.15s;
}

.hero-line:nth-child(3) {
  animation-delay: 2.3s;
}

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

.hero-word-light {
  font-weight: 300;
  color: var(--c-text-muted);
}

.hero-line-outline {
  -webkit-text-stroke: 1.5px var(--c-text);
  color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 2.5s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 2.7s forwards;
}

/* Magnetic Button */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  background: var(--c-text);
  color: var(--c-cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}

.btn-magnetic:hover::before {
  transform: scaleX(1);
}

.btn-magnetic span,
.btn-magnetic svg {
  position: relative;
  z-index: 1;
}

.btn-magnetic:hover {
  box-shadow: 0 8px 30px rgba(184, 150, 58, 0.25);
}

/* Text Button */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  position: relative;
}

.btn-text-line {
  width: 40px;
  height: 1px;
  background: var(--c-text-muted);
  transition: width 0.5s var(--ease), background 0.3s;
}

.btn-text:hover .btn-text-line {
  width: 60px;
  background: var(--c-gold);
}

.btn-text:hover {
  color: var(--c-gold);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: heroScale 1.2s var(--ease) 2.2s forwards;
}

.hero-img-wrap {
  border-radius: 280px 280px 16px 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 600px;
  border: 1px solid rgba(184, 150, 58, 0.25);
  padding: 8px;
  background: var(--c-bg);
  box-shadow: 0 30px 70px rgba(42, 42, 40, 0.08);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 270px 270px 12px 12px;
  transition: transform 0.8s var(--ease);
}

.hero-img-wrap:hover img {
  transform: scale(1.04);
}

/* Rotating Badge */
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 140px;
  height: 140px;
}

.hero-badge-svg {
  width: 100%;
  height: 100%;
  animation: rotateBadge 20s linear infinite;
}

.hero-badge-svg text {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  fill: var(--c-text);
}

.hero-badge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-inner svg {
  stroke: var(--c-gold);
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) 3s forwards;
}

.hero-scroll-text {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-light);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2.5s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes heroScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  background: var(--c-bg);
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
}

.marquee-item {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--c-text-muted);
  letter-spacing: 1px;
}

.marquee-dot {
  color: var(--c-gold);
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT ===== */
.about {
  background: var(--c-bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
}

.about-title em {
  font-style: italic;
  color: var(--c-gold);
}

.about-text {
  margin-bottom: 48px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 500px;
}

.about-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}

.about-stat {
  text-align: left;
}

.about-stat-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-light);
}

/* About Images */
.about-right {
  position: relative;
}

.about-img-main {
  border-radius: 240px 240px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 58, 0.25);
  padding: 8px;
  background: var(--c-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 232px 232px 12px 12px;
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  left: -45px;
  width: 200px;
  height: 260px;
  border-radius: 120px 120px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 58, 0.2);
  padding: 6px;
  background: var(--c-bg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 114px 114px 12px 12px;
}

/* ===== SERVICES BENTO GRID ===== */
.services {
  background: var(--c-cream);
}

.services-header {
  margin-bottom: 60px;
}

.services-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.services-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.services-title em {
  font-style: italic;
  color: var(--c-gold);
}

.services-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: start;
}

/* Left Side: Services List */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  border-bottom: 1px solid rgba(184, 150, 58, 0.2);
  padding: 36px 0;
  cursor: pointer;
  transition: border-color 0.5s var(--ease), padding-left 0.5s var(--ease);
}

.service-row:first-child {
  border-top: 1px solid rgba(184, 150, 58, 0.2);
}

.service-row-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-row .service-num {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-gold);
  opacity: 0.5;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.service-row h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 300;
  color: var(--c-bg-dark);
  transition: color 0.5s var(--ease);
  margin: 0;
}

.service-row p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-bg-dark);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s var(--ease), margin-top 0.6s var(--ease);
}

/* Active Desktop State */
.service-row.active {
  border-bottom-color: var(--c-gold);
  padding-left: 16px;
}

.service-row.active:first-child {
  border-top-color: var(--c-gold);
}

.service-row.active .service-num {
  opacity: 1;
  transform: scale(1.1);
}

.service-row.active h3 {
  color: var(--c-gold);
}

.service-row.active p {
  opacity: 0.75;
  max-height: 150px;
  margin-top: 16px;
}

/* Right Side: Sticky Visuals */
.services-visual-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  height: calc(100vh - 240px);
  min-height: 500px;
  max-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 260px 260px 20px 20px; /* Arched portal shape */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 18, 16, 0.12);
  border: 1px solid rgba(184, 150, 58, 0.22);
  background: var(--c-bg-dark);
}

.service-img-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  z-index: 1;
}

.service-img-frame.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.service-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.02);
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--c-bg);
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: end;
}

.products-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.products-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.products-title em {
  font-style: italic;
  color: var(--c-gold);
}

.products-desc p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  max-width: 480px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.product-item {
  overflow: hidden;
}

.product-item-img {
  aspect-ratio: 4/5;
  border-radius: 200px 200px 16px 16px;
  border: 1px solid rgba(184, 150, 58, 0.2);
  padding: 6px;
  background: var(--c-bg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 194px 194px 12px 12px;
  transition: transform 0.8s var(--ease);
}

.product-item-img:hover img {
  transform: scale(1.04);
}

.product-item-list {
  background: var(--c-cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 16px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  transition: padding-left 0.4s var(--ease);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li:hover {
  padding-left: 8px;
}

.product-list-num {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 1px;
  padding-top: 4px;
  flex-shrink: 0;
}

.product-list h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 2px;
}

.product-list p {
  font-size: 0.78rem;
  color: var(--c-text-light);
}

.product-item-quote {
  background: var(--c-bg-dark);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: 16px;
}

.product-item-quote blockquote {
  text-align: center;
}

.product-item-quote p {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-item-quote cite {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-style: normal;
}

/* ===== WHY CHOOSE ===== */
.why {
  background: var(--c-cream);
}

.why-header {
  margin-bottom: 80px;
}

.why-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.why-title em {
  font-style: italic;
  color: var(--c-gold);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-item {
  padding: 48px 36px;
  border-left: 1px solid var(--c-border);
  transition: background 0.5s var(--ease);
}

.why-item:first-child {
  border-left: none;
}

.why-item:hover {
  background: var(--c-bg);
}

.why-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.why-item:hover .why-num {
  color: var(--c-gold);
}

.why-item h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ===== GALLERY — HORIZONTAL SCROLL ===== */
.gallery {
  background: var(--c-bg);
  padding-bottom: 80px;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.gallery-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.gallery-title em {
  font-style: italic;
  color: var(--c-gold);
}

.gallery-hint {
  font-size: 0.78rem;
  color: var(--c-text-light);
  letter-spacing: 1px;
  white-space: nowrap;
}

.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 40px;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 20px;
}

.gallery-card {
  flex-shrink: 0;
  width: 380px;
}

.gallery-card-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 14px;
}

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

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.05);
}

.gallery-card-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
  padding-left: 4px;
}

/* ===== VISION CTA ===== */
.vision-cta {
  background: var(--c-bg-dark);
  color: var(--c-cream);
  text-align: center;
}

.vision-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.vision-cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}

.vision-cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 36px;
}

.vision-cta-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.vision-tag {
  padding: 10px 22px;
  border-radius: 60px;
  border: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  transition: all 0.4s var(--ease);
}

.vision-tag:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  background: rgba(184, 150, 58, 0.08);
}

.vision-cta-note {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.35);
  letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--c-bg-dark);
  color: var(--c-cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-right {
  margin-top: 140px;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.contact-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--c-cream);
  margin-bottom: 48px;
}

.contact-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 6px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
  color: var(--c-cream);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.4s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--c-gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(250, 247, 242, 0.2);
}

.form-field select {
  cursor: none;
}

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

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

.form-submit {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--c-cream) !important;
  color: var(--c-bg-dark) !important;
}

.form-submit::before {
  background: var(--c-gold) !important;
}

.form-submit:hover {
  color: var(--c-cream) !important;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-bg-dark);
  color: rgba(250, 247, 242, 0.5);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(250, 247, 242, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.06);
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-cream);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.4);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--c-gold-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.25);
}

/* ===== FLOATING AMBIENCE WIDGET ===== */
.ambience-widget {
  position: fixed;
  bottom: 30px;
  left: 40px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(18, 18, 16, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.ambience-widget:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 150, 58, 0.3);
}

.ambience-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 18px;
  height: 16px;
}

.ambience-visualizer span {
  display: block;
  width: 2px;
  height: 3px;
  background: var(--c-gold-light);
  border-radius: 1px;
  transition: height 0.3s;
}

/* Visualizer animation states when active */
.ambience-widget.playing .ambience-visualizer span {
  animation: visualize 1.2s ease-in-out infinite alternate;
}

.ambience-widget.playing .ambience-visualizer span:nth-child(1) {
  animation-delay: 0.1s;
}

.ambience-widget.playing .ambience-visualizer span:nth-child(2) {
  animation-delay: 0.3s;
}

.ambience-widget.playing .ambience-visualizer span:nth-child(3) {
  animation-delay: 0.5s;
}

.ambience-widget.playing .ambience-visualizer span:nth-child(4) {
  animation-delay: 0.2s;
}

@keyframes visualize {
  0% {
    height: 3px;
  }

  100% {
    height: 15px;
  }
}

.ambience-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ambience-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

.ambience-status {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--c-cream);
  white-space: nowrap;
}

.ambience-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-bg-dark);
  transition: background 0.3s, transform 0.3s var(--ease);
}

.ambience-toggle-btn:hover {
  background: var(--c-gold-light);
  transform: scale(1.08);
}

.ambience-widget.playing .play-icon {
  display: none !important;
}

.ambience-widget.playing .pause-icon {
  display: block !important;
}

/* Hide widget parts on small screens if it overlaps too much */
@media (max-width: 768px) {
  .ambience-widget {
    bottom: 20px;
    left: 20px;
    padding: 6px 12px;
  }

  .ambience-content {
    display: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-layout {
    gap: 60px;
  }

  .services-showcase {
    gap: 50px;
  }

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

  .why-item:nth-child(3) {
    border-left: none;
  }

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

  .product-item-quote {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .cursor,
  .cursor-follower {
    display: none;
  }

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

  .section {
    padding: 90px 0;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-contact-link {
    display: none;
  }

  .hero {
    padding: 110px 0 50px;
    min-height: 90vh;
  }

  .hero-bg-text {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-status {
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero-line {
    display: inline;
  }

  .hero-title em {
    display: inline-block;
  }

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-img-wrap {
    max-height: 400px;
    aspect-ratio: 4/5;
    border-radius: 180px 180px 16px 16px;
  }

  .hero-img-wrap img {
    border-radius: 170px 170px 12px 12px;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
    bottom: -10px;
    left: -15px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-line-outline {
    -webkit-text-stroke-width: 1px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-accent {
    width: 140px;
    height: 180px;
    bottom: -20px;
    left: -10px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .services {
    padding: 80px 0;
  }

  .services-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-visual-sticky {
    position: relative;
    top: 0;
    height: 320px;
    min-height: auto;
    max-height: none;
    order: -1;
    margin-bottom: 24px;
  }

  .services-visual-container {
    width: 240px;
    height: 320px;
    margin: 0 auto;
    border-radius: 120px 120px 15px 15px;
  }

  .service-row {
    padding: 24px 0;
  }

  .service-row.active {
    padding-left: 0;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

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

  .product-item-img {
    aspect-ratio: 3/2;
  }

  .why-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--c-border);
  }

  .why-item {
    border-left: none;
    border-bottom: 1px solid var(--c-border);
    padding: 20px 0;
    cursor: pointer;
    background: transparent !important;
  }

  .why-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-right: 24px;
  }

  .why-item-header::after {
    content: '+';
    position: absolute;
    right: 0;
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--c-gold);
    transition: transform 0.4s var(--ease);
  }

  .why-item.active .why-item-header::after {
    transform: rotate(45deg);
  }

  .why-num {
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
    min-width: 40px;
  }

  .why-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0 !important;
    font-family: var(--ff-sans);
    font-weight: 500;
  }

  .why-item p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
    padding-left: 56px;
    margin-bottom: 0;
  }

  .why-item.active p {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
  }

  .gallery-card {
    width: 300px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-right {
    margin-top: 0;
  }

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

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .menu-footer {
    flex-direction: column;
    gap: 28px;
  }

  .gallery-scroll {
    padding: 0 24px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-inner {
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    line-height: 1.15;
  }

  /* Pill badges for stats on mobile */
  .hero-status {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }

  .hero-status .status-sep {
    display: none;
  }

  .hero-status .status-item {
    font-size: 0.6rem;
    background: rgba(42, 42, 40, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .btn-magnetic {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .btn-text {
    font-size: 0.8rem;
  }

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .about-img-main img {
    height: 320px;
  }

  .services-visual-sticky {
    height: 260px;
    margin-bottom: 16px;
  }

  .services-visual-container {
    width: 190px;
    height: 260px;
    border-radius: 95px 95px 10px 10px;
  }

  .service-row h3 {
    font-size: 1.25rem;
  }

  .gallery-card {
    width: 260px;
  }

  .footer {
    padding: 48px 0 32px;
  }

  .footer-top {
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-cols {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .footer-col-title {
    width: 100%;
    margin-bottom: 2px;
  }

  .vision-tags {
    gap: 8px;
  }

  .vision-tag {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
}