/* ═══════════════════════════════════════════════════════════
   KOWALSKI STOLARSTWO — iOS-inspired Glassmorphism Design
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Warm palette */
  --oak: #A67C52;
  --oak-deep: #7B5B3A;
  --oak-light: #D4A574;
  --oak-glow: #E8C9A0;
  --amber: #C8956C;

  /* Neutrals */
  --charcoal: #1A1613;
  --charcoal-warm: #2D2518;
  --walnut: #3E2E22;

  /* Surfaces */
  --bg: #F6F2EC;
  --bg-warm: #EDE6DA;
  --bg-cream: #FAF7F2;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-subtle: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-dark: rgba(26, 22, 19, 0.75);
  --glass-dark-strong: rgba(26, 22, 19, 0.82);

  /* Text — WCAG 2.1 AA compliant (4.5:1+ on all surfaces) */
  --text: #2D2518;
  --text-muted: #695D51;
  --text-light: #716558;
  --text-inverse: #FAF7F2;

  /* Shadows — multi-layer for iOS depth */
  --shadow-sm:
    0 1px 2px rgba(26, 22, 19, 0.04),
    0 2px 8px rgba(26, 22, 19, 0.03);
  --shadow-md:
    0 2px 4px rgba(26, 22, 19, 0.04),
    0 8px 24px rgba(26, 22, 19, 0.06),
    0 16px 48px rgba(26, 22, 19, 0.04);
  --shadow-lg:
    0 4px 8px rgba(26, 22, 19, 0.04),
    0 12px 32px rgba(26, 22, 19, 0.08),
    0 24px 80px rgba(26, 22, 19, 0.06);
  --shadow-glow:
    0 0 60px rgba(166, 124, 82, 0.15),
    0 0 120px rgba(166, 124, 82, 0.08);

  /* Radius — iOS-style large radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 100px;

  /* Transitions — spring-like cubic-bezier */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing scale (8px base) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
}


/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* Grain overlay for tactile feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}


/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--oak);
  border-radius: 50%;
  opacity: 0.6;
}


/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  position: relative;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) var(--space-lg);
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  padding: 0.7rem var(--space-lg);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled .nav-inner {
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.35rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-logo .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--oak);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(166, 124, 82, 0.08);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-inverse) !important;
  background: var(--charcoal) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: var(--radius-pill) !important;
  transition: all 0.4s var(--ease-spring) !important;
}

.nav-phone:hover {
  background: var(--oak-deep) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 4px 20px rgba(123, 91, 58, 0.3) !important;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s;
}

.nav-hamburger span {
  width: 18px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-spring);
  display: block;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--glass-strong);
  backdrop-filter: blur(40px) saturate(2);
  -webkit-backdrop-filter: blur(40px) saturate(2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
}

.nav-mobile a {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--oak);
}

.nav-mobile .mobile-phone {
  margin-top: var(--space-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-inverse);
  background: var(--charcoal);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
}

.nav-mobile .mobile-email {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Ambient gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 201, 160, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.08); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-label {
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  color: var(--oak);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

/* Hero buttons — pill style */
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-spring);
  text-decoration: none;
}

.btn-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--text-inverse);
  box-shadow: 0 4px 16px rgba(26, 22, 19, 0.15);
}

.btn-primary:hover {
  background: var(--oak-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(123, 91, 58, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero visual — floating glass cards composition */
.hero-visual {
  position: relative;
  height: 560px;
}

.hero-card-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 80%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #C4B19D 0%, #9A8570 40%, #7D6B56 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating stat card — glass */
.hero-float-card {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  transition: transform 0.5s var(--ease-spring);
}

.hero-float-card:hover {
  transform: translateY(-4px) scale(1.03);
}

.hero-float-stat {
  bottom: 8%;
  left: -5%;
  padding: 1.5rem 2rem;
}

.hero-float-stat .stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.6rem;
  color: var(--oak);
  line-height: 1;
}

.hero-float-stat .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-float-badge {
  top: 5%;
  right: -3%;
  width: 100px;
  height: 100px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 !important;
  background: var(--charcoal) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  animation: badgePulse 4s ease-in-out infinite;
}

.hero-float-badge .badge-text {
  color: var(--oak-glow);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-float-badge .badge-text strong {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-inverse);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: var(--shadow-lg), var(--shadow-glow); }
  50% { box-shadow: var(--shadow-lg), 0 0 80px rgba(166, 124, 82, 0.2), 0 0 160px rgba(166, 124, 82, 0.1); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-pill {
  width: 28px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid var(--text-light);
  position: relative;
  opacity: 0.5;
}

.hero-scroll-pill::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--oak);
  border-radius: 2px;
  animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 24px; opacity: 0.3; }
}


