﻿/* =============================================
   RATU SALON KLATEN Ã¢â‚¬â€ LUXURY EDITORIAL CSS
   ============================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --black:      #000000;
  --charcoal:   #0A0A0A;
  --charcoal2:  #111111;
  --charcoal3:  #181818;
  --gold:       #D4AF37;
  --gold-light: #E8C96D;
  --champagne:  #F5D98B;
  --champagne2: #FBF0CC;
  --white:      #FAFAFA;
  --white-dim:  rgba(250, 250, 250, 0.75);
  --white-muted:rgba(250, 250, 250, 0.45);
  --gold-alpha: rgba(212, 175, 55, 0.2);
  --gold-alpha2:rgba(212, 175, 55, 0.08);
  --gold-alpha3:rgba(212, 175, 55, 0.5);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --ease-silk:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 80px;
  --section-gap: 120px;
  --container-w: 1280px;
  --radius: 2px;
  --radius-lg: 6px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Container ---- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s var(--ease-silk),
              box-shadow 0.4s var(--ease-silk),
              backdrop-filter 0.4s var(--ease-silk);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-alpha);
}

.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-alpha3);
  transition: border-color 0.3s;
}
.nav-logo:hover .nav-logo-img { border-color: var(--gold); }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 16px;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-silk);
}

.nav-link:hover { color: var(--champagne); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--champagne);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
}

/* Ambient shimmer background */
.hero-bg-shimmer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(212,175,55,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 30%, rgba(212,175,55,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFade var(--dur, 6s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50%       { opacity: var(--op, 0.3); transform: translateY(-20px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 8px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-alpha3);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  animation: logoShimmer 4s ease-in-out infinite;
}

@keyframes logoShimmer {
  0%, 100% { box-shadow: 0 0 40px rgba(212,175,55,0.15); }
  50%       { box-shadow: 0 0 70px rgba(212,175,55,0.30), 0 0 120px rgba(212,175,55,0.12); }
}

.hero-logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

.hero-ornament-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-muted);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-note {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Scroll hint */


@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

.btn-gold:active { transform: translateY(0); }

.btn-gold.btn-full {
  width: 100%;
  margin-top: 8px;
  padding: 13px 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(250, 250, 250, 0.25);
  color: var(--white-dim);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--gold-alpha3);
  color: var(--champagne);
}

/* =============================================
   SECTION BASE STYLES
   ============================================= */
.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--charcoal); }

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  background: transparent;
  border: 1px solid rgba(250, 250, 250, 0.12);
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-silk);
}

.tab-btn:hover {
  border-color: var(--gold-alpha3);
  color: var(--champagne);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* Service Card */
.service-card {
  background: var(--charcoal2);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.08), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.service-card.hidden { display: none; }

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
  filter: brightness(0.85);
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.service-card-badge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-alpha3);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.service-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.service-card-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 16px;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(250,250,250,0.04);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--white-dim);
}

.price-row:last-child { border-bottom: none; }

.price-row-header {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.68rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-alpha) !important;
  padding-top: 12px !important;
}

.price {
  font-weight: 600;
  color: var(--champagne);
  white-space: nowrap;
}

.service-note {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--white-muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
  opacity: 0.7;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: transform 0.7s var(--ease-silk), filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(0.7);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--champagne);
  font-style: italic;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-alpha3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--gold-alpha2);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-value {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white-dim);
  font-weight: 300;
  line-height: 1.6;
  transition: color 0.3s;
}

a.contact-value:hover { color: var(--champagne); }

.contact-cta {
  padding-top: 8px;
}

/* Per-day hours list (Flexbox) */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.hours-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.hours-day {
  width: 56px;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--white-dim);
  font-weight: 300;
}

.hours-dash {
  width: 16px;
  flex-shrink: 0;
  text-align: center;
  color: var(--gold-alpha3) !important;
  font-size: 0.8rem;
}

.hours-time {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--champagne) !important;
  font-weight: 500 !important;
  white-space: nowrap;
}

.contact-map {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  filter: grayscale(60%) invert(0.9) hue-rotate(180deg) brightness(0.7);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-alpha3);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--white-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-ornament {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-alpha3), transparent);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--white-muted);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid rgba(250,250,250,0.06);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

/* =============================================
   FLOATING WA BUTTON
   ============================================= */
.fab-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: fabBounce 3s ease-in-out infinite;
}

.fab-wa svg {
  width: 28px;
  height: 28px;
}

.fab-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.40s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.48s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.56s; }

.gallery-grid .reveal:nth-child(2)  { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(3)  { transition-delay: 0.14s; }
.gallery-grid .reveal:nth-child(4)  { transition-delay: 0.20s; }
.gallery-grid .reveal:nth-child(5)  { transition-delay: 0.26s; }
.gallery-grid .reveal:nth-child(6)  { transition-delay: 0.32s; }
.gallery-grid .reveal:nth-child(7)  { transition-delay: 0.38s; }
.gallery-grid .reveal:nth-child(8)  { transition-delay: 0.44s; }
.gallery-grid .reveal:nth-child(9)  { transition-delay: 0.50s; }
.gallery-grid .reveal:nth-child(10) { transition-delay: 0.56s; }

.pricelist-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricelist-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.pricelist-grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.pricelist-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.pricelist-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.gallery-item-tall {
    grid-row: span 1;
  }
  .pricelist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricelist-card-wide {
    grid-column: 1 / -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-map {
    height: 320px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --section-gap: 80px;
  }

  .container { padding: 0 20px; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 32px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-silk), opacity 0.4s;
    pointer-events: none;
    border-bottom: 1px solid var(--gold-alpha);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(250,250,250,0.05);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin: 16px 32px 0;
    width: calc(100% - 64px);
    justify-content: center;
  }

  .hamburger { display: flex; }

  /* Hero */
  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-cta-wrap {
    flex-direction: column;
    align-items: center;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  /* Pricelist */
  .pricelist-grid {
    grid-template-columns: 1fr;
  }
  .pricelist-rows-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-ornament {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-alpha3), transparent);
  }

  .fab-wa {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }

  .fab-wa svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .footer-links {
    flex-direction: column;
    gap: 28px;
  }
}

  @media (max-width: 480px) {
    .contact-item { gap: 12px; }
    .contact-icon { width: 36px; height: 36px; }
    .hours-day { width: 50px; font-size: 0.75rem; }
    .hours-dash { width: 12px; font-size: 0.75rem; }
    .hours-time { font-size: 0.75rem; }
    .contact-value { font-size: 0.85rem; }
  }