:root {
  --bg: #f4efe8;
  --bg-strong: #ece3d7;
  --surface: rgba(255, 251, 246, 0.78);
  --surface-strong: #fffaf4;
  --surface-dark: #1c1712;
  --text: #1a1511;
  --muted: #6b6157;
  --line: rgba(26, 21, 17, 0.1);
  --accent: #a76d33;
  --accent-soft: #d69a5c;
  --shadow: 0 28px 80px rgba(76, 50, 24, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 168, 109, 0.34), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(180deg, #f8f3ec 0%, #f0e8dc 48%, #f8f3ed 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  padding: 0.72rem 1rem;
  font: inherit;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding-top: 2.75rem;
}

.hero h1,
.section-heading h2,
.band-card h2,
.spotlight-copy h2,
.location-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 1.02;
}

.hero-text,
.band-card p,
.service-card p,
.advantage-card p,
.process-step p,
.spotlight-copy p,
.spotlight-points p,
.quote-card p,
.location-copy p,
.contact-copy p,
.section-heading,
.address,
.form-note {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  line-height: 1.72;
  font-size: 1.03rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

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

.button.primary {
  background: linear-gradient(145deg, #201b16, #3d3123);
  color: #fff8ef;
  box-shadow: 0 20px 45px rgba(30, 23, 16, 0.18);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.76);
  border-color: var(--line);
  color: var(--text);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2.4rem 0 0;
}

.hero-stats li,
.band-card,
.service-card,
.advantage-card,
.process-step,
.quote-card,
.portfolio-item,
.spotlight-panel,
.location-panel,
.contact-panel,
.client-chip {
  border: 1px solid rgba(32, 25, 18, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.hero-visual {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-large {
  inset: 1.6rem 5rem 8rem 0;
}

.hero-visual-medium {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 230px;
}

.hero-visual-card {
  top: 0;
  right: 0;
  width: 42%;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 171, 0.3), transparent 40%),
    linear-gradient(145deg, #c99a67, #8a5828);
  color: #fffaf2;
}

.hero-visual-card span,
.service-index {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-card strong {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

.intro-band {
  padding-top: 0;
}

.band-card {
  padding: 2.25rem;
  border-radius: var(--radius-xl);
}

.motto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.motto-card {
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(32, 25, 18, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(28, 23, 18, 0.94), rgba(61, 49, 35, 0.92));
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.motto-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.motto-card p {
  margin: 0;
  color: rgba(255, 244, 228, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.band-card h2,
.section-heading h2,
.spotlight-copy h2,
.location-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.service-grid,
.advantage-grid,
.process-grid,
.testimonial-grid,
.client-grid,
.portfolio-grid {
  display: grid;
  gap: 1.25rem;
}

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

.service-card,
.advantage-card,
.process-step,
.quote-card,
.client-chip {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.service-index {
  margin: 0 0 1rem;
  color: var(--accent);
}

.service-card h3,
.advantage-card h3,
.process-step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.service-card--secondary {
  background: rgba(255, 250, 242, 0.55);
  border-style: dashed;
  opacity: 0.88;
}

.service-card--secondary .service-index {
  color: var(--muted);
}

.service-card--secondary h3,
.service-card--secondary p {
  color: var(--muted);
}

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

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

.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.spotlight-panel,
.location-panel,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  padding: 1.55rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(145deg, rgba(255, 249, 241, 0.82), rgba(234, 224, 211, 0.92));
}

.spotlight-copy,
.spotlight-points > div,
.map-frame,
.contact-copy,
.contact-form {
  border-radius: var(--radius-lg);
}

.spotlight-copy {
  padding: 1.6rem;
  background: var(--surface-dark);
  color: #fffaf2;
}

.spotlight-copy p {
  color: rgba(255, 244, 228, 0.72);
}

.spotlight-points {
  display: grid;
  gap: 1rem;
}

.spotlight-points > div {
  padding: 1.35rem;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(39, 28, 15, 0.08);
}

.spotlight-points strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.value-chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-chain-card,
.impact-card {
  border: 1px solid rgba(32, 25, 18, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.value-chain-card {
  padding: 1.5rem;
}

.value-chain-card span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.value-chain-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.value-chain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.value-chain-note {
  margin: 1.2rem 0 0;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(167, 109, 51, 0.2);
  background: linear-gradient(145deg, rgba(214, 154, 92, 0.2), rgba(255, 251, 244, 0.85));
  color: #624322;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.impact-card {
  padding: 1.35rem;
}

.impact-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #2f261a;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.portfolio-item {
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-lg);
  grid-column: span 4;
}

.portfolio-item-large {
  grid-column: span 8;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-interior {
  margin-top: 3rem;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(32, 25, 18, 0.06);
  background: rgba(255, 250, 242, 0.45);
}

.portfolio-interior-heading {
  margin-bottom: 1.25rem;
}

.portfolio-interior-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--muted);
}

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

.portfolio-grid--interior .portfolio-item {
  grid-column: span 1;
  min-height: 180px;
  opacity: 0.92;
  box-shadow: 0 12px 36px rgba(76, 50, 24, 0.08);
}

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

.quote-card {
  margin: 0;
}

.quote-card p {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.72;
}

.quote-card cite {
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.testimonials-interior {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(32, 25, 18, 0.06);
  background: rgba(255, 250, 242, 0.42);
}

.testimonials-interior-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-card--secondary {
  background: rgba(255, 250, 242, 0.65);
  border-style: dashed;
  box-shadow: 0 12px 36px rgba(76, 50, 24, 0.06);
}

.quote-card--secondary p {
  font-size: 0.96rem;
}

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

.client-chip {
  display: grid;
  place-items: center;
  min-height: 110px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.client-chip img {
  width: min(100%, 140px);
  max-height: 64px;
  object-fit: contain;
}

.client-chip-text {
  color: var(--muted);
  background: rgba(255, 250, 242, 0.9);
}

.location-copy {
  padding: 1.4rem;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  background: #eee;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-panel {
  align-items: start;
}

.contact-copy {
  padding: 1.4rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.contact-links a {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.address {
  max-width: 36ch;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(39, 28, 15, 0.08);
}

.contact-form .contact-actions {
  justify-content: center;
  align-items: stretch;
}

.contact-form .contact-actions .button {
  flex: 1 1 240px;
  min-width: 220px;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 29, 20, 0.15);
  border-radius: 18px;
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(166, 106, 44, 0.22);
  border-color: rgba(166, 106, 44, 0.35);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 1rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.floating-action svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-action.whatsapp {
  background: linear-gradient(145deg, #27d366, #199b43);
}

.floating-action.instagram {
  background: linear-gradient(145deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .spotlight-panel,
  .location-panel,
  .contact-panel,
  .service-grid,
  .advantage-grid,
  .testimonial-grid,
  .client-grid,
  .value-chain-grid,
  .motto-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .portfolio-grid,
  .contact-form,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-visual-large {
    inset: 1rem 2.5rem 7rem 0;
  }

  .hero-visual-medium {
    width: 52%;
  }

  .hero-visual-card {
    width: 48%;
  }

  .portfolio-item,
  .portfolio-item-large {
    grid-column: span 1;
    min-height: 250px;
  }

  .portfolio-grid--interior {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar,
  .section,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand img {
    width: 190px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10vw, 4.2rem);
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-visual-large {
    inset: 0.5rem 1.5rem 6rem 0;
  }

  .hero-visual-medium {
    height: 140px;
  }

  .hero-visual-card {
    padding: 1rem;
  }

  .hero-visual-card strong {
    font-size: 1.15rem;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-action {
    width: 52px;
    height: 52px;
  }

  .contact-form .contact-actions {
    flex-direction: column;
  }

  .contact-form .contact-actions .button {
    width: 100%;
    min-width: 0;
  }
}
