/* ============================================
   BOTIQ HOMES — MDX style
   Light gradient · Central orb · Clean sans
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  cursor: none !important;
}

:root {
  --serif:   'Cormorant Garamond', Georgia, serif;
  --bg:      #E8DDD4;
  --text:    #1a0f09;
  --mid:     #714329;
  --sage:    #D0B9A7;
  --moss:    #714329;
  --ivory:   #F0E8E0;
  --black:   #1a0f09;
  --white:   #F5EDE5;
  --sans:    'Plus Jakarta Sans', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

#scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* hide scrollbar */
#scroll-container::-webkit-scrollbar { display: none; }
#scroll-container { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}

.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(12,12,12,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .35s ease, height .35s ease, border-color .3s;
}

.cursor-ring.hovered {
  width: 68px; height: 68px;
  border-color: var(--gold);
}

.cursor-ring.clicking {
  width: 28px; height: 28px;
}

/* ============================================
   SCENES (full-viewport pages)
   ============================================ */
.scene {
  position: relative;
  height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Hero background */
#scene-hero {
  background: radial-gradient(ellipse at 58% 42%, #EDE5DC 0%, #D8C9BB 100%);
}

/* Process / contact backgrounds */
#scene-process {
  background: radial-gradient(ellipse at 42% 55%, #E8DDD4 0%, #CDBBA8 100%);
}

#scene-about {
  background: radial-gradient(ellipse at 60% 40%, #E2D4C8 0%, #D0B9A7 100%);
}

#scene-contact {
  background: radial-gradient(ellipse at 50% 45%, #EDE5DC 0%, #D8C5B2 100%);
  display: flex;
  flex-direction: column;
}

/* ============================================
   NAV — pill ribbon end to end
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(232, 221, 212, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180, 160, 140, 0.25);
  box-shadow: 0 1px 40px rgba(0,0,0,0.06);
}


.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-left  { flex: 0 0 auto; }
.nav-center { gap: 20px; flex: 1; justify-content: center; }
.nav-right  { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }

.nav-logo img {
  display: block;
  height: 44px;
}

.nav-divider {
  font-size: 14px;
  color: rgba(0,0,0,0.18);
  font-weight: 300;
}

.nav-dash {
  font-size: 18px;
  color: rgba(0,0,0,0.3);
  letter-spacing: -2px;
  font-weight: 300;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,0,0,0.25);
  transition: opacity 0.2s;
  opacity: 0.55;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active { opacity: 1; }

.nav-talk {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(12,12,12,0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nt-arrow {
  color: #000000;
  font-size: 15px;
  transition: transform 0.2s;
}
.nav-talk:hover .nt-arrow { transform: translate(2px, -2px); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: opacity 0.2s;
}

/* ============================================
   HERO — BACKGROUND PHOTO
   ============================================ */
.hero-photo {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 42%;
  right: 0;
  background-image: url('https://images.unsplash.com/photo-1731518787237-5c3935796471?q=80&w=1480&auto=format&fit=crop');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  pointer-events: none;
}

/* ============================================
   HERO — BOTTOM LEFT & RIGHT
   ============================================ */
.hero-bl {
  position: absolute;
  bottom: 96px;
  left: 48px;
  right: 58%;
  z-index: 2;
}

.hero-bl h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 28px;
  max-width: 380px;
}

/* Dark pill CTA */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.15s;
}
.btn-pill:hover {
  background: var(--moss);
  transform: scale(1.03);
}
.btn-pill span { color: var(--sage); font-size: 14px; }

.hero-br {
  position: absolute;
  top: 88px;
  left: 48px;
  max-width: 340px;
  text-align: left;
}

.hero-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.desc-dim { color: var(--mid); font-weight: 400; }

.stress {
  color: var(--moss);
  font-style: italic;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--moss);
  border: 1px solid var(--sage);
  border-radius: 100px;
  padding: 5px 14px;
  transition: background 0.2s, color 0.2s;
}
.tag:hover {
  background: var(--moss);
  color: var(--white);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.proc-layout {
  max-width: 1600px;
  margin: 0 auto;
  padding: 100px 48px 40px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.proc-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}

.proc-headline h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
}

.proc-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 460px;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(196,197,186,0.4);
  border: 1px solid rgba(196,197,186,0.5);
  flex: 1;
}

