:root {
  --bg: #f8f4ee;
  --bg-secondary: #efe5d8;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fffdf9;
  --surface-soft: #f7f1e9;
  --line: rgba(116, 89, 56, 0.12);
  --line-strong: rgba(116, 89, 56, 0.2);
  --text: #271d14;
  --muted: #6d5b49;
  --accent: #b88b5d;
  --accent-deep: #8c6540;
  --shadow: 0 24px 60px rgba(65, 45, 23, 0.12);
  --shadow-soft: 0 18px 42px rgba(65, 45, 23, 0.09);
  --success: #2d8a57;
  --whatsapp: #25d366;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(225, 204, 178, 0.5), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f8f2ea 45%, #f3eadf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.5), transparent 18%);
  z-index: -2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
input,
textarea,
select {
  outline: none;
}

input,
textarea,
select {
  border: 1px solid rgba(116, 89, 56, 0.16);
}

main,
section,
footer,
header {
  position: relative;
}

[id] {
  scroll-margin-top: 112px;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.mini-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(140, 101, 64, 0.38);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.45rem, 4.55vw, 4.25rem);
  line-height: 0.98;
  font-weight: 700;
  max-width: 9ch;
}

h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease;
}

.site-header.scrolled {
  background: rgba(249, 244, 236, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(111, 86, 56, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(65, 45, 23, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  flex: 0 1 auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.92);
  color: var(--text);
}

.hero-section {
  min-height: 96vh;
  display: flex;
  align-items: stretch;
  padding: 28px 0 92px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 18px;
  border-radius: 42px;
}

.hero-image {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-overlay {
  background:
    linear-gradient(92deg, rgba(24, 16, 10, 0.86) 0%, rgba(24, 16, 10, 0.72) 34%, rgba(24, 16, 10, 0.3) 58%, rgba(24, 16, 10, 0.48) 100%),
    radial-gradient(circle at 22% 42%, rgba(255, 99, 41, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(96vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.76fr);
  align-items: end;
  gap: 38px;
  padding-top: 96px;
}

.hero-copy {
  color: #fff8f1;
  padding: 34px 34px 30px;
  max-width: 720px;
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgba(20, 14, 10, 0.58), rgba(20, 14, 10, 0.2));
  border: 1px solid rgba(255, 244, 230, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(16, 10, 6, 0.18);
}

.hero-copy .eyebrow,
.hero-copy .mini-label {
  color: #ffd7c8;
}

.hero-copy .eyebrow::before {
  background: rgba(255, 145, 92, 0.6);
}

.hero-copy h1 {
  color: #fff7f0;
  text-shadow: 0 10px 30px rgba(11, 8, 5, 0.28);
}

.hero-text {
  margin-top: 22px;
  max-width: 560px;
  font-size: 1.04rem;
}

.hero-copy .hero-text {
  color: rgba(255, 244, 230, 0.86);
  text-shadow: 0 4px 18px rgba(11, 8, 5, 0.18);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #291d12;
  background: linear-gradient(135deg, #f6ead9 0%, #debf97 100%);
  box-shadow: 0 18px 34px rgba(33, 23, 12, 0.18);
}

.button-secondary {
  color: #fff9f2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 244, 230, 0.3);
  backdrop-filter: blur(16px);
}

.button-light {
  color: #fff6ed;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 244, 230, 0.22);
}

.button-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(116, 89, 56, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-stats article,
.service-card,
.process-card,
.project-card,
.detail-card,
.feature-line,
.timeline-item {
  border: 1px solid var(--line);
}

.hero-stats article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.hero-stats span {
  display: block;
  color: rgba(255, 244, 230, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.glass-card {
  background: rgba(255, 250, 244, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 34px;
  border-radius: 30px;
  align-self: center;
}

.hero-panel p {
  margin-top: 16px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.hero-checks span,
.project-pills span,
.chip-group span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(116, 89, 56, 0.12);
  color: var(--text);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 600;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after,
.project-card-link:hover .text-link::after {
  transform: translateX(4px);
}

.trust-strip {
  margin-top: -24px;
  padding-bottom: 16px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(116, 89, 56, 0.1);
  box-shadow: var(--shadow-soft);
}

.trust-strip-inner span {
  color: var(--text);
  font-size: 0.92rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: 46px;
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.feature-points {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.feature-points article {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.8);
  border: 1px solid rgba(116, 89, 56, 0.08);
}

.feature-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.image-card,
.project-image,
.project-hero-media,
.detail-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.image-card {
  position: relative;
  min-height: 620px;
}

.image-card img,
.project-image img,
.project-hero-media img,
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  border-radius: 24px;
}

.image-card-note strong {
  display: block;
  margin-bottom: 8px;
}

.service-grid,
.expertise-grid,
.project-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.service-grid,
.expertise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-card,
.expertise-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover,
.expertise-card:hover,
.process-card:hover,
.project-card:hover,
.feature-line:hover,
.timeline-item:hover,
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(65, 45, 23, 0.11);
  border-color: rgba(140, 101, 64, 0.18);
}

.service-index {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(140, 101, 64, 0.6);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.showcase-section {
  padding-top: 14px;
}

.expertise-section {
  padding-top: 18px;
}

.expertise-card {
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 99, 41, 0.8), rgba(222, 191, 151, 0.65));
}

.expertise-card h3 {
  margin-bottom: 14px;
}

.showcase-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(236, 221, 199, 0.88)),
    url("https://images.pexels.com/photos/33176543/pexels-photo-33176543.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
  border: 1px solid rgba(116, 89, 56, 0.1);
  box-shadow: var(--shadow);
}

.showcase-panel p {
  margin-top: 14px;
  max-width: 620px;
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.88);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.project-card-link {
  display: grid;
  height: 100%;
}

.project-image {
  aspect-ratio: 1.14 / 0.92;
  border-radius: 0;
  box-shadow: none;
}

.project-image img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.project-card-link:hover .project-image img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.project-content {
  display: grid;
  gap: 12px;
  padding: 24px 24px 28px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #fff8f1;
  background: linear-gradient(140deg, #d6b08a, #8f6943);
  box-shadow: 0 12px 24px rgba(74, 50, 25, 0.14);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.quote-copy {
  display: grid;
  gap: 18px;
}

.quick-contact-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(116, 89, 56, 0.1);
  margin-top: 12px;
}

.quick-contact-card p {
  margin: 12px 0 18px;
}

.form-panel {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(116, 89, 56, 0.1);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 10px;
}

.quote-form span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: #fffdfa;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quote-form textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(184, 139, 93, 0.65);
  box-shadow: 0 0 0 4px rgba(184, 139, 93, 0.12);
}

.field-span {
  grid-column: 1 / -1;
}

.form-status {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 500;
}

.form-status.is-success {
  background: rgba(45, 138, 87, 0.1);
  color: var(--success);
  border: 1px solid rgba(45, 138, 87, 0.18);
}

.form-status.is-error {
  background: rgba(199, 58, 42, 0.1);
  color: #c73a2a;
  border: 1px solid rgba(199, 58, 42, 0.2);
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.8fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(116, 89, 56, 0.12);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-note {
  max-width: 430px;
}

.footer-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-list a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(116, 89, 56, 0.12);
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 36px rgba(37, 211, 102, 0.42);
  filter: brightness(1.02);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.detail-main {
  padding-top: 10px;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-hero-section {
  padding-top: 42px;
  padding-bottom: 34px;
}

.project-hero-copy {
  display: grid;
  gap: 4px;
}

.project-hero-copy .hero-text {
  color: var(--muted);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 34px;
  align-items: center;
}

.project-hero-media {
  min-height: 560px;
}

.project-pills,
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-card {
  padding: 28px;
  border-radius: 28px;
}

.detail-card p {
  margin-top: 16px;
}

.detail-feature-list {
  display: grid;
  gap: 16px;
}

.feature-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.84);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-line span,
.timeline-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ecd8bb, #bf966c);
  color: #2f2216;
  font-weight: 700;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-gallery-item {
  min-height: 290px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.84);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item p {
  margin-top: 18px;
}

.cta-section {
  padding-top: 14px;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="left"] {
  transform: translateX(34px);
}

[data-animate="right"] {
  transform: translateX(-34px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .quote-grid,
  .project-hero-grid,
  .footer-grid,
  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .expertise-grid,
  .process-grid,
  .detail-info-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    padding-top: 88px;
  }

  .hero-panel,
  .showcase-panel {
    justify-self: stretch;
  }

  .showcase-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-hero-media,
  .image-card {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 40px));
    min-width: unset;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 247, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    position: relative;
    gap: 12px;
  }

  .hero-section {
    padding: 10px 0 66px;
  }

  .hero-image,
  .hero-overlay {
    inset: 10px;
    border-radius: 28px;
  }

  .hero-image {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .hero-grid {
    gap: 18px;
    padding-top: 70px;
  }

  .hero-copy {
    padding: 22px 20px 18px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.3rem, 10.4vw, 3.4rem);
    max-width: 11ch;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 92px);
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.67rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    padding: 0 18px;
  }

  .hero-stats {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-stats article {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-checks {
    gap: 10px;
    margin: 20px 0 18px;
  }

  .hero-checks span,
  .project-pills span,
  .chip-group span {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .trust-strip {
    margin-top: -4px;
  }

  .trust-strip-inner {
    gap: 12px;
    padding: 18px;
  }

  .image-card,
  .project-hero-media {
    min-height: 340px;
  }

  .image-card-note {
    padding: 18px;
  }

  .hero-stats,
  .trust-strip-inner,
  .service-grid,
  .expertise-grid,
  .project-grid,
  .process-grid,
  .quote-form,
  .detail-info-grid,
  .detail-gallery,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .service-card,
  .process-card,
  .detail-card,
  .feature-line,
  .timeline-item,
  .showcase-panel,
  .form-panel {
    padding: 22px;
  }

  .project-content {
    padding: 20px;
  }

  .project-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .showcase-panel,
  .form-panel {
    border-radius: 26px;
  }

  .quick-contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .detail-breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
  }

  .detail-gallery-item {
    min-height: 240px;
  }

  .image-card-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 58px;
    height: 58px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
