:root {
  --ink: #171714;
  --charcoal: #23221f;
  --brown: #48372b;
  --muted: #6f6a60;
  --cream: #f7f4e9;
  --paper: #fffef9;
  --yellow: #f2a900;
  --yellow-deep: #d68f00;
  --line: rgba(23, 23, 20, 0.14);
  --radius: 0.35rem;
  --shadow: 0 1.4rem 4rem rgba(30, 25, 16, 0.14);
  --container: 74rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture { display: block; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid #0069c2;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section { padding: 5rem 0; }

.eyebrow {
  margin: 0 0 0.8rem;
  color: #8b5c00;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light { color: #ffc53d; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 10vw, 5.8rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 span { color: #805600; }

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h3 { font-size: clamp(1.45rem, 4vw, 2rem); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy { display: grid; line-height: 1; }

.brand-copy span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-copy strong {
  margin-top: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
}

.menu-toggle {
  min-width: 3.5rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle > span:first-child,
.menu-toggle > span:first-child::before,
.menu-toggle > span:first-child::after {
  width: 0.9rem;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-toggle > span:first-child { position: relative; }
.menu-toggle > span:first-child::before { position: absolute; top: -0.3rem; }
.menu-toggle > span:first-child::after { position: absolute; top: 0.3rem; }
.menu-toggle[aria-expanded="true"] > span:first-child { background: transparent; }
.menu-toggle[aria-expanded="true"] > span:first-child::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:first-child::after { top: 0; transform: rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 4.75rem 0 auto;
  display: none;
  padding: 1.25rem 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.main-nav.is-open { display: grid; }

.no-js .menu-toggle { display: none; }

.no-js .main-nav {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 1rem;
  padding: 0.5rem 0 1rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.no-js .header-inner { flex-wrap: wrap; }

.main-nav > a:not(.button) {
  min-height: 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-dark { border-color: var(--ink); color: #fff; background: var(--ink); }
.button-small { min-height: 2.75rem; padding: 0.65rem 1rem; font-size: 0.72rem; }

.button:focus-visible { background: #ffc33d; transform: translateY(-2px); }
.button-dark:focus-visible { color: var(--ink); background: var(--yellow); }

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 3.5rem 0 0;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: -4rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  border: 3rem solid rgba(242, 169, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(23,23,20,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,20,0.07) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-layout { position: relative; }
.hero-copy { position: relative; z-index: 2; }

.hero-lead {
  max-width: 40rem;
  margin-bottom: 1.6rem;
  color: #4c4942;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.25rem 0 2rem;
  padding: 1.2rem 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.hero-facts li { padding: 0 0.55rem; border-right: 1px solid var(--line); }
.hero-facts li:first-child { padding-left: 0; }
.hero-facts li:last-child { border: 0; }
.hero-facts strong { display: block; font-size: clamp(1.25rem, 5vw, 2rem); line-height: 1; }
.hero-facts span { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.7rem; line-height: 1.25; }

.hero-media { position: relative; margin-inline: -1rem; }
.hero-photo { margin: 0; background: var(--charcoal); }
.hero-photo img { width: 100%; height: auto; }

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(13rem, 58%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  color: #fff;
  background: rgba(23, 23, 20, 0.94);
  box-shadow: var(--shadow);
}

.hero-badge > span { color: var(--yellow); font-size: 1.4rem; }
.hero-badge p { margin: 0; font-size: 0.75rem; line-height: 1.25; }
.hero-badge strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; font-style: italic; }

.service-marquee { overflow: hidden; color: var(--ink); background: var(--yellow); }

.service-marquee .container {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  white-space: nowrap;
}

.service-marquee span { font-size: clamp(0.8rem, 3vw, 1.1rem); font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.service-marquee i { width: 0.35rem; height: 0.35rem; flex: 0 0 auto; border-radius: 50%; background: var(--ink); }

.section-heading { display: grid; gap: 0.5rem; margin-bottom: 2.25rem; }
.section-heading h2 { max-width: 15ch; }
.section-heading > p { max-width: 34rem; color: var(--muted); }

.service-grid { display: grid; gap: 1rem; }

.service-card {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card-featured { background: var(--yellow); }
.service-card-dark { color: #fff; background: var(--brown); }
.card-number { font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; }
.service-card h3 { max-width: 12ch; margin-bottom: 1rem; text-transform: uppercase; }
.service-card p { margin-bottom: 1.4rem; color: var(--muted); }
.service-card-featured p { color: #3f321c; }
.service-card-dark p { color: #ded6cc; }
.service-card a { font-size: 0.78rem; font-weight: 850; letter-spacing: 0.04em; text-underline-offset: 0.3rem; text-transform: uppercase; }

.materials-section { background: var(--cream); }
.materials-layout { display: grid; gap: 2.5rem; }
.materials-media { position: relative; }
.materials-media picture { position: relative; }
.materials-media::before { position: absolute; inset: -0.65rem 1rem 1rem -0.65rem; border: 2px solid var(--yellow); content: ""; }
.materials-media img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow); }
.image-label { position: absolute; right: -0.4rem; bottom: 1rem; padding: 0.7rem 1rem; color: var(--ink); background: var(--yellow); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.materials-copy > p:not(.eyebrow) { color: var(--muted); }

.product-list { margin: 2rem 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.product-list li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.product-list span { font-weight: 800; }
.product-list small { color: var(--muted); font-size: 0.7rem; text-align: right; }

.experience-section { overflow: hidden; color: #fff; background: var(--charcoal); }
.experience-layout { display: grid; gap: 2.5rem; }
.experience-copy > p:not(.eyebrow) { max-width: 42rem; color: #c8c5bc; }
.experience-points { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.18); }
.experience-points > div { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.experience-points span { color: var(--yellow); font-size: 0.72rem; font-weight: 800; }
.experience-points p { margin: 0; color: #c8c5bc; }
.experience-points strong { display: block; color: #fff; }
.experience-media { margin: 0; }
.experience-media picture { overflow: hidden; }
.experience-media img { width: 100%; aspect-ratio: 1; border: 0.65rem solid #fff; object-fit: cover; transform: rotate(1.6deg); }
.experience-media figcaption { margin-top: 1rem; color: #c8c5bc; font-size: 0.75rem; text-align: right; }

.complementary-grid { display: grid; gap: 1rem; }
.image-card { position: relative; min-height: 27rem; overflow: hidden; background: var(--ink); }
.image-card::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,15,12,0.95), rgba(17,15,12,0.04) 70%); content: ""; }
.image-card picture { position: absolute; inset: 0; }
.image-card img { width: 100%; height: 100%; min-height: 27rem; object-fit: cover; transition: transform 350ms ease; }
.image-card div { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; color: #fff; }
.image-card span { color: #ffd15b; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.image-card h3 { margin: 0.35rem 0; text-transform: uppercase; }
.image-card p { margin: 0; color: #e2ded5; }

.projects-section { background: var(--cream); }
.projects-heading { align-items: end; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.project-card { position: relative; min-height: 13rem; overflow: hidden; background: var(--charcoal); }
.project-card picture { position: absolute; inset: 0; }
.project-card img { width: 100%; height: 100%; min-height: 13rem; object-fit: cover; transition: transform 300ms ease, opacity 300ms ease; }
.project-card:focus-visible img { opacity: 0.78; transform: scale(1.025); }
.project-card span { position: absolute; right: 0.5rem; bottom: 0.5rem; left: 0.5rem; padding: 0.65rem; color: #fff; background: rgba(23,23,20,0.86); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.project-card-wide { grid-column: 1 / -1; min-height: 20rem; }
.project-card-wide img { min-height: 20rem; }

.news-section { background: var(--paper); }
.news-heading { margin-bottom: 2rem; }
.news-grid { display: grid; gap: 1rem; }

.news-empty {
  min-height: 17rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--cream);
}

.news-empty > div { min-width: 0; }

.news-empty-mark {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-style: italic;
}

.news-empty h3 { margin-bottom: 0.6rem; text-transform: uppercase; }
.news-empty p:last-child { max-width: 44rem; margin-bottom: 0; color: var(--muted); }

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:focus-within { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card > a { height: 100%; display: flex; flex-direction: column; text-decoration: none; }
.news-card-media { overflow: hidden; aspect-ratio: 16 / 10; background-color: var(--brown); }

.news-card-media.no-image {
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(242,169,0,0.5) 47% 53%, transparent 54%),
    linear-gradient(135deg, transparent 46%, rgba(255,255,255,0.12) 47% 53%, transparent 54%);
  background-size: 3rem 3rem;
}

.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.news-card:focus-within .news-card-media img { transform: scale(1.03); }
.news-card-body { flex: 1; padding: 1.25rem; }
.news-card time { display: block; margin-bottom: 0.7rem; color: #805600; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 0.7rem; font-size: 1.4rem; text-transform: uppercase; }
.news-card p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }
.news-blog-link { margin-top: 1.5rem; }
.news-blog-link[hidden] { display: none; }

.faq-layout { display: grid; gap: 2.5rem; }
.faq-intro > p:not(.eyebrow) { max-width: 30rem; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #8b5c00; font-size: 1.5rem; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 48rem; padding: 0 2.5rem 1.35rem 0; color: var(--muted); }

.contact-section { padding: 5rem 0; color: #fff; background: var(--brown); }
.contact-layout { display: grid; gap: 2.5rem; }
.contact-copy h2 { max-width: 15ch; }
.contact-copy > p:not(.eyebrow) { max-width: 38rem; color: #e1d8ce; }
.contact-card { padding: 1.35rem; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.contact-block { display: grid; gap: 0.4rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border: 0; }
.contact-block > span { color: #8b5c00; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-block address { font-style: normal; }
.contact-block a { width: fit-content; min-height: 2.5rem; display: flex; align-items: center; gap: 0.5rem; font-weight: 750; text-underline-offset: 0.25rem; }
.contact-block .phone-primary { font-size: 1.3rem; font-weight: 850; }
.contact-block small { padding: 0.18rem 0.45rem; border-radius: 99px; color: var(--ink); background: var(--yellow); font-size: 0.58rem; text-transform: uppercase; }

.map-panel { margin-top: 3rem; }
.map-heading { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.map-heading h3 { max-width: 20ch; margin-bottom: 0; font-size: clamp(1.7rem, 5vw, 2.6rem); text-transform: uppercase; }
.map-heading a { width: fit-content; min-height: 2.75rem; display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-size: 0.78rem; font-weight: 850; text-underline-offset: 0.3rem; text-transform: uppercase; }
.map-frame { overflow: hidden; border: 0.5rem solid var(--paper); background: var(--cream); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: clamp(22rem, 58vw, 32.5rem); display: block; border: 0; }

.footer {
  padding: 2.5rem 0 6.5rem;
  color: rgba(255,255,255,0.75);
  background: var(--ink);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo img {
  width: auto;
  height: 48px;
  border-radius: var(--radius);
  object-fit: contain;
  opacity: 0.9;
}

.footer-info { flex: 1; }

.footer-info p {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-links a:focus-visible { color: #fff; }

.studio-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  text-decoration: none !important;
  transition: transform 0.5s ease;
}

.studio-link:focus-visible { transform: scale(1.05); }

.studio-link-label {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.5s ease;
}

.studio-link:focus-visible .studio-link-label { color: #10b981; }

.studio-link-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 9999px;
  background-color: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(4px);
  transition: border-color 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}

.studio-link:focus-visible .studio-link-badge {
  border-color: rgba(16, 185, 129, 0.4);
  background-color: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.studio-link-icon {
  color: #10b981;
  animation: studio-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.studio-link-name {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.studio-link .text-emerald { color: #10b981; }

@keyframes studio-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mobile-whatsapp {
  position: fixed;
  z-index: 90;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 0.7rem 2rem rgba(0,0,0,0.23);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.whatsapp-dialog {
  width: min(34rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.whatsapp-dialog::backdrop { background: rgba(23, 23, 20, 0.76); }

.whatsapp-dialog-card {
  position: relative;
  padding: 1.5rem;
  border-top: 0.45rem solid var(--yellow);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.whatsapp-dialog-card h2 { max-width: 15ch; margin-bottom: 0.75rem; font-size: clamp(1.8rem, 7vw, 2.8rem); }
.whatsapp-dialog-card > p:not(.eyebrow) { margin-bottom: 1.25rem; color: var(--muted); }

.whatsapp-dialog-close {
  min-height: 2.75rem;
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.whatsapp-choice-list { display: grid; gap: 0.75rem; }
.whatsapp-choice-list .button { width: 100%; justify-content: space-between; }
.whatsapp-choice-list small { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (hover: hover) {
  .button:hover { background: #ffc33d; transform: translateY(-2px); }
  .button-dark:hover { color: var(--ink); background: var(--yellow); }
  .image-card:hover img { transform: scale(1.025); }
  .project-card:hover img { opacity: 0.78; transform: scale(1.025); }
  .news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .news-card:hover .news-card-media img { transform: scale(1.03); }
  .footer-links a:hover { color: #fff; }
  .studio-link:hover { transform: scale(1.05); }
  .studio-link:hover .studio-link-label { color: #10b981; }
  .studio-link:hover .studio-link-badge {
    border-color: rgba(16, 185, 129, 0.4);
    background-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  }
}

@media (min-width: 42rem) {
  .container { width: min(100% - 3rem, var(--container)); }
  .section { padding: 6.5rem 0; }
  .hero { padding-top: 5rem; }
  .hero-media { margin-inline: 0; }
  .section-heading { grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr); align-items: end; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: 1 / -1; min-height: 18rem; }
  .materials-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: center; }
  .experience-layout { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr); align-items: center; }
  .complementary-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .project-card-wide { grid-column: span 2; grid-row: span 2; }
  .project-card-wide, .project-card-wide img { min-height: 100%; }
  .news-grid:has(.news-card) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-empty { grid-column: 1 / -1; grid-template-columns: 4.5rem 1fr; padding: 2.5rem; }
  .faq-layout { grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr); }
  .contact-layout { grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr); align-items: center; }
  .map-heading { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
}

@media (min-width: 48rem) {
  .footer { padding-bottom: 2.5rem; }
  .footer-content { flex-direction: row; align-items: center; gap: 2rem; }
  .footer-links { gap: 1.5rem; }
  .footer-links a { min-height: auto; padding: 0; }
  .studio-link { margin-top: 0; }
}

@media (min-width: 62rem) {
  .site-header { position: absolute; width: 100%; background: rgba(247,244,233,0.9); }
  .header-inner { min-height: 5.5rem; }
  .menu-toggle { display: none; }
  .main-nav { position: static; display: flex; align-items: center; gap: 1.3rem; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .main-nav > a:not(.button) { min-height: 2.75rem; border: 0; font-size: 0.78rem; }
  .hero { min-height: 49rem; padding: 9.5rem 0 4rem; }
  .hero-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr); align-items: center; gap: 4rem; }
  .hero-facts { margin-bottom: 0; }
  .hero-media::before { position: absolute; z-index: -1; inset: 2.5rem -1.5rem -1.5rem 2.5rem; background: var(--yellow); content: ""; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card-featured { grid-column: auto; }
  .service-card:nth-child(2) { margin-top: 2.5rem; }
  .service-card:nth-child(3) { margin-top: 5rem; }
  .materials-layout { gap: 5rem; }
  .experience-layout { gap: 5rem; }
  .mobile-whatsapp { right: 1.25rem; bottom: 1.25rem; left: auto; width: auto; padding-inline: 1.2rem; }
}

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

@media (forced-colors: active) {
  .button, .mobile-whatsapp, .hero-badge, .image-label { border: 2px solid ButtonText; }
}