/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.marquee {
  background: var(--bg-warm);
  border-top: 1px solid rgba(166, 124, 82, 0.1);
  border-bottom: 1px solid rgba(166, 124, 82, 0.1);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}

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

.marquee-item {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.marquee-item::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--oak);
  opacity: 0.6;
  flex-shrink: 0;
}

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


/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.services-header {
  margin-bottom: var(--space-xl);
}

.services-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-top: var(--space-sm);
}

.services-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-top: var(--space-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oak), var(--oak-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(166, 124, 82, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(166, 124, 82, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--oak);
}

.service-card h3 {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-md);
}

.service-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(166, 124, 82, 0.08);
  color: var(--oak-deep);
  border: 1px solid rgba(166, 124, 82, 0.12);
  transition: all 0.3s;
}

.service-card:hover .service-tag {
  background: rgba(166, 124, 82, 0.12);
  border-color: rgba(166, 124, 82, 0.2);
}


/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP
   ═══════════════════════════════════════════════════════════ */
.features {
  padding: var(--space-xl) 0;
  background: var(--bg-warm);
  border-top: 1px solid rgba(166, 124, 82, 0.08);
  border-bottom: 1px solid rgba(166, 124, 82, 0.08);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--oak);
}

.feature-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

/* Background ambient glow */
.process::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 124, 82, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.process-header {
  margin-bottom: var(--space-xl);
}

.process-header .label {
  color: var(--oak);
}

.process-header .label::before {
  background: var(--oak);
}

.process-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-top: var(--space-sm);
}

.process-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-top: var(--space-sm);
}

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

.process-step {
  padding: var(--space-lg) var(--space-md);
  border-left: 1px solid rgba(166, 124, 82, 0.12);
  position: relative;
  counter-increment: step;
}

.process-step:first-child {
  border-left: none;
}

.step-number {
  font-family: 'Instrument Serif', serif;
  font-size: 3.2rem;
  color: var(--oak);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.4s;
}

.process-step:hover .step-number {
  color: var(--oak-deep);
}

.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Step connector dots */
.step-dot {
  position: absolute;
  top: var(--space-lg);
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--oak);
  opacity: 0;
  transition: opacity 0.5s;
}

.process-step:not(:first-child) .step-dot {
  opacity: 0.3;
}

.process-step:hover .step-dot {
  opacity: 0.8;
  box-shadow: 0 0 12px rgba(166, 124, 82, 0.4);
}


/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.gallery-header {
  margin-bottom: var(--space-xl);
}

.gallery-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  margin-top: var(--space-sm);
}

.gallery-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-top: var(--space-sm);
}

.gallery-scroll {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: none;
}

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

.gallery-card {
  flex: 0 0 340px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}

.gallery-card:first-child {
  flex: 0 0 480px;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: transform 0.7s var(--ease-out);
}

