/* ===== VP House of Fashion — Design System ===== */

/* ---------- Google Fonts ---------- */
@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&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold:        #c9a96e;
  --gold-light:  #ddc99e;
  --gold-dark:   #a88a4e;
  --cream:       #faf6f0;
  --cream-dark:  #f0e8d8;
  --charcoal:    #2b2b2b;
  --charcoal-light: #3d3d3d;
  --soft-black:  #1a1a1a;
  --white:       #ffffff;
  --rose:        #d4a0a0;
  --rose-light:  #f0d4d4;
  --text-dark:   #2b2b2b;
  --text-medium: #5a5a5a;
  --text-light:  #8a8a8a;
  --overlay:     rgba(27, 27, 27, 0.55);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Segoe UI', sans-serif;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container:   1200px;
  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --transition:  0.4s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }

.section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--charcoal); margin-bottom: 1.2rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-medium); max-width: 600px; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--soft-black); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ---------- NAVIGATION ---------- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.2rem 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(250, 246, 240, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.8rem 0; box-shadow: 0 1px 30px rgba(0,0,0,0.06); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

/* Logo image */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); transition: var(--transition); }
.navbar.scrolled .nav-logo-img { filter: brightness(0) invert(0); height: 40px; }
.footer-logo-img { height: 50px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s var(--ease-out); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }

.nav-cta { padding: 0.6rem 1.5rem !important; background: var(--gold) !important; color: var(--white) !important; font-size: 0.72rem !important; letter-spacing: 0.12em !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ---------- HERO ---------- */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); color: transparent; font-size: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27, 27, 27, 0.7) 0%, rgba(27, 27, 27, 0.3) 50%, rgba(201, 169, 110, 0.15) 100%); }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-content .section-label { color: var(--gold-light); }
.hero-content .section-label::before { background: var(--gold-light); }

.hero-logo { height: 80px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.5rem; opacity: 0.9; }

.hero-title { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); margin-bottom: 1.5rem; font-weight: 400; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold-light), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- INTRO / HOW WE HELP ---------- */
.intro { padding: var(--section-pad) 0; background: var(--cream); }
.intro-header { text-align: center; margin-bottom: 4rem; }
.intro-header .section-label { justify-content: center; }
.intro-header .section-subtitle { margin: 0 auto; }

.intro-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.intro-card { background: var(--white); border-radius: 1rem; overflow: hidden; transition: var(--transition); box-shadow: 0 4px 30px rgba(0,0,0,0.04); }
.intro-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.intro-card-img { height: 260px; overflow: hidden; }
.intro-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.intro-card:hover .intro-card-img img { transform: scale(1.05); }
.intro-card-body { padding: 2rem; }
.intro-card-body h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: var(--charcoal); }
.intro-card-body p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.7; }

/* ---------- ABOUT PIA ---------- */
.about { padding: var(--section-pad) 0; background: var(--white); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 70%); border-radius: 50%; pointer-events: none; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-image-wrapper { position: relative; display: inline-block; }
.about-image-wrapper img { border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.12); position: relative; z-index: 1; max-height: 550px; object-fit: cover; width: 100%; }
.about-image-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 1rem; z-index: 0; }

.about-content .section-label { margin-bottom: 0.8rem; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-text { font-size: 1.05rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 2.5rem; font-weight: 300; }
.about-text strong { color: var(--charcoal); font-weight: 600; }

/* ---------- PROCESS / HOW WE WORK ---------- */
.process { padding: var(--section-pad) 0; background: var(--charcoal); color: var(--white); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%); border-radius: 50%; }
.process-header { text-align: center; margin-bottom: 4rem; position: relative; }
.process-header .section-label { justify-content: center; }
.process-header .section-title { color: var(--white); }
.process-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,169,110,0.3); transform: translateY(-5px); }
.step-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); margin-bottom: 1rem; opacity: 0.5; }

.step-img-wrapper { width: 160px; height: 160px; margin: 0 auto 1.5rem; border-radius: 50%; overflow: hidden; border: 3px solid rgba(201,169,110,0.4); }
.step-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.process-step h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--gold-light); }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* ---------- SERVICES ---------- */
.services { padding: var(--section-pad) 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-label { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

.service-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.service-tab { padding: 0.7rem 1.8rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--white); color: var(--text-medium); border: 1.5px solid var(--cream-dark); cursor: pointer; transition: var(--transition); border-radius: 50px; }
.service-tab:hover { border-color: var(--gold); color: var(--gold); }
.service-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeUp 0.5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.service-item { background: var(--white); padding: 2rem; border-radius: 0.8rem; border: 1px solid var(--cream-dark); transition: var(--transition); position: relative; overflow: hidden; }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s var(--ease-out); }
.service-item:hover::before { height: 100%; }
.service-item:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }

.service-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.service-item h4 { font-size: 1.15rem; font-weight: 500; color: var(--charcoal); flex: 1; padding-right: 1rem; }
.service-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); white-space: nowrap; }

.service-details-toggle { font-size: 0.8rem; color: var(--gold); font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem; transition: var(--transition); }
.service-details-toggle:hover { color: var(--gold-dark); }
.service-details-toggle .arrow { transition: transform 0.3s var(--ease-out); font-size: 0.65rem; }
.service-details-toggle.open .arrow { transform: rotate(180deg); }

