:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf4;
  --surface-deep: #12323a;
  --text: #172127;
  --muted: #57636c;
  --line: rgba(18, 50, 58, 0.12);
  --primary: #d86f2d;
  --primary-deep: #b85318;
  --secondary: #1d6b71;
  --highlight: #f6d8a8;
  --shadow: 0 24px 60px rgba(28, 39, 45, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(216, 111, 45, 0.22), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(29, 107, 113, 0.14), transparent 20%),
    linear-gradient(180deg, #f7f2eb 0%, #f4efe7 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(250, 244, 236, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--primary), #f1a14c);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(216, 111, 45, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(184, 83, 24, 0.25);
}

.button-small {
  padding: 12px 18px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: white;
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.button-whatsapp {
  background: #1b8f58;
  box-shadow: 0 18px 30px rgba(27, 143, 88, 0.2);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #167247;
  box-shadow: 0 22px 36px rgba(22, 114, 71, 0.24);
}

.link-arrow {
  font-weight: 600;
  color: var(--secondary);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding: 72px 0 56px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  text-wrap: balance;
}

.hero-text {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 0.98rem;
  text-wrap: pretty;
}

.hero-blessing {
  margin-top: -6px;
  margin-bottom: 18px;
  color: var(--primary-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.hero-clarity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-clarity-list span,
.coverage-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(18, 50, 58, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card,
.review-card,
.contact-panel,
.info-stack article,
.project-card,
.process-card,
.quick-contact-bar a,
.coverage-card,
.hiring-card {
  box-shadow: var(--shadow);
}

.service-card,
.review-card,
.contact-panel,
.info-stack article,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  backdrop-filter: blur(12px);
}
.info-stack strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.35rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 26px;
  border-radius: 40px;
  background:
    linear-gradient(155deg, rgba(18, 50, 58, 0.96), rgba(18, 50, 58, 0.82)),
    linear-gradient(135deg, rgba(216, 111, 45, 0.18), transparent 60%);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  top: -60px;
  right: -20px;
  width: 220px;
  height: 220px;
  background: rgba(246, 216, 168, 0.16);
}

.hero-visual::after {
  bottom: -80px;
  left: -50px;
  width: 260px;
  height: 260px;
  background: rgba(216, 111, 45, 0.16);
}

.hero-brand-panel {
  position: relative;
  z-index: 1;
  padding: 28px 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
}

.hero-brand-panel p {
  color: white;
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
  font-family: "Instrument Serif", serif;
  line-height: 0.95;
}

.hero-brand-panel span {
  color: #f27b42;
}

.hero-brand-panel small {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand-panel-main {
  width: min(100%, 520px);
}

.hero-service-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 1;
  width: min(58%, 320px);
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: white;
}

.hero-service-badge span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.08;
}

.hero-contact-card {
  position: absolute;
  right: 26px;
  top: 210px;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 260px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(216, 111, 45, 0.92), rgba(235, 152, 75, 0.92));
  color: white;
  box-shadow: 0 24px 36px rgba(216, 111, 45, 0.2);
}

.hero-contact-card p,
.hero-contact-card small {
  color: rgba(255, 255, 255, 0.8);
}

.hero-contact-card strong {
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-contact-card span {
  font-size: 1rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.76);
}

.trust-strip p {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
}

.quick-contact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.quick-contact-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.section-heading p:last-child {
  margin-top: 18px;
  max-width: 64ch;
}

.service-grid,
.project-grid,
.review-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.service-card {
  padding: 28px;
}

.service-card.featured {
  background: linear-gradient(160deg, rgba(18, 50, 58, 0.98), rgba(29, 107, 113, 0.9));
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-tag {
  color: white;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card h3,
.project-card h3,
.review-card strong {
  font-size: 1.25rem;
  color: var(--text);
}

.service-card p {
  margin-top: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin-top: 16px;
  padding-left: 22px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.info-stack {
  display: grid;
  gap: 16px;
}

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

.process-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 255, 255, 0.72));
}

.process-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-card h3 {
  color: var(--text);
  font-size: 1.2rem;
}

.process-card p {
  margin-top: 12px;
}

.info-stack article {
  padding: 26px;
}

.project-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.project-card {
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(165deg, rgba(18, 50, 58, 0.92), rgba(29, 107, 113, 0.78)),
    linear-gradient(135deg, rgba(216, 111, 45, 0.16), transparent 60%);
}

.project-card span,
.project-card h3 {
  color: white;
}

.project-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-large {
  grid-row: span 2;
  min-height: 458px;
}

.coverage-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 216, 168, 0.42), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(255, 255, 255, 0.76));
}

.coverage-card h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hiring-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(216, 111, 45, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(216, 111, 45, 0.2), transparent 28%),
    linear-gradient(140deg, rgba(255, 248, 239, 0.96), rgba(255, 255, 255, 0.8));
}

.hiring-card h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hiring-card p:last-child {
  max-width: 58ch;
  margin-top: 16px;
}

.hiring-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.emergency-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 96px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, #142f36, #0e252c);
}

.emergency-panel h2,
.emergency-panel p {
  color: white;
}

.emergency-panel h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.review-card {
  padding: 26px;
}

.review-card p {
  color: var(--text);
}

.review-card strong {
  display: block;
  margin-top: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 24px;
}

.contact-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 255, 255, 0.78));
}

.contact-panel a,
.contact-panel p {
  display: block;
}

.contact-panel a {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
  border-top: 1px solid rgba(18, 50, 58, 0.1);
  margin-top: 64px;
}

.footer strong {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

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

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .contact-section,
  .project-grid,
  .review-grid,
  .service-grid,
  .process-grid,
  .quick-contact-bar {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .project-large {
    grid-row: span 1;
    min-height: 260px;
  }

  .emergency-panel,
  .footer,
  .hiring-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 28px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .topbar {
    top: 10px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 8px;
  }

  .menu-open .nav-panel {
    display: flex;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 36px;
    gap: 12px;
  }

  .hero h1,
  .section-heading h2,
  .section h2 {
    max-width: none;
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .hero-text {
    max-width: 26ch;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .hero-blessing {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .hero-clarity-list {
    display: none;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .hero-actions .button,
  .hero-actions .link-arrow {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .hero-actions .link-arrow {
    font-size: 0.95rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .quick-contact-bar {
    display: none;
  }

  .hero-contact-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-service-badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .hero-brand-panel {
    margin-top: 18px;
  }

  .quick-contact-bar a {
    min-height: 52px;
    font-size: 0.92rem;
  }

  .section {
    padding-top: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
