/* ============================================
   DEJAVU CABINETRY — Luxury Cabinetry Website
   Inspired by dreamspaces.ca: warm cream + espresso
   ============================================ */

:root {
  --cream:        #F5EFE6;
  --cream-soft:   #FAF6F0;
  --cream-deep:   #ECE3D4;
  --espresso:     #2A1C13;
  --espresso-2:   #3B2A1E;
  --bronze:       #A78B6E;
  --bronze-soft:  #C6AC8F;
  --gold:         #B89668;
  --ink:          #1A130D;
  --muted:        #6B5A4A;
  --line:         #DDD2C0;
  --white:        #FFFFFF;
  --whatsapp:     #25D366;
  --whatsapp-dk:  #128C7E;

  --serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:   "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1280px;
  --radius: 4px;
  --transition: 350ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
}
h1, h2, h3, h4 { font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
section.tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(42,28,19,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-secondary:hover { background: var(--espresso); color: var(--cream); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dk); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,239,230,0.5);
}
.btn-ghost:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,239,230,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(221,210,192,0.5);
  transition: background var(--transition), padding var(--transition);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.nav-brand .b1 { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--espresso); }
.nav-brand .b2 { font-family: var(--sans); font-weight: 700; letter-spacing: 0.12em; color: var(--espresso); text-transform: uppercase; font-size: 18px; }

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--bronze); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn { padding: 12px 22px; font-size: 12px; }
.nav-toggle {
  display: none;
  width: 28px; height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--espresso);
  transition: transform var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-copy .eyebrow { display: block; margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 .line { display: block; }
.hero-copy h1 .serif-italic { display: block; margin-top: 4px; }
.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 540px;
}
.hero-copy p.lead-end {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--espresso-2);
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px -20px rgba(42,28,19,0.35);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-visual:hover img { transform: scale(1.05); }