.service-details { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out), padding 0.3s; }
.service-details.open { max-height: 600px; padding-top: 1rem; }
.service-details li { font-size: 0.88rem; color: var(--text-medium); padding: 0.25rem 0; padding-left: 1.2rem; position: relative; }
.service-details li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.45rem; }

/* Laser Table */
.laser-table-wrapper { overflow-x: auto; border-radius: 0.8rem; background: var(--white); box-shadow: 0 4px 30px rgba(0,0,0,0.04); }
.laser-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.laser-table thead { background: var(--charcoal); color: var(--white); }
.laser-table th { padding: 1.2rem 1.5rem; text-align: left; font-family: var(--font-sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.laser-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--cream-dark); color: var(--text-dark); }
.laser-table tbody tr { transition: var(--transition); }
.laser-table tbody tr:hover { background: var(--cream); }
.laser-table .price-cell { font-family: var(--font-serif); font-weight: 600; color: var(--gold-dark); font-size: 1.05rem; }
.laser-table tbody tr:last-child { background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02)); font-weight: 600; }
.laser-table tbody tr:last-child td { border-bottom: none; }

.kuur-badge { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 50px; letter-spacing: 0.05em; margin-left: 0.5rem; vertical-align: middle; }

/* ---------- GALLERY ---------- */
.gallery { padding: var(--section-pad) 0; background: var(--cream); overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 250px); gap: 1rem; }
.gallery-grid .g-item { border-radius: 0.8rem; overflow: hidden; position: relative; cursor: pointer; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%); opacity: 0; transition: opacity 0.4s; }
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 2; }

/* ---------- CTA BANNER ---------- */
.cta-banner { padding: 5rem 0; background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-black) 100%); position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(201,169,110,0.1), transparent 60%); border-radius: 50%; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }

/* ---------- CONTACT ---------- */
.contact { padding: var(--section-pad) 0; background: var(--cream); }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-header .section-label { justify-content: center; }

/* Map */
.contact-map { margin-bottom: 3rem; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-map iframe { display: block; }

/* Info Cards */
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.contact-card { text-align: center; padding: 2.5rem 2rem; background: var(--white); border-radius: 1rem; box-shadow: 0 4px 30px rgba(0,0,0,0.04); transition: var(--transition); }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.contact-card-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); margin: 0 auto 1.2rem; }
.contact-card h4 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.8rem; }
.contact-card p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.7; }
.contact-card a { color: var(--gold-dark); font-weight: 500; transition: var(--transition); }
.contact-card a:hover { color: var(--gold); }

/* WhatsApp CTA */
.whatsapp-cta { text-align: center; margin-bottom: 3rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.8rem; padding: 1rem 2.5rem; background: #25D366; color: var(--white); font-family: var(--font-sans); font-size: 1rem; font-weight: 600; border-radius: 60px; transition: var(--transition); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
.whatsapp-btn i { font-size: 1.5rem; }
.whatsapp-btn:hover { background: #1ebe57; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }

/* Form section */
.contact-form-section { max-width: 700px; margin: 0 auto; }
.contact-form { background: var(--white); padding: 3rem; border-radius: 1rem; box-shadow: 0 10px 50px rgba(0,0,0,0.05); }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 2rem; color: var(--charcoal); text-align: center; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-medium); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1.2rem; border: 1.5px solid var(--cream-dark); border-radius: 0.5rem; font-family: var(--font-sans); font-size: 0.95rem; color: var(--text-dark); background: var(--cream); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); animation: whatsappPulse 2s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); } }

/* WhatsApp social icon in footer */
.whatsapp-social { background: #25D366 !important; border-color: #25D366 !important; color: var(--white) !important; }
.whatsapp-social:hover { background: #1ebe57 !important; }


/* ---------- FOOTER ---------- */
.footer { background: var(--soft-black); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.82rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .intro-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper img { max-height: 400px; }
  .contact-info-cards { grid-template-columns: 1fr; gap: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; }
  .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(250,246,240,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1002;
    padding: 2rem;
  }
  .nav-links.open li { list-style: none; }
  .nav-links.open a { color: var(--charcoal) !important; font-size: 1.1rem; letter-spacing: 0.15em; }
  .nav-links.open .nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 0.8rem 2rem !important; border-radius: 4px; margin-top: 0.5rem; }
  .nav-toggle { display: flex; z-index: 1003; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-logo { height: 55px; }
  .hero-buttons { flex-direction: column; }
  .about-grid { gap: 2rem; }
  .about-image-accent { display: none; }
  .service-tabs { gap: 0.4rem; }
  .service-tab { padding: 0.5rem 1rem; font-size: 0.7rem; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .contact-map iframe { height: 280px; }
  .whatsapp-btn { font-size: 0.88rem; padding: 0.8rem 1.8rem; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 1.5rem; right: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gallery-grid .g-item:nth-child(1), .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .laser-table { font-size: 0.82rem; }
  .laser-table th, .laser-table td { padding: 0.7rem 1rem; }
}
