/* ============ Baimin Granitos — Home (from Home.dc.html design) ============ */
* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  background: #0F0F0A;
  color: #F3F2EC;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #B7C98C; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.white-ico { filter: brightness(0) invert(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-solid { background: #5D9B5D; color: #fff; border: none; }
.btn-solid:hover { background: #6FAE6F; color: #fff; }
.btn-outline { background: transparent; color: #5D9B5D; border: 1px solid #5D9B5D; }
.btn-outline:hover { background: #5D9B5D; color: #fff; border-color: #5D9B5D; }

.nav-link {
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  color: #F3F2EC;
}
.nav-link:hover { color: #B7C98C; }
.nav-active { color: #B7C98C; }

.flink { cursor: pointer; }
.flink:hover { color: #B7C98C; }

/* Section kickers */
.section-kicker { color: #5D9B5D; margin-bottom: 44px; display: flex; align-items: center; gap: 10px; }
.section-kicker .rule { width: 22px; height: 1px; display: inline-block; }
.light-rule .rule { background: rgba(255,255,255,0.8); }
.green-rule .rule { background: #5D9B5D; }

.accent-italic { color: #B7C98C; font-style: italic; }
.accent-italic-green { color: #5D9B5D; font-style: italic; }

/* ============ Reveal (scroll) animation base ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}
.is-visible .reveal, .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d0 { transition-delay: 0s; }
.reveal.d1 { transition-delay: .15s; }
.reveal.d2 { transition-delay: .3s; }
.reveal.d3 { transition-delay: .45s; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 900px; background: #0c0c08; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-lens {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  clip-path: circle(0px at 0px 0px);
  transition: clip-path .25s ease-out;
}
.hero-lens-ring {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(183,201,140,0.85);
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity .25s ease;
  transform: translateZ(0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,6,0.55) 0%, rgba(10,10,6,0.15) 22%, rgba(10,10,6,0.25) 55%, rgba(8,8,5,0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.topbar { position: relative; z-index: 3; border-bottom: 1px solid rgba(255,255,255,0.12); }
.topbar-inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 22px;
  padding: 9px 40px;
  font-size: 11.5px;
  letter-spacing: .4px;
  color: rgba(243,242,236,0.85);
}
.topbar-sep { opacity: .5; }

.header {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 56px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 34px; }
.header-cta { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; flex-direction: column; gap: 6px; }
.lang-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 1px;
  color: rgba(243,242,236,0.55);
}
.lang-link svg { border-radius: 2px; flex-shrink: 0; }
.lang-link.active { color: #fff; }

/* ===== Mobile nav (hamburger) — wrapper is transparent on desktop ===== */
.header-menu { display: contents; }
.nav-toggle {
  display: none;
  position: relative; z-index: 41;
  width: 42px; height: 42px; padding: 0;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: #F3F2EC;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-content {
  position: relative; z-index: 3;
  padding-top: 190px; padding-bottom: 120px;
  display: flex; justify-content: flex-end;
}
.hero-box { max-width: 560px; text-align: center; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 54px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.35;
  color: #F3F2EC;
  margin-bottom: 26px;
}
.hero-para {
  font-size: 13.5px;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(243,242,236,0.85);
  margin: 0 auto 34px;
  max-width: 400px;
}
.hero-para strong { font-weight: 600; color: #fff; }

/* ============ STATS BAR ============ */
.stats { background: #12120C; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 44px 40px; }
.stat-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; cursor: pointer;
}
.stat-block.reveal {
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1), scale .35s cubic-bezier(.34,1.56,.64,1);
}
.stat-block.reveal.d1 { transition-delay: .12s, .12s, 0s; }
.stat-block.reveal.d2 { transition-delay: .24s, .24s, 0s; }
.stat-block.reveal.d3 { transition-delay: .36s, .36s, 0s; }
.is-visible .stat-block.reveal { transform: translateY(0); }
.stat-block:hover { scale: 1.06; }
.stat-block img { height: 24px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #fff; }
.stat-label { color: #5D9B5D; font-size: 10.5px; }

/* ============ CRAFTING ============ */
.craft { position: relative; min-height: 460px; overflow: hidden; }
.craft-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transform: scale(1);
  filter: brightness(1);
  transition: transform 1s cubic-bezier(.22,1,.36,1), filter .8s ease;
}
.craft-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 1s cubic-bezier(.22,1,.36,1);
}
.craft.hovered .craft-img { transform: scale(1.06); filter: brightness(1.08); }
.craft.hovered .craft-img-hover { opacity: 1; transform: scale(1.06); }
.craft-shade-x {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,6,0.88) 0%, rgba(10,10,6,0.62) 32%, rgba(10,10,6,0.08) 62%, rgba(10,10,6,0.02) 100%);
  pointer-events: none;
}
.craft-shade-y {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,6,0.22) 0%, rgba(10,10,6,0) 30%, rgba(10,10,6,0) 65%, rgba(8,8,5,0.62) 100%);
  pointer-events: none;
}
.craft-inner { position: relative; padding: 90px 40px; }
.craft-text { max-width: 460px; }
.craft-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 18px;
  color: #F3F2EC;
}
.craft-text p {
  font-size: 14px; line-height: 1.9; font-weight: 300;
  color: rgba(243,242,236,0.82);
  margin: 0 0 30px;
  max-width: 420px;
}
.craft-text strong { font-weight: 600; color: #fff; }

/* ============ OUR STONE ============ */
.stone { background: #0F0F0A; padding: 80px 0; }
.stone-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
@keyframes blockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.block-float { animation: blockFloat 5s ease-in-out infinite; will-change: transform; }
.block-float:hover { animation-play-state: paused; }
.stone-tilt-wrap { perspective: 1000px; }
.stone-tilt-img {
  width: 100%; display: block; cursor: pointer;
  transform-style: preserve-3d;
  opacity: 0;
  transform: rotateX(0deg) rotateY(0deg) scale(1) translateY(30px);
  transition: opacity 1s ease .1s, transform .6s ease-out, filter .4s ease;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}
.stone.is-visible .stone-tilt-img { opacity: 1; transform: rotateX(0deg) rotateY(0deg) scale(1) translateY(0); }
.stone-tilt-img.tilting { transition: opacity 1s ease .1s, transform .15s ease-out, filter .4s ease; filter: drop-shadow(0 42px 55px rgba(0,0,0,0.6)) brightness(1.08); }
.stone-text.reveal { transition-delay: .2s; }
.stone-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 38px;
  color: #B7C98C;
  margin: 0 0 8px;
}
.stone-sub { color: rgba(243,242,236,0.6); font-size: 11px; letter-spacing: 2px; margin-bottom: 26px; }
.stone-text p {
  font-size: 14px; line-height: 1.9; font-weight: 300;
  color: rgba(243,242,236,0.82);
  margin: 0 0 30px;
  max-width: 560px;
}
.stone-text strong { font-weight: 600; color: #fff; }
.stone-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-bottom: 38px;
  max-width: 560px;
}
.chk {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 400; cursor: pointer;
  color: rgba(243,242,236,0.9);
}
.chk img { height: 17px; }
.chk .chk-diamond { height: 15px; }
.chk.reveal {
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1), color .3s ease;
}
.stone.is-visible .chk.reveal { opacity: 1; transform: translateY(0) translateX(0) scale(1); transition-duration: .8s, .3s, .3s; }
.stone.is-visible .chk:nth-child(1) { transition-delay: .25s, 0s, 0s; }
.stone.is-visible .chk:nth-child(2) { transition-delay: .33s, 0s, 0s; }
.stone.is-visible .chk:nth-child(3) { transition-delay: .41s, 0s, 0s; }
.stone.is-visible .chk:nth-child(4) { transition-delay: .49s, 0s, 0s; }
.stone.is-visible .chk:nth-child(5) { transition-delay: .57s, 0s, 0s; }
.stone.is-visible .chk:nth-child(6) { transition-delay: .65s, 0s, 0s; }
.stone.is-visible .chk:hover { color: #B7C98C; transform: translateX(6px) scale(1.05); }

/* ============ THE QUARRY ============ */
.quarry { background: #EDEAE1; color: #201F1A; padding: 80px 0 60px; }
.quarry-wrap { position: relative; }
.quarry .section-kicker { position: relative; z-index: 1; }
.quarry-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 70px;
}
.quarry-text { position: relative; z-index: 1; }
.quarry-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.25;
  margin: 0 0 22px;
  color: #201F1A;
}
.quarry-text p {
  font-size: 14px; line-height: 1.9; font-weight: 300;
  color: rgba(32,31,26,0.75);
  margin: 0;
  max-width: 440px;
}
.quarry-text strong { font-weight: 600; }
.quarry-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.quarry-imgs img { cursor: pointer; background-color: #EDEAE1; display: block; }
.quarry-img-top {
  grid-column: 1 / 3;
  width: 100%; height: 200px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 14%, #000 38%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 14%, #000 38%);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1.4s ease, transform 1.6s cubic-bezier(.22,1,.36,1), scale .35s cubic-bezier(.34,1.56,.64,1);
}
.quarry-img-left {
  width: 100%; height: 150px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 26%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 26%, #000 62%);
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.4s ease .2s, transform 1.4s cubic-bezier(.22,1,.36,1) .2s, scale .35s cubic-bezier(.34,1.56,.64,1);
}
.quarry-img-right {
  width: 100%; height: 150px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.4s ease .4s, transform 1.4s cubic-bezier(.22,1,.36,1) .4s, scale .35s cubic-bezier(.34,1.56,.64,1);
}
.quarry.is-visible .quarry-img-top,
.quarry.is-visible .quarry-img-left,
.quarry.is-visible .quarry-img-right { opacity: 1; transform: translate(0, 0); }
.quarry-imgs img:hover { scale: 1.06; }
.bahia-silhouette {
  position: absolute;
  left: -28px; top: -43px;
  height: 450px; width: 420px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.quarry-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(32,31,26,0.12);
  border-bottom: 1px solid rgba(32,31,26,0.12);
  padding: 34px 0;
}
.qicon {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center; cursor: pointer;
}
.qicon.reveal {
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1), scale .35s cubic-bezier(.34,1.56,.64,1);
}
.qicon.reveal.d1 { transition-delay: .18s, .18s, 0s; }
.qicon.reveal.d2 { transition-delay: .36s, .36s, 0s; }
.quarry-icons.is-visible .qicon { opacity: 1; transform: translateY(0); }
.qicon:hover { scale: 1.06; }
.qicon img { height: 26px; }
.qicon:nth-child(2) img, .qicon:nth-child(3) img { height: 24px; }
.qicon-num { font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.qicon-title { font-size: 12px; margin-top: 2px; }
.qicon-label { font-size: 10px; color: rgba(32,31,26,0.55); }

/* ============ GLOBAL PRESENCE ============ */
.global { background: #EDEAE1; color: #201F1A; padding: 60px 0 110px; }
.global-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.global-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #201F1A;
}
.global-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #5D9B5D;
  margin-bottom: 24px;
}
.global-text p {
  font-size: 14px; line-height: 1.95; font-weight: 300;
  color: rgba(32,31,26,0.75);
  margin: 0 0 32px;
  max-width: 400px;
}
.global-text strong { font-weight: 600; }
.global-map {
  position: relative;
  width: 100%;
  cursor: pointer;
  transform-origin: center;
  opacity: 0;
  scale: 1;
  transition: opacity 1s ease .15s, scale .35s cubic-bezier(.34,1.56,.64,1);
}
.global.is-visible .global-map { opacity: 1; }
.global-map:hover { scale: 1.05; }
.global-map img { width: 100%; display: block; }
.global-map svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.map-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s ease;
}
.global.is-visible .map-line { stroke-dashoffset: 0; }
.map-dot {
  opacity: 0;
  transition: opacity .7s ease;
}
.global.is-visible .map-dot { opacity: 1; }

/* ============ DISCOVER CTA ============ */
.discover {
  position: relative;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.discover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.discover:hover .discover-img { transform: scale(1.08); }
.discover-shade { position: absolute; inset: 0; background: rgba(8,8,5,0.55); pointer-events: none; }
.discover-inner { position: relative; z-index: 2; text-align: center; padding: 56px 40px; }
.discover-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 34px;
  color: #F3F2EC;
  margin: 0 0 24px;
}
.discover-inner .reveal.d1 { transition-delay: .18s; }

/* ============ CONTACT ============ */
.contact { background: #0F0F0A; padding: 100px 0; overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.contact-text .section-kicker { margin-bottom: 34px; }
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.25;
  margin: 0 0 22px;
  color: #F3F2EC;
}
.contact-text p {
  font-size: 14.5px; line-height: 1.9; font-weight: 300;
  color: rgba(243,242,236,0.82);
  margin: 0 0 34px;
  max-width: 420px;
}
.contact-text strong { font-weight: 600; color: #fff; }
.contact-img-wrap { display: flex; justify-content: center; }
.contact-img {
  width: 100%; max-width: 440px; display: block;
  opacity: 0;
  transform: rotate(6deg) translateY(30px);
  transition: opacity 1.1s ease .15s, transform 1.2s cubic-bezier(.22,1,.36,1) .15s;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}
.contact.is-visible .contact-img { opacity: 1; transform: rotate(0deg) translateY(0); }

/* ============ FOOTER ============ */
.footer { background: #0A0A06; color: #F3F2EC; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 54px; margin-bottom: 18px; display: block; }
.footer-tagline {
  font-size: 13px; line-height: 1.8; font-weight: 300;
  color: rgba(243,242,236,0.65);
  margin: 0 0 16px;
  max-width: 220px;
}
.footer-since { font-size: 10.5px; color: #5D9B5D; }
.footer-head { color: #5D9B5D; margin-bottom: 20px; }
.footer-links {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13.5px; font-weight: 300;
  color: rgba(243,242,236,0.8);
}
.footer-links.contact-list { gap: 14px; }
.contact-list .flink { display: flex; align-items: center; gap: 10px; }
.contact-list .flink img { height: 14px; }
.contact-list .flink-top { align-items: flex-start; }
.contact-list .flink-top img { height: 15px; margin-top: 2px; }
.contact-list .flink[href^="https://maps"] img { height: 15px; }
.contact-list .flink[href^="https://instagram"] img { height: 15px; }
.footer-bar { height: 6px; background: linear-gradient(90deg, #5D9B5D, #A9BE7C); }

/* ============ Responsive (design is desktop-first) ============ */

/* ---- Shared: hamburger nav for tablet & mobile (≤980px) ---- */
@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .header, .ct-header { position: relative; padding: 16px 22px; }
  .header-logo img { height: 48px; }

  /* wrapper becomes a dropdown panel */
  .header-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(12,12,8,0.98);
    padding: 10px 22px 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 50px rgba(0,0,0,0.45);
    z-index: 40;
  }
  body.nav-open .header-menu { display: flex; }

  .header-menu .header-nav {
    flex-direction: column; align-items: stretch; gap: 0; width: 100%;
  }
  .header-menu .header-nav a,
  .header-menu .nav-link {
    display: block; width: 100%; padding: 15px 2px; font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-menu .header-cta {
    flex-direction: column; align-items: stretch; gap: 18px;
    width: 100%; margin-top: 20px;
  }
  .header-menu .header-cta .btn { width: 100%; }
  .header-menu .lang-switch { flex-direction: row; gap: 22px; }
}

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .hero { min-height: 760px; }
  .hero-content { justify-content: center; padding-top: 150px; padding-bottom: 90px; }
  .hero-box { margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stone-grid, .quarry-grid, .global-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .bahia-silhouette { display: none; }
  .contact-img-wrap { order: -1; }
  /* avoid horizontal overflow from side-slide reveals on narrow viewports */
  .quarry-img-left, .quarry-img-right { transform: translateY(24px); }
  .quarry.is-visible .quarry-img-left, .quarry.is-visible .quarry-img-right { transform: translate(0, 0); }
}

/* ---- Mobile (≤600px) ---- */
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .hero { min-height: 640px; }
  .hero-content { padding-top: 130px; padding-bottom: 70px; }
  .hero-title { font-size: 40px; letter-spacing: 5px; }
  .hero-sub { font-size: 22px; }
  .stats { }
  .stats-grid { grid-template-columns: 1fr; gap: 30px 0; padding: 40px 22px; }
  .craft-inner { padding: 64px 22px; }
  .craft-text h2 { font-size: 30px; }
  .stone, .quarry, .global, .contact { padding-left: 0; padding-right: 0; }
  .stone { padding: 60px 0; }
  .stone-checks { grid-template-columns: 1fr; }
  .stone-text h2, .quarry-text h2, .contact-text h2 { font-size: 32px; }
  .quarry-icons { grid-template-columns: 1fr; gap: 26px; }
  .quarry-imgs { grid-template-columns: 1fr 1fr; }
  .global-text h2 { font-size: 30px; }
  .discover-inner h2 { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 56px; }
}