.gallery-card:nth-child(1) .gallery-placeholder {
  background: linear-gradient(145deg, #C4B19D, #8B7A66);
}

.gallery-card:nth-child(2) .gallery-placeholder {
  background: linear-gradient(145deg, #B8A08A, #7E6E5C);
}

.gallery-card:nth-child(3) .gallery-placeholder {
  background: linear-gradient(145deg, #A89580, #6E5F4E);
}

.gallery-card:nth-child(4) .gallery-placeholder {
  background: linear-gradient(145deg, #CABAA6, #9A8A76);
}

.gallery-card:nth-child(5) .gallery-placeholder {
  background: linear-gradient(145deg, #B0A090, #847464);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

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

.gallery-card:hover .gallery-placeholder {
  transform: scale(1.06);
}

/* Placeholder label for missing images */
.placeholder-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Glass label on gallery card */
.gallery-card-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-spring);
}

.gallery-card:hover .gallery-card-label {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll hint gradient */
.gallery-scroll-hint {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}


/* Gallery — Facebook link */
.gallery-fb {
  text-align: center;
  margin-top: var(--space-lg);
}

.gallery-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.4s var(--ease-spring);
}

.gallery-fb-link svg {
  width: 18px;
  height: 18px;
  color: var(--oak);
  flex-shrink: 0;
  transition: color 0.3s;
}

.gallery-fb-link:hover {
  background: var(--glass-strong);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-fb-link:hover svg {
  color: #1877F2;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #B8A992, #7D6B56);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  top: -var(--space-md);
  right: -var(--space-md);
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--oak-light);
  opacity: 0.2;
  z-index: -1;
  top: -1.5rem;
  right: -1.5rem;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-top: var(--space-sm);
}

.about-content > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.about-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--walnut);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  position: relative;
  margin-bottom: var(--space-lg);
}

.about-quote::before {
  content: '\201E';
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--oak);
  opacity: 0.3;
  font-style: normal;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-stat {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-spring);
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-stat .stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.6rem;
  color: var(--oak);
  line-height: 1;
}

.about-stat .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════ */
.testimonial {
  padding: var(--space-3xl) 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 124, 82, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.testimonial-quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 5rem;
  color: var(--oak);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -1.5rem;
}

.testimonial blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--oak);
  letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--bg-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner .label {
  justify-content: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin: 0 auto var(--space-xl);
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-spring);
  text-decoration: none;
}

.cta-phone-link:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-phone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.cta-phone-link:hover .cta-phone-icon {
  background: var(--oak-deep);
}

.cta-phone-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-inverse);
}

.cta-phone-number {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--charcoal);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.cta-phone-link:hover .cta-phone-number {
  color: var(--oak-deep);
}

.cta-info {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  word-break: break-word;
}

.cta-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--oak);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid rgba(166, 124, 82, 0.1);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.footer-logo .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--oak);
  border-radius: 50%;
  margin-left: 1px;
  vertical-align: middle;
  position: relative;
  top: 1px;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  color: var(--oak);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero entrance animations */
.hero-enter {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEnter 0.9s var(--ease-out) forwards;
}

.hero-enter-1 { animation-delay: 0.1s; }
.hero-enter-2 { animation-delay: 0.2s; }
.hero-enter-3 { animation-delay: 0.35s; }
.hero-enter-4 { animation-delay: 0.5s; }
.hero-enter-5 { animation-delay: 0.7s; }

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale entrance for visual elements */
.hero-visual-enter {
  opacity: 0;
  transform: scale(0.92);
  animation: heroVisualEnter 1.2s var(--ease-out) 0.4s forwards;
}