.proc-card {
  background: var(--ivory);
  padding: 0 0 28px 0;
  transition: background 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.proc-card:hover { background: var(--white); }

/* Standards reuses the Process card grid but has 4 cards, not 6 -- 2 columns keeps it a
   clean 2x2 instead of an awkward 3+1 in the 3-column layout. */
#scene-standards .proc-grid { grid-template-columns: repeat(2, 1fr); }

.pc-num {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
  background: var(--moss);
  padding: 12px 28px;
  width: 100%;
}

.proc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  padding: 0 28px;
}

.proc-card p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  padding: 0 28px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-headline h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 0;
}

.about-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

.about-motto {
  font-size: 15px !important;
  font-weight: 600 !important;
  font-style: italic;
  color: var(--moss) !important;
  border-left: 3px solid var(--moss);
  padding-left: 18px;
  margin: 32px 0 36px !important;
  line-height: 1.6 !important;
}

.proc-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 0;
  max-width: 400px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: unset;
  flex: 1;
  text-align: center;
  padding: 100px 48px 60px;
}

.contact-layout h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-layout > p {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  margin-bottom: 44px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--sage);
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-pill:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid var(--sage);
  flex-wrap: wrap;
  gap: 12px;
}

.ft-logo {
  height: 30px;
}

footer span {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.3px;
}

.ft-login {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.ft-login:hover { opacity: 1; }

/* ============================================
   RESPONSIVE — hide burger on desktop
   ============================================ */
@media (min-width: 769px) {
  .nav-burger { display: none; }
}

/* ============================================
   RESPONSIVE — short viewports
   ============================================ */
@media (max-height: 750px) {
  .hero-br { display: none; }
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .hero-br { display: none; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 32px; padding: 100px 40px 60px; }
  .stat-item { padding: 0 20px; }
}

/* ============================================
   RESPONSIVE — MOBILE NAV (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .nav-center { display: none; }
  nav { padding: 10px 16px; }
  .nav-logo img { height: 36px; }
}

/* ============================================
   PROGRESS BAR
   ============================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--moss);
  z-index: 9999;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* ============================================
   SIDE SCROLL DOTS
   ============================================ */
.scroll-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 300;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.scroll-dot.is-active {
  background: var(--moss);
  transform: scale(1.5);
}

.scroll-dot:hover { background: var(--moss); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 5000;
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
}

.mobile-menu.is-open { transform: translateX(0); }

.mm-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.mm-close:hover { opacity: 1; }

.mm-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  flex: 1;
}

.mm-link {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.mm-link:hover { opacity: 1; color: var(--moss); }

.mm-email {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.mm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 4999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mm-overlay.is-open { opacity: 1; pointer-events: all; }

/* ============================================
   GRAIN TEXTURE OVERLAY
   ============================================ */
.texture-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.13) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 9995;
}

/* ============================================
   STATS BAR
   ============================================ */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196,197,186,0.5);
  padding: 14px 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 44px;
  flex: 1;
  max-width: 220px;
}

.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--moss);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(196,197,186,0.7);
  flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#scene-gallery {
  background: radial-gradient(ellipse at 50% 50%, #CECFC5 0%, #B8B9AE 100%);
}

.gallery-layout {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 90px 48px 48px;
  box-sizing: border-box;
  gap: 20px;
}

.gallery-header { flex-shrink: 0; }

.gallery-header h2 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.gallery-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  overflow: hidden;
  transition: filter 0.4s ease;
}
.gallery-photo:hover { filter: brightness(1.06); }

/* gp-1 spans both rows on the left */
.gp-1 {
  grid-row: 1 / 3;
  background-color: #8a9a7a;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&q=80&auto=format&fit=crop');
}
.gp-2 {
  background-color: #b5b8a8;
  background-image: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=800&q=80&auto=format&fit=crop');
}
.gp-3 {
  background-color: #cecfc5;
  background-image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=800&q=80&auto=format&fit=crop');
}
.gp-4 {
  background-color: #9fa890;
  background-image: url('https://images.unsplash.com/photo-1600573472592-401b489a3cdc?w=800&q=80&auto=format&fit=crop');
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
#scene-testimonials {
  background: radial-gradient(ellipse at 40% 60%, #EAEAE4 0%, #D5D6CC 100%);
}

.testi-layout {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.testi-layout > .proc-eyebrow { margin-bottom: 36px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-quote {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(196,197,186,0.4);
  border-radius: 14px;
  padding: 36px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s, transform 0.35s;
}
.testi-quote:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-5px);
}

.tq-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-top: 36px;
}