.hero-marquee {
  background: var(--espresso);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.hero-marquee-inner span {
  display: inline-block;
  padding: 0 32px;
}
.hero-marquee-inner .dot {
  color: var(--bronze);
  font-style: normal;
  font-size: 28px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about { background: var(--cream-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.about-images img:nth-child(1) { margin-top: 40px; }
.about-copy .eyebrow { margin-bottom: 18px; display: block; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-copy .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--bronze);
  margin-top: 8px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Section Header ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- Services ---------- */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(42,28,19,0.25);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
}
.service-card-link {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card-link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-card-link::after { transform: translateX(6px); }

/* ---------- Showroom Video ---------- */
.showroom {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}
.showroom .eyebrow { color: var(--bronze-soft); display: block; margin-bottom: 14px; }
.showroom h2 { color: var(--cream); margin-bottom: 16px; }
.showroom p {
  color: rgba(245,239,230,0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Gallery / Portfolio ---------- */
.gallery { background: var(--cream-soft); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.gallery-filter button {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all var(--transition);
}
.gallery-filter button:hover { color: var(--espresso); border-color: var(--espresso); }
.gallery-filter button.active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  grid-column: span 4;
  aspect-ratio: 1/1;
  background: var(--cream-deep);
}
.gallery-item.wide { grid-column: span 6; aspect-ratio: 16/9; }
.gallery-item.tall { grid-column: span 3; aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease, opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,19,13,0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-label {
  position: absolute;
  left: 18px; bottom: 16px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}
.gallery-item:hover .gi-label { opacity: 1; transform: translateY(0); }
.gallery-item.hidden { display: none; }

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { position: relative; }
.process-step .num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
}
.process-step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- Videos / Reels ---------- */
.videos { background: var(--cream-soft); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--espresso);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease, opacity var(--transition); }
.video-card:hover img { transform: scale(1.06); opacity: 0.85; }
.video-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-card .play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(245,239,230,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform var(--transition);
}
.video-card:hover .play-btn { transform: scale(1.1); background: var(--cream); }
.video-card .play-btn svg { width: 24px; height: 24px; fill: var(--espresso); margin-left: 4px; }

/* ---------- Instagram Feed ---------- */
.insta { background: var(--cream); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(42,28,19,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-item:hover::after { opacity: 1; }
.insta-item .ig-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
  pointer-events: none;
}
.insta-item:hover .ig-overlay { opacity: 1; }
.insta-item .ig-overlay svg { width: 32px; height: 32px; fill: var(--cream); }
.insta-cta { text-align: center; margin-top: 40px; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream-deep);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.test-card {
  background: var(--cream-soft);
  padding: 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.test-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--espresso);
  margin-bottom: 20px;
}
.test-card .quote::before {
  content: '"';
  display: block;
  font-size: 48px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: -8px;
}
.test-card .author { font-weight: 600; font-size: 14px; color: var(--ink); }
.test-card .stars { color: var(--gold); margin-top: 6px; font-size: 14px; }

/* ---------- Contact ---------- */
.contact { background: var(--cream-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all var(--transition);
}
.contact-channel:hover {
  border-color: var(--bronze);
  transform: translateX(4px);
  box-shadow: 0 12px 28px -10px rgba(42,28,19,0.2);
}
.contact-channel.primary {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
}
.contact-channel.primary:hover {
  background: var(--whatsapp-dk);
  border-color: var(--whatsapp-dk);
}
.contact-channel.call {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.contact-channel.call:hover {
  background: var(--ink);
}
.cc-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-channel:not(.primary):not(.call) .cc-icon {
  background: var(--cream-deep);
}
.cc-icon svg { width: 22px; height: 22px; }
.contact-channel.primary .cc-icon svg,
.contact-channel.call .cc-icon svg { fill: var(--white); }
.contact-channel:not(.primary):not(.call) .cc-icon svg { fill: var(--espresso); }
.cc-text { display: flex; flex-direction: column; }
.cc-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.cc-value {
  font-size: 18px;
  font-weight: 600;
  margin-top: 2px;
}
.contact-channel.primary .cc-value,
.contact-channel.call .cc-value { font-size: 20px; }

.contact-hours {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-hours h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-hours ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--muted); }
.contact-hours li { display: flex; justify-content: space-between; }

/* ---------- Form ---------- */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: 8px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form .form-sub {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 15px;
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--bronze);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.form-msg.ok { display: block; background: #E6F4EA; color: #1E5E2C; border: 1px solid #B8DCC0; }
.form-msg.err { display: block; background: #FBEAEA; color: #8B1F1F; border: 1px solid #E6B8B8; }

/* honeypot */
.hp { position: absolute; left: -9999px; }

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
  transition: transform var(--transition), background var(--transition);
  animation: pulse 2.4s infinite;
}
.floating-wa:hover { background: var(--whatsapp-dk); transform: scale(1.08); animation-play-state: paused; }
.floating-wa svg { width: 32px; height: 32px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 12px 30px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze-soft);
  margin-bottom: 22px;
}
.footer-brand .b1 { font-family: var(--serif); font-style: italic; font-size: 32px; font-weight: 600; color: var(--cream); }
.footer-brand .b2 { font-family: var(--sans); font-weight: 700; letter-spacing: 0.14em; color: var(--cream); font-size: 24px; text-transform: uppercase; }
.footer-tagline { color: rgba(245,239,230,0.7); margin-top: 16px; max-width: 320px; line-height: 1.7; font-size: 15px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(245,239,230,0.7); font-size: 14px; transition: color var(--transition); }
.footer ul a:hover { color: var(--bronze-soft); }
.footer-contact-item { color: rgba(245,239,230,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-contact-item strong { color: var(--cream); display: block; font-weight: 600; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,239,230,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--bronze); }
.footer-social svg { width: 18px; height: 18px; fill: var(--cream); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,230,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(245,239,230,0.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,14,9,0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img, .lightbox iframe {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox iframe { width: 92vw; max-width: 1280px; aspect-ratio: 16/9; height: auto; }
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,239,230,0.1);
  color: var(--cream);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(245,239,230,0.25); }
.lb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,239,230,0.1);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background var(--transition);
}
.lb-arrow:hover { background: rgba(245,239,230,0.25); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 16/10; max-height: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: span 6; aspect-ratio: 1/1; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .nav-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream-soft); flex-direction: column; padding: 28px 24px; gap: 20px; border-bottom: 1px solid var(--line); }
  .nav-menu.open { display: flex; }
  .nav-cta .btn:not(.btn-whatsapp) { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 110px; min-height: auto; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: span 12; aspect-ratio: 4/3; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .floating-wa { width: 54px; height: 54px; }
}

/* ============================================================
   Brand logo (nav + footer) — replaces the b1/b2 text mark
   ============================================================ */
.nav-brand .brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.04));
}
.footer-brand { margin-bottom: 16px; }
.footer-brand .footer-logo {
  height: 88px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

@media (max-width: 760px) {
  .nav-brand .brand-logo { height: 44px; }
  .footer-brand .footer-logo { height: 64px; }
}
@media (max-width: 480px) {
  .nav-brand .brand-logo { height: 38px; }
}

/* ============================================================
   Google Reviews widget
   ============================================================ */
.google-reviews-summary {
  background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(42,28,19,0.05);
}
.grs-left { display: flex; align-items: center; gap: 18px; }
.grs-logo {
  width: 56px; height: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.grs-headline .grs-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.grs-headline .grs-meta {
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}
.grs-rating {
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 24px;
}
.grs-score {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  color: var(--espresso);
  line-height: 1;
}
.grs-stars {
  color: #FBBC04;
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 4px;
}
.grs-link {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.grs-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.grs-cta .btn { padding: 12px 22px; font-size: 13px; text-align: center; }

/* Review cards — enhanced with header (avatar + name + Google "G") */
.test-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--gold) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.test-author-block .author { font-weight: 600; font-size: 14px; color: var(--ink); }
.test-author-block .stars { color: #FBBC04; font-size: 13px; letter-spacing: 1px; margin-top: 2px; }
.test-head .g-mark { opacity: 0.9; }

.reviews-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--mute);
}
.reviews-footnote a {
  color: var(--espresso);
  font-weight: 500;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 1px;
}

@media (max-width: 900px) {
  .google-reviews-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 24px;
  }
  .grs-left { flex-direction: column; gap: 12px; }
  .grs-rating {
    border: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  .grs-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ============================================================
   Embedded map section
   ============================================================ */
.map-section {
  background: var(--cream-deep);
  padding: 0;
}
.map-embed {
  position: relative;
  width: 100%;
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.15) contrast(0.97);
}
.map-overlay-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--espresso);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  line-height: 1;
}
.map-overlay-link:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--gold);
}

/* ============================================================
   Footer Visit block enhancements
   ============================================================ */
.footer-map-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-map-link:hover { color: var(--cream); }
.footer-map-link svg { opacity: 0.8; flex-shrink: 0; }
