/*
Theme Name: Levels Gietvloeren
Theme URI: https://levelsgietvloeren.nl/
Author: Codex
Description: Dynamic WordPress theme matching the Levels Gietvloeren Lovable design.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: levels-gietvloeren
*/

:root {
  --paper: #f9f7f1;
  --card: #fcfbf7;
  --ink: #121212;
  --muted: #e9e3d8;
  --border: #ded6ca;
  --stone: #70675d;
  --brand: #f35a24;
  --brand-hover: #dc4818;
  --navy: #17356b;
  --whatsapp: #20bf5b;
  --shadow-card: 0 1px 0 #ded6ca, 0 30px 60px -30px rgba(18, 18, 18, .18);
  --shadow-brand: 0 18px 40px -18px rgba(243, 90, 36, .55);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: #faf8f5;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container-x { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { color: var(--stone); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.section-title { margin: 1rem 0 0; font-size: clamp(2.25rem, 4.3vw, 60px); line-height: 1; letter-spacing: -1.2px; font-weight: 600; }
.section-title em, .hero-title em { font-style: italic; font-weight: 600; }
.lead { color: rgba(18, 18, 18, .68); font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.65; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 3.25rem; padding: 0 1.6rem; border: 1px solid currentColor;
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-brand { background: var(--brand); border-color: var(--brand); color: #fffaf4; box-shadow: var(--shadow-brand); }
.btn-brand:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-ghost { color: #fffaf4; border-color: rgba(255,255,255,.5); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.icon { width: 1rem; height: 1rem; flex: 0 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 247, 241, .94); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 214, 202, .8);
}
.header-inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-logo { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--navy); line-height: .85; text-transform: uppercase; }
.brand-mark { width: 70px; height: 56px; object-fit: contain; }
.primary-nav { display: none; align-items: center; gap: 1.8rem; font-size: 14px; line-height: 20px; height: 36px; }
.primary-nav a, .menu-toggle { color: rgba(18,18,18,.9); }
.primary-nav a:hover { color: var(--brand); }
.nav-dropdown { position: relative; }
.menu-toggle { display: inline-flex; align-items: center; gap: .4rem; border: 0; background: transparent; padding: 1.6rem 0; }
.mega-menu {
  position: absolute; top: 100%; left: -1.5rem; width: 520px; padding: 1.5rem;
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu strong { display: block; margin-bottom: .7rem; color: var(--stone); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.mega-menu a { display: block; padding: .55rem 0; line-height: 1.25; }
.mega-menu span { display: block; margin-top: .15rem; color: var(--stone); font-size: .76rem; }
.header-actions { display: none; align-items: center; gap: .75rem; }
.phone-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; }
.whatsapp-link { width: 2.75rem; height: 2.75rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--whatsapp); color: #fff; }
.appointment-link { height: 40px; padding: 0 20px; background: var(--brand); color: #faf8f5; display: inline-flex; align-items: center; gap: .5rem; font-size: 14px; letter-spacing: .025em; }
.mobile-whatsapp { display: none; }
.mobile-toggle {
  width: 40px; height: 40px; border: 0; background: transparent; padding: 8px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; z-index: 120; top: 0; right: 0; width: min(384px, calc(100vw - 6px)); height: 100svh;
  display: block; overflow-y: auto; padding: 80px 24px 32px;
  background: #faf8f5; border-left: 1px solid var(--border); box-shadow: -24px 0 70px rgba(18,18,18,.22);
  transform: translateX(105%); transition: transform .35s var(--ease);
}
.mobile-menu:before {
  content: ""; position: fixed; top: 0; right: 100%; width: 100vw; height: 100svh;
  background: rgba(18,18,18,.38); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu.is-open:before { opacity: 1; pointer-events: auto; }
.mobile-menu-top {
  position: absolute; top: 0; left: 0; right: 0; height: 80px; padding: 16px 18px 16px 24px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.mobile-menu-top .brand-logo { margin-right: auto; }
.mobile-menu-top .brand-mark { width: 60px; height: 48px; }
.mobile-menu-top .mobile-whatsapp { margin-left: 0; }
.mobile-menu-close { width: 40px; height: 40px; border: 0; background: transparent; font-size: 2rem; line-height: 1; }
.mobile-menu-accordion { border-bottom: 1px solid var(--border); }
.mobile-menu-heading,
.mobile-menu-main a {
  display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 64px;
  border: 0; border-bottom: 1px solid var(--border); background: transparent; color: var(--ink);
  padding: 16px 0; text-align: left; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 24px; line-height: 32px; font-weight: 600; letter-spacing: 0;
}
.mobile-menu-accordion .mobile-menu-heading { border-bottom: 0; }
.mobile-chevron { color: var(--ink); font-family: Inter, Arial, sans-serif; font-size: 20px; line-height: 1; transition: transform .25s var(--ease); }
.mobile-menu-accordion.is-open .mobile-chevron { transform: rotate(180deg); }
.mobile-submenu { display: none; padding: 0 0 18px; }
.mobile-menu-accordion.is-open .mobile-submenu { display: grid; }
.mobile-submenu a {
  display: flex; align-items: center; min-height: 40px; color: var(--ink); padding: 7px 0;
  font-size: 16px; line-height: 24px; font-weight: 400;
}
.mobile-menu-label { color: #8c8073; font-size: 11px; line-height: 16px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin: 14px 0 4px; }
.mobile-menu-actions { display: grid; gap: .75rem; padding-top: 1.25rem; }
.mobile-menu-actions .appointment-link, .mobile-menu-actions .phone-link { width: 100%; justify-content: center; }

.hero { min-height: calc(100svh - 5rem); position: relative; display: grid; align-items: start; color: #faf8f5; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: #2f2a24 center / cover no-repeat; transform-origin: center; animation: kenburns 18s ease-out infinite alternate; }
.hero-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.60)); }
.hero-content { position: relative; z-index: 1; padding-top: 75px; padding-bottom: 5rem; max-width: 1400px; margin-left: auto; margin-right: auto; }
.hero-title { margin: 24px 0 0; max-width: 1024px; font-size: clamp(3.8rem, 6.3vw, 88px); line-height: 1; letter-spacing: -1.76px; font-weight: 600; }
.hero .eyebrow { color: rgba(250,248,245,.8); font-weight: 500; }
.hero .lead { max-width: 576px; margin-top: 30px; color: rgba(250,248,245,.82); font-size: 18px; line-height: 29.25px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 40px; }
.hero .btn { min-height: 56px; padding-left: 32px; padding-right: 32px; font-size: 14px; }
.scroll-cue { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); color: rgba(255,250,244,.7); font-size: .68rem; letter-spacing: .35em; text-transform: uppercase; }
.scroll-cue:after { content: ""; display: block; width: 1px; height: 2.6rem; margin: .7rem auto 0; background: currentColor; }

.section { padding: 6rem 0; }
.section.alt { background: linear-gradient(180deg, var(--paper), #eee8de); }
.split { display: grid; gap: 3rem; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1px; border: 1px solid var(--border); background: var(--border); margin-top: 4rem; }
.feature-item { background: var(--paper); padding: 2rem; min-height: 221px; }
.feature-item .number { color: #8c8073; font-size: 30px; line-height: 36px; font-weight: 600; letter-spacing: 0; }
.feature-item h3 { margin: .65rem 0 .55rem; font-size: 1.6rem; letter-spacing: -.02em; }
.feature-item p { margin: 0; color: var(--stone); line-height: 1.65; }

.gallery-grid { display: grid; gap: 24px; margin-top: 4rem; }
.gallery-card { position: relative; height: 320px; overflow: hidden; background: var(--muted); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; color: #fff; font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.gallery-card:after { content: ""; position: absolute; inset: auto 0 0; height: 48%; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent); }
.gallery-caption { z-index: 1; }

.steps { display: grid; gap: 1px; margin-top: 3rem; background: var(--border); border: 1px solid var(--border); }
.step { background: var(--paper); padding: 2rem; min-height: 220px; }
.step .number { display: block; color: var(--ink); letter-spacing: 0; font-size: 48px; line-height: 48px; font-weight: 600; }
.step h3 { margin: 2rem 0 .75rem; font-size: 1.7rem; }
.step p { color: var(--stone); line-height: 1.65; margin: 0; }

.showroom-section { background: var(--ink); color: #faf8f5; padding: 96px 0; overflow: hidden; }
.showroom { display: grid; gap: 48px; align-items: center; }
.showroom-panel { color: #faf8f5; }
.showroom-panel .eyebrow { color: rgba(250,248,245,.55); }
.showroom-panel .lead { max-width: 448px; color: rgba(250,248,245,.75); font-size: 18px; line-height: 29.25px; }
.showroom-panel .section-title { max-width: 520px; margin-top: 16px; color: #faf8f5; font-size: clamp(2.25rem, 4.2vw, 60px); line-height: 1; letter-spacing: -1.2px; }
.showroom-list { display: grid; gap: .85rem; margin: 2rem 0; padding: 0; list-style: none; }
.showroom-list li { display: flex; gap: .75rem; align-items: center; }
.showroom-section .showroom-list { gap: 12px; margin: 32px 0 0; color: rgba(250,248,245,.85); font-size: 14px; line-height: 20px; }
.showroom-section .showroom-list li { gap: 12px; align-items: flex-start; }
.line-bullet { width: 24px; height: 1px; flex: 0 0 24px; margin-top: 10px; background: rgba(250,248,245,.4); }
.showroom-panel .hero-actions { margin-top: 40px; gap: 16px; }
.showroom-panel .btn { height: 56px; min-height: 56px; padding: 0 32px; gap: 12px; border-radius: 0; font-size: 14px; line-height: 20px; box-shadow: none; }
.showroom-panel .btn-brand { box-shadow: var(--shadow-brand); }
.showroom-panel .btn-ghost { border-color: rgba(250,248,245,.4); color: #faf8f5; }
.showroom-panel .btn .icon { width: 16px; height: 16px; }
.showroom-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; color: rgba(250,248,245,.65); font-size: 14px; line-height: 20px; }
.showroom-meta p { display: inline-flex; gap: 8px; align-items: center; margin: 0; }
.showroom-meta .icon { width: 16px; height: 16px; }
.showroom-media { margin: 0; }
.showroom-image { aspect-ratio: 4 / 3; height: auto; background: var(--muted); overflow: hidden; }
.showroom-image img { width: 100%; height: 100%; object-fit: cover; }
.ken-burns { animation: ken-burns 18s ease-out infinite alternate; }
.showroom-media figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: 16px; color: rgba(250,248,245,.6); font-size: 12px; line-height: 16px; letter-spacing: 2.4px; text-transform: uppercase; }

.quote-section { background: #faf8f5; color: var(--ink); }
.quote-section .lead { color: rgba(18,18,18,.68); }
.quote-section .showroom-list { gap: 16px; margin: 32px 0 0; color: #8c8073; font-size: 14px; line-height: 20px; }
.quote-section .showroom-list li { gap: 12px; align-items: flex-start; }
.quote-section .line-bullet { width: 32px; flex-basis: 32px; background: var(--ink); }
.quote-grid { display: grid; gap: 3rem; }
.quote-form { background: #efebe7; color: var(--ink); padding: 3rem; box-shadow: var(--shadow-card); }
.form-grid { display: grid; gap: 1rem; }
.field label { display: block; margin-bottom: .4rem; color: var(--stone); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--border); background: #fffaf4; color: var(--ink);
  min-height: 3rem; padding: .85rem 1rem; outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.choice-row { display: grid; gap: .75rem; }
.choice { min-height: 48px; border: 1px solid var(--border); background: #fffaf4; padding: 0 1rem; }
.choice.is-selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.field-project .choice-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-budget .choice-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.upload-box { border: 1px dashed var(--border); min-height: 5rem; display: grid; place-items: center; color: var(--stone); background: #fffaf4; cursor: pointer; text-align: center; }
.field .upload-box { display: grid; margin-bottom: 0; font-size: .88rem; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.upload-box input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-note { margin-top: 1rem; color: var(--stone); font-size: .88rem; }

.testimonials-section { background: #efebe7; }
.testimonial-heading { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 64px; }
.testimonial-heading > div:first-child { max-width: 672px; }
.testimonial-heading .section-title { font-size: clamp(2.25rem, 4.2vw, 60px); line-height: 1; letter-spacing: -1.2px; }
.testimonial-rating { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 16px; line-height: 24px; }
.testimonial-rating .star-icon { width: 20px; height: 20px; }
.testimonials { display: grid; gap: 1px; background: var(--border); }
.testimonial { min-height: 415px; display: flex; flex-direction: column; background: #faf8f5; padding: 40px; }
.stars { display: flex; gap: 4px; color: var(--ink); margin-bottom: 24px; }
.star-icon { width: 16px; height: 16px; }
.testimonial blockquote { margin: 0 0 auto; color: rgba(18,18,18,.78); font-size: 20px; line-height: 32px; }
.testimonial cite { display: block; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); font-style: normal; color: var(--ink); font-size: 14px; font-weight: 500; line-height: 20px; }
.testimonial cite span { display: block; margin-top: 4px; color: var(--stone); font-size: 12px; font-weight: 400; line-height: 16px; }
.faq-grid { display: grid; gap: 3rem; }
.faq-copy .lead { margin-top: 24px; color: var(--stone); }
.faq-list { margin-top: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; border: 0; background: transparent; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; text-align: left; font-size: 24px; font-weight: 500; line-height: 32px; letter-spacing: -0.48px; }
.faq-answer { display: none; color: var(--stone); line-height: 1.7; padding: 0 0 1.4rem; max-width: 820px; }
.faq-item.is-open .faq-answer { display: block; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform .2s var(--ease); }

.cta-band { background: var(--ink); color: #faf8f5; padding: 160px 0; }
.cta-inner { display: grid; justify-items: center; gap: 48px; text-align: center; }
.cta-inner .eyebrow { color: rgba(250,248,245,.55); }
.cta-inner h2 { max-width: 896px; margin: 24px auto 0; font-size: clamp(3rem, 6.1vw, 88px); line-height: 1; letter-spacing: -1.76px; }
.cta-inner .hero-actions { justify-content: center; margin-top: 0; }
.cta-inner .btn { height: 56px; min-height: 56px; padding: 0 32px; gap: 12px; border-radius: 0; box-shadow: none; }
.cta-inner .btn-brand { box-shadow: var(--shadow-brand); }
.cta-inner .btn-ghost { border-color: rgba(250,248,245,.4); color: #faf8f5; }
.btn-whatsapp { background: #20b657; border-color: #20b657; color: #fff; }
.btn-whatsapp:hover { opacity: .9; }
.site-footer { background: var(--ink); color: var(--paper); padding: 0 0 32px; }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo .brand-logo { color: #faf8f5; }
.footer-logo .brand-mark { filter: brightness(0) invert(1); }
.footer-col:first-child p { max-width: 390px; font-size: 18px; line-height: 29.25px; color: rgba(249,247,241,.78); }
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.footer-socials a { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; color: rgba(249,247,241,.78); }
.footer-socials .social-icon { width: 20px; height: 20px; }
.footer-col h3 { color: rgba(249,247,241,.55); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-col p, .footer-col li { color: rgba(249,247,241,.72); line-height: 1.7; }
.footer-col ul { padding: 0; list-style: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(249,247,241,.16); color: rgba(249,247,241,.55); font-size: .86rem; }
.floating-appointment {
  position: fixed; right: 24px; bottom: 24px; z-index: 80; min-height: 48px; height: 48px;
  padding: 0 20px; gap: 8px; border-radius: 999px; font-size: 14px; line-height: 20px; letter-spacing: .025em;
}

.page-hero { padding: 8rem 0 5rem; background: linear-gradient(180deg, var(--paper), #eee8de); }
.page-hero h1 { max-width: 900px; margin: 1rem 0; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -.04em; }
.page-content { padding: 5rem 0; line-height: 1.75; color: rgba(18,18,18,.78); }
.card-grid { display: grid; gap: 1.5rem; }
.project-card { background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.project-thumb { aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--muted), #d6cec2); overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-body { padding: 1.2rem; }

@keyframes reveal-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ken-burns { from { transform: scale(1.05); } to { transform: scale(1.18); } }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }
.reveal { animation: reveal-up .9s var(--ease) both; }

@media (min-width: 768px) {
  .container-x { padding: 0 2.5rem; }
  .section { padding: 8rem 0; }
  .split { grid-template-columns: 5fr 7fr; gap: 64px; }
  .showroom { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .showroom-panel { grid-column: span 5; }
  .showroom-media { grid-column: span 7; padding-left: 40px; }
  .faq-grid { grid-template-columns: 5fr 7.25fr; gap: 64px; align-items: start; }
  .quote-grid { grid-template-columns: 5fr 7.25fr; gap: 64px; align-items: start; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 32px; }
  .field-project, .field-budget, .field-upload, .field-message, .quote-form .btn[type="submit"] { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--border); }
  .feature-item { min-height: 237px; padding: 40px; border-right: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: repeat(12, 1fr); }
  .gallery-card { height: 461px; }
  .gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
  .gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
  .showroom-section { padding: 128px 0; }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .testimonials, .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .container-x { padding: 0 4rem; }
  .container-x.hero-content { padding: 75px 4rem 5rem; }
  .primary-nav, .header-actions { display: flex; }
  .mobile-toggle, .mobile-whatsapp { display: none; }
  .quote-form { padding: 48px; }
}
@media (max-width: 767px) {
  .header-inner { gap: .5rem; }
  .mobile-whatsapp { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--whatsapp); color: #fff; margin-left: auto; }
  .mobile-toggle { display: inline-flex; }
  .mobile-toggle[aria-expanded="true"] { opacity: 0; pointer-events: none; }
  .hero-content { padding-top: 120px; }
  .hero-title { max-width: 342px; font-size: 48px; line-height: 45.6px; letter-spacing: -0.96px; }
  .hero .lead { max-width: 342px; font-size: 18px; line-height: 29.25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .btn { width: auto; }
  .gallery-card { height: 506px; }
  .quote-form { padding: 32px; }
  .field-project .choice-row, .field-budget .choice-row { grid-template-columns: 1fr; }
  .floating-appointment { left: auto; right: 24px; justify-content: center; }
}