.tq-text::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 64px;
  font-weight: 700;
  font-style: normal;
  color: var(--moss);
  line-height: 1;
  opacity: 0.7;
}

.tq-cite {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--moss);
  font-style: normal;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cf-input,
.cf-textarea {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(196,197,186,0.7);
  border-radius: 12px;
  padding: 13px 18px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}
.cf-input::placeholder,
.cf-textarea::placeholder { color: rgba(0,0,0,0.3); }
.cf-input:focus,
.cf-textarea:focus {
  border-color: var(--moss);
  background: rgba(255,255,255,0.92);
}

.cf-textarea {
  resize: none;
  min-height: 100px;
}

.cf-submit { align-self: flex-start; }

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
.about-layout,
.proc-layout,
.gallery-layout,
.testi-layout,
.contact-layout {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.scene.is-visible .about-layout,
.scene.is-visible .proc-layout,
.scene.is-visible .gallery-layout,
.scene.is-visible .testi-layout,
.scene.is-visible .contact-layout {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 640px) {
  *, *::before, *::after { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none; }

  /* ── Hero ── */
  /* Photo: full-width at top, fades downward */
  .hero-photo {
    left: 0; right: 0;
    top: 0; bottom: 50%;
    background-size: cover;
    background-position: center center;
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    mask-image:         linear-gradient(to bottom, black 55%, transparent 100%);
  }

  /* Text: sits in the bottom half */
  .hero-bl {
    bottom: 76px;
    left: 20px; right: 20px;
    top: auto;
  }
  .hero-bl h1    { font-size: 26px; letter-spacing: -0.8px; }
  .hero-sub      { font-size: 12px; margin-bottom: 20px; }

  /* Stats bar: tighter */
  .hero-stats    { padding: 8px 12px; }
  .stat-item     { padding: 0 8px; }
  .stat-num      { font-size: 15px; }
  .stat-label    { font-size: 7px; letter-spacing: 0.8px; }
  .stat-divider  { height: 22px; }

  /* ── About ── */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 88px 20px 48px;
  }
  .about-headline h2 { font-size: 28px; letter-spacing: -1px; }
  .about-body p      { font-size: 13px; }

  /* ── Process ── */
  .proc-layout {
    padding: 88px 0 32px;
    gap: 12px;
    justify-content: flex-start;
  }
  .proc-headline     { padding: 0 20px; }
  .proc-headline h2  { font-size: 24px; }
  .proc-sub          { font-size: 12px; margin-bottom: 16px; }
  .proc-grid         { grid-template-columns: repeat(2, 1fr); }
  .pc-num            { font-size: 12px; padding: 8px 16px; }
  .proc-card h3      { font-size: 12px; padding: 0 16px; }
  .proc-card p       { font-size: 11px; padding: 0 16px;
                       overflow: hidden;
                       display: -webkit-box;
                       -webkit-line-clamp: 3;
                       -webkit-box-orient: vertical; }
  .proc-card         { padding-bottom: 14px; }

  /* ── Contact ── */
  .contact-layout     { padding: 88px 20px 40px; }
  .contact-layout h2  { font-size: 28px; letter-spacing: -1px; }
  .contact-layout > p { font-size: 13px; margin-bottom: 28px; }
  .cf-row             { grid-template-columns: 1fr; }
  .contact-actions    { flex-direction: column; align-items: stretch; }

  footer { padding: 16px 20px; }
  footer span { font-size: 10px; }
  .hero-bl h1 { font-size: 36px; }
  .about-headline h2 { font-size: 34px; }
  .proc-headline h2  { font-size: 30px; }
  .contact-layout h2 { font-size: 32px; }
}

/* ============================================
   INTRO OVERLAY
   ============================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #F5EDE5;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

#intro-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0.88);
  animation: introAppear 0.55s 0.15s cubic-bezier(0.22,1,0.36,1) forwards;
  transform-origin: center center;
  will-change: transform, opacity;
}

.intro-logo-img {
  height: clamp(60px, 12vw, 120px);
  width: auto;
}

@keyframes introAppear {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.intro-text.zoom-out {
  animation: introZoomOut 0.6s cubic-bezier(0.55, 0, 1, 0.7) forwards;
}

@keyframes introZoomOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(20); }
}

/* ============================================
   WHATSAPP — inside the nav pill
   ============================================ */
/* ============================================
   WHATSAPP — inside the nav pill
   ============================================ */
.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-wa svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.nav-wa:hover {
  background: #1ebe5a;
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
}