@keyframes heroVisualEnter {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.float-enter {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}

.float-enter.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.float-enter-1 {
  animation: floatEnter 0.8s var(--ease-spring) 0.8s forwards;
}

.float-enter-2 {
  animation: floatEnter 0.8s var(--ease-spring) 1s forwards;
}

@keyframes floatEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-visual {
    height: 380px;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-card-main {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hero {
    padding-top: 7rem;
    min-height: auto;
    padding-bottom: var(--space-xl);
  }

  .hero-scroll {
    display: none;
  }

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

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-img {
    aspect-ratio: 4 / 3;
  }

  .about-img-accent {
    display: none;
  }
}

/* ── TABLET SMALL (max 900px) — hamburger menu ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

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

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .feature-item {
    padding: var(--space-md) var(--space-xs);
  }

  .gallery-card {
    flex: 0 0 280px;
    height: 360px;
  }

  .gallery-card:first-child {
    flex: 0 0 320px;
  }
}

/* ── MOBILE (max 640px) ── */
@media (max-width: 640px) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }

  /* Container padding */
  .container {
    padding: 0 var(--space-sm);
  }

  /* Nav */
  .nav {
    padding: 0.6rem var(--space-sm);
  }

  .nav.scrolled {
    padding: 0.5rem var(--space-sm);
  }

  .nav-inner {
    padding: 0.6rem 0.8rem;
  }

  .nav-logo {
    font-size: 0.9rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-hamburger {
    width: 44px;
    height: 44px;
  }

  /* Mobile menu */
  .nav-mobile a {
    font-size: 1.5rem;
  }

  .nav-mobile .mobile-phone {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }

  /* Hero */
  .hero {
    padding-top: 5.5rem;
    padding-bottom: var(--space-xl);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-visual {
    height: 320px;
    max-width: 100%;
  }

  .hero-card-main {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radius-md);
  }

  /* Buttons */
  .btn-pill {
    padding: 0.85rem 1.5rem;
    font-size: 0.82rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    padding: var(--space-lg);
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  .service-tag {
    font-size: 0.76rem;
    padding: 0.45rem 1rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .feature-item {
    display: flex;
    text-align: left;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
  }

  .feature-icon {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    border-left: none;
    border-bottom: 1px solid rgba(166, 124, 82, 0.08);
    padding: var(--space-md) 0;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .step-dot {
    display: none;
  }

  .step-number {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
  }

  /* Gallery */
  .gallery-card {
    flex: 0 0 240px;
    height: 300px;
  }

  .gallery-card:first-child {
    flex: 0 0 270px;
  }

  .gallery-card-label {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.7rem;
    padding: 0.45rem 0.9rem;
    bottom: var(--space-sm);
    left: var(--space-sm);
  }

  /* About */
  .about-visual {
    max-width: 100%;
  }

  .about-img {
    aspect-ratio: 16 / 10;
  }

  .about-content h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .about-quote {
    font-size: 1.05rem;
    padding: var(--space-sm) var(--space-md);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }

  .about-stat {
    padding: var(--space-sm);
  }

  .about-stat .stat-num {
    font-size: 2rem;
  }

  .about-stat .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  /* CTA */
  .cta-inner h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .cta-inner > p {
    font-size: 0.92rem;
  }

  .cta-phone-link {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    width: 100%;
    border-radius: var(--radius-lg);
  }

  .cta-phone-number {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .cta-phone-icon {
    width: 48px;
    height: 48px;
  }

  .cta-info {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .cta-info-item {
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  /* Section headers */
  .services-header h2,
  .gallery-header h2,
  .process-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .services-header p,
  .gallery-header p,
  .process-header p {
    font-size: 0.92rem;
  }
}

/* ── SMALL MOBILE (max 380px) ── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-pill {
    justify-content: center;
    width: 100%;
  }

  .nav-logo {
    font-size: 0.8rem;
    max-width: 160px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .about-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-align: left;
  }

  .about-stat .stat-num {
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .gallery-card {
    flex: 0 0 220px;
    height: 280px;
  }

  .gallery-card:first-child {
    flex: 0 0 240px;
  }

  .cta-phone-number {
    font-size: 1.3rem;
  }

  .cta-info-item {
    font-size: 0.76rem;
  }

  .hero-visual {
    height: 280px;
  }

  .service-tag {
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
  }
}

/* ── TOUCH DEVICE OPTIMIZATIONS ── */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .service-card:active {
    transform: scale(0.98);
  }

  .gallery-card:hover .gallery-placeholder {
    transform: none;
  }

  .gallery-card-label {
    opacity: 1;
    transform: translateY(0);
  }

  .about-stat:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(26, 22, 19, 0.15);
  }

  .btn-primary:active {
    transform: scale(0.96);
    background: var(--oak-deep);
  }

  .btn-ghost:hover {
    transform: none;
  }

  .btn-ghost:active {
    transform: scale(0.96);
  }

  .gallery-scroll {
    cursor: default;
  }
}
