:root {
  --ink: #111214;
  --ink-soft: #202124;
  --paper: #f7f7f4;
  --white: #ffffff;
  --mist: #e9e9e4;
  --line: rgba(17, 18, 20, 0.14);
  --gold: #c79a3b;
  --gold-light: #efd284;
  --gold-dark: #8f651f;
  --green: #1f9d61;
  --shadow: 0 28px 70px rgba(17, 18, 20, 0.14);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--ink);
  color: #f2e5c3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-block; width: 238px; text-decoration: none; }
.brand img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.91rem;
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after { right: 0; }

.nav-cta {
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switch button {
  border: 0;
  background: transparent;
  padding: 5px;
  cursor: pointer;
  opacity: 0.45;
}
.language-switch button.active { color: var(--gold-dark); opacity: 1; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17,18,20,0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(17,18,20,0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199,154,59,0.28);
  border-radius: 50%;
  left: -330px;
  top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-block: 72px 84px;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow, .overline {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 { max-width: 720px; font-size: clamp(3.25rem, 6.3vw, 6.35rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
h3 { line-height: 1.2; }

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: #4f5053;
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  line-height: 1.72;
}

.hero-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(199,154,59,0.4);
  outline-offset: 3px;
}
.button-gold {
  color: #18140b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(143,101,31,0.22);
}
.button-ghost { border-color: var(--line); background: rgba(255,255,255,0.55); }
.button-dark { color: var(--white); background: var(--ink); }
.button-whatsapp { color: var(--white); background: #167f50; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-row div { display: grid; gap: 1px; }
.trust-row strong { font-family: Georgia, serif; font-size: 1.1rem; }
.trust-row span { color: #6b6c6f; font-size: 0.82rem; }

.hero-visual {
  position: relative;
  min-height: 570px;
  border-radius: 170px 18px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d8d8d3;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,18,20,0.42));
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center 42%;
}

.photo-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(17,18,20,0.74);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 13px;
}
.badge-line { width: 34px; height: 2px; background: var(--gold-light); }
.photo-badge div { display: grid; }
.photo-badge small { color: rgba(255,255,255,0.72); }

.quick-contact { color: var(--white); background: var(--ink); }
.quick-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.quick-title, .contact-chip { padding: 28px 30px; background: var(--ink); }
.quick-title { display: grid; align-content: center; }
.quick-title .overline { margin-bottom: 3px; color: var(--gold-light); }
.quick-title strong { font-family: Georgia, serif; font-size: 1.25rem; }
.contact-chip { display: grid; text-decoration: none; transition: background 170ms ease; }
.contact-chip:hover { background: var(--ink-soft); }
.chip-label { color: var(--gold-light); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-chip strong { font-size: 1.3rem; }
.chip-action { color: rgba(255,255,255,0.62); font-size: 0.82rem; }

.section { padding-block: clamp(84px, 10vw, 140px); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading h2 { max-width: 790px; }
.section-heading > p { margin: 0; color: #646568; }

.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border: 1px solid rgba(199,154,59,0.34);
  border-radius: 50%;
}
.service-featured { color: var(--white); background: var(--ink); }
.service-number { color: var(--gold); font-family: Georgia, serif; font-size: 2.8rem; }
.service-rule { width: 100%; height: 1px; margin: 18px 0 28px; background: currentColor; opacity: 0.15; }
.service-card h3 { margin: 0 0 15px; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; }
.service-card p { margin: 0; color: #626366; }
.service-featured p { color: rgba(255,255,255,0.7); }
.text-link {
  width: fit-content;
  margin-top: auto;
  padding: 20px 0 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.service-featured .text-link { color: var(--gold-light); }

.mirror-showcase { background: #e9eceb; }
.mirror-showcase .shelving-card { border-color: rgba(17,18,20,0.14); }
.shelving-showcase { background: #f1ece2; }
.shelving-heading { margin-bottom: 44px; }
.shelving-layout-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.shelving-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(143,101,31,0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(17,18,20,0.08);
}
.shelving-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dedbd4;
  cursor: zoom-in;
}
.shelving-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(17,18,20,0.55));
}
.shelving-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.shelving-image:hover img { transform: scale(1.025); }
.image-action { position: absolute; z-index: 2; right: 18px; bottom: 15px; color: var(--white); font-size: 0.8rem; font-weight: 800; }
.shelving-card-content { padding: 30px; }
.shelving-title-row { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.shelving-title-row .eyebrow { margin-bottom: 7px; }
.shelving-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 500; }
.shelving-card-content > p { margin: 18px 0 0; color: #626366; }
.shelving-card .text-link { margin-top: 10px; }
.shelving-spec { flex: 0 0 auto; padding: 7px 11px; color: #2b2112; background: var(--gold-light); border-radius: 999px; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.05em; }
.visual-disclaimer { margin: 18px 0 0; color: #706b62; font-size: 0.78rem; text-align: right; }

.portfolio { background: #ecece7; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.gallery-item {
  grid-column: span 4;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #d2d2cd;
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  color: var(--white);
  font-weight: 800;
  text-align: left;
}

.process { color: var(--white); background: var(--ink); }
.process-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr); gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro .eyebrow { color: var(--gold-light); }
.process-intro p:not(.eyebrow) { max-width: 560px; margin: 26px 0 0; color: rgba(255,255,255,0.68); }
.process-intro .button { margin-top: 30px; color: var(--ink); background: var(--white); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.16); }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.steps > li > span { color: var(--gold-light); font-family: Georgia, serif; font-size: 1.5rem; }
.steps h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.steps p { margin: 0; color: rgba(255,255,255,0.63); }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1fr); gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { margin: 26px 0 0; color: #626366; }
.contact-methods { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--line); }
.contact-methods a { display: grid; padding: 16px 0; text-decoration: none; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.contact-methods span { color: var(--gold-dark); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-methods strong { font-size: 1.05rem; }

.estimate-form { padding: clamp(24px, 4vw, 44px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(17,18,20,0.08); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.estimate-form > label, .field-grid label { display: grid; gap: 7px; margin-bottom: 18px; }
.estimate-form label > span, .estimate-form legend { font-size: 0.87rem; font-weight: 800; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17,18,20,0.18);
  border-radius: 10px;
  padding: 13px 14px;
}
.estimate-form input, .estimate-form select { min-height: 51px; }
.estimate-form textarea { resize: vertical; min-height: 130px; }
.estimate-form input:user-invalid, .estimate-form select:user-invalid, .estimate-form textarea:user-invalid { border-color: #a63a2b; }
.estimate-form fieldset { display: flex; gap: 22px; margin: 5px 0 0; padding: 0; border: 0; }
.estimate-form legend { margin-bottom: 7px; }
.radio { display: inline-flex !important; grid-template-columns: auto auto; align-items: center; gap: 8px !important; margin: 0 !important; }
.radio input { width: 17px; height: 17px; min-height: 0; accent-color: var(--gold-dark); }
.form-note { margin: 14px 0 0; color: #747578; font-size: 0.78rem; }
.form-status { min-height: 24px; margin: 8px 0 0; color: #236b47; font-weight: 700; }

.hours-section { background: var(--paper); }
.hours-grid { display: grid; grid-template-columns: 1fr 0.75fr 0.75fr; gap: 18px; align-items: stretch; }
.hours-grid > div:first-child { padding-right: 45px; }
.hours-grid > div:first-child p:not(.eyebrow) { color: #656669; }
.hours-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.hours-card-dark { color: var(--white); background: var(--ink); }
.hours-card h3 { margin: 0 0 26px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid currentColor; }
.hours-card dt { opacity: 0.66; }
.hours-card dd { margin: 0; font-weight: 800; white-space: nowrap; }

.final-cta { padding-block: 70px; background: linear-gradient(130deg, #252018, #0f1012 55%); color: var(--white); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.final-cta .eyebrow { color: var(--gold-light); }
.final-cta h2 { max-width: 820px; font-size: clamp(2.3rem, 4vw, 4rem); }
.final-cta .button { flex: 0 0 auto; }

.site-footer { padding: 70px 0 100px; background: #090a0b; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 70px; }
.footer-brand img { width: 265px; filter: invert(1) grayscale(1) brightness(3); }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,0.58); }
.footer-grid h3 { margin: 0 0 15px; color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { width: fit-content; color: rgba(255,255,255,0.72); text-decoration: none; overflow-wrap: anywhere; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.48); font-size: 0.82rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}
.mobile-contact-bar { display: none; }

.lightbox {
  width: min(820px, calc(100% - 30px));
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
}
.lightbox::backdrop { background: rgba(0,0,0,0.82); backdrop-filter: blur(5px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; background: #090909; }
.lightbox figcaption { padding: 14px 20px; text-align: center; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; background: rgba(0,0,0,0.62); color: var(--white); cursor: pointer; font-size: 1.7rem; line-height: 1; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 16px; }
  .brand { width: 205px; }
  .site-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 45px; }
  .hero-visual, .hero-visual > img { min-height: 520px; }
  .contact-layout { gap: 55px; }
  .process-grid { gap: 60px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 28px, 720px); }
  html { scroll-padding-top: 96px; }
  .announcement { font-size: 0.68rem; letter-spacing: 0.07em; }
  .announcement-inner { min-height: 34px; gap: 7px; }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto auto; }
  .brand { width: 190px; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { width: 23px; height: 2px; display: block; background: var(--ink); transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 102px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 28px;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }
  .site-nav.open { transform: translateX(0); visibility: visible; }
  .site-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.4rem; }
  .site-nav .nav-cta { margin-top: 20px; padding: 14px 18px; text-align: center; border: 0; }
  .language-switch { padding-left: 8px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-block: 66px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { min-height: 640px; border-radius: 120px 16px 16px 16px; }
  .hero-visual > img { min-height: 640px; }
  .quick-contact-grid { grid-template-columns: 1fr 1fr; }
  .quick-title { grid-column: 1 / -1; text-align: center; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .shelving-card-content { padding: 26px; }
  .gallery { grid-auto-rows: 230px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.gallery-wide { grid-column: span 12; }
  .process-grid, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .process-intro, .contact-copy { position: static; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .hours-grid > div:first-child { grid-column: 1 / -1; padding-right: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 26px); --radius: 17px; }
  body { padding-bottom: 62px; }
  .announcement-inner span:nth-of-type(2), .announcement-inner span:nth-of-type(3), .announcement-inner span:nth-of-type(4), .announcement-inner span:nth-of-type(5) { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .brand { width: 168px; }
  .language-switch { font-size: 0.76rem; }
  .site-nav { top: 102px; }
  .hero-grid { padding-block: 52px 60px; }
  h1 { font-size: clamp(3.05rem, 15.5vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 11.5vw, 3.35rem); }
  .hero-lede { font-size: 1.04rem; }
  .hero-actions .button, .form-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .trust-row strong { font-size: 0.96rem; }
  .trust-row span { font-size: 0.7rem; }
  .hero-visual, .hero-visual > img { min-height: 500px; }
  .hero-visual { border-radius: 90px 14px 14px 14px; }
  .photo-badge { right: 13px; bottom: 13px; left: 13px; }
  .quick-contact-grid { grid-template-columns: 1fr; }
  .quick-title { grid-column: auto; }
  .quick-title, .contact-chip { padding: 23px 20px; }
  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 38px; }
  .service-card { padding: 26px; }
  .shelving-layout-grid { grid-template-columns: 1fr; }
  .shelving-image { aspect-ratio: 1.14 / 1; }
  .shelving-card-content { padding: 24px 20px 26px; }
  .visual-disclaimer { text-align: left; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; gap: 9px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: span 1; }
  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: 1 / -1; }
  .gallery-item span { left: 13px; right: 13px; bottom: 12px; font-size: 0.82rem; }
  .process-grid { gap: 42px; }
  .steps li { grid-template-columns: 40px 1fr; gap: 12px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .estimate-form { padding: 22px 18px; }
  .estimate-form fieldset { flex-wrap: wrap; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-grid > div:first-child { grid-column: auto; }
  .hours-card { padding: 24px 20px; }
  .hours-card dl div { font-size: 0.9rem; }
  .final-cta-inner { display: grid; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.35fr;
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
  }
  .mobile-contact-bar a { display: grid; place-items: center; color: var(--white); text-decoration: none; font-size: 0.82rem; font-weight: 800; border-right: 1px solid rgba(255,255,255,0.14); }
  .mobile-contact-bar a:last-child { color: #18140b; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: 0; }
  .lightbox { width: calc(100% - 18px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
