:root {
  --ink: #3f3a35;
  --muted: #817b73;
  --line: #e7e1d8;
  --paper: #f8f6f1;
  --panel: #fffdf8;
  --cream: #f3efe7;
  --brown: #6b5641;
  --gold: #c2ae87;
  --gold-dark: #9f875d;
  --logo-brown: #7a5b36;
  --white: #ffffff;
  --shadow: 0 20px 56px rgba(63, 58, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

img,
svg {
  max-width: 100%;
}

main,
.site-header,
.hero,
.metric-band,
.section,
.cta-strip,
.site-footer {
  max-width: 100vw;
}

form,
fieldset,
article,
section,
div {
  min-width: 0;
}

.site-header {
  align-items: center;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  padding: 0 clamp(24px, 7vw, 120px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  justify-self: start;
}

.logo-mark {
  align-items: center;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 90px;
}

.logo-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.main-nav a {
  color: var(--muted);
  padding: 10px 0;
  position: relative;
}

.main-nav a:first-child,
.main-nav a:hover {
  color: var(--gold-dark);
}

.main-nav a:first-child::after,
.main-nav a:hover::after {
  background: var(--gold);
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.header-actions a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 22px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.header-actions a:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  justify-self: end;
  padding: 8px;
  width: 42px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.hero {
  background: var(--panel);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: calc(100vh - 92px);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding: clamp(70px, 10vw, 150px) clamp(32px, 8vw, 150px);
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(44px, 5vw, 74px);
  margin-bottom: 28px;
  max-width: 760px;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy > p,
.section-copy p,
.section-heading p,
.calculator-copy p {
  color: var(--muted);
  font-size: 20px;
  max-width: 660px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--brown);
  box-shadow: 0 14px 28px rgba(159, 135, 93, 0.18);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.button.whatsapp-button {
  background: var(--brown);
  border: 1px solid rgba(234, 220, 194, 0.55);
  box-shadow: 0 16px 34px rgba(107, 86, 65, 0.2);
  color: var(--white);
}

.whatsapp-logo {
  background: #fff7ec;
  border-radius: 999px;
  display: block;
  height: 24px;
  padding: 2px;
  width: 24px;
}

.header-actions .whatsapp-logo {
  background: transparent;
  padding: 0;
}

.floating-whatsapp {
  align-items: center;
  background: rgba(107, 86, 65, 0.96);
  border: 1px solid rgba(234, 220, 194, 0.58);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 42px rgba(63, 48, 36, 0.24);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  position: fixed;
  right: 24px;
  z-index: 30;
}

.floating-whatsapp:hover {
  background: #5e4a37;
  transform: translateY(-2px);
}

.hero-visual {
  background:
    linear-gradient(180deg, rgba(63, 58, 53, 0.01), rgba(63, 58, 53, 0.06)),
    url("assets/hero-praxis-wide-broom-optimized.jpg");
  background-position: center, 12% center;
  background-size: cover, auto 100%;
  animation: heroPan 16s ease-in-out infinite alternate;
  margin: 0;
  min-height: 620px;
}

@keyframes heroPan {
  0% {
    background-position: center, 12% center;
  }

  100% {
    background-position: center, 88% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    animation: none;
    background-position: center, center;
  }
}

.metric-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 7vw, 120px);
}

.metric-band div {
  border-left: 1px solid var(--line);
  padding: 32px 28px;
}

.metric-band div:last-child {
  border-right: 1px solid var(--line);
}

.metric-band strong,
.metric-band span {
  display: block;
}

.metric-band strong {
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 4px;
}

.metric-band span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(78px, 10vw, 136px) clamp(24px, 7vw, 120px);
}

.praxis,
.calculator {
  display: grid;
  gap: clamp(38px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.feature-grid,
.service-grid,
.case-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: 1fr;
}

.feature-grid article,
.service-grid article,
.case-grid article,
.testimonial-grid article,
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid article,
.service-grid article,
.case-grid article,
.testimonial-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article:hover,
.service-grid article:hover,
.case-grid article:hover,
.testimonial-grid article:hover {
  box-shadow: 0 26px 64px rgba(63, 58, 53, 0.16);
  transform: translateY(-4px);
}

.feature-grid article {
  padding: 30px;
}

.feature-grid span {
  color: var(--gold-dark);
  font-weight: 900;
}

.feature-grid p,
.service-grid p,
.case-grid p {
  color: var(--muted);
}

.services,
.equipment {
  background: var(--cream);
}

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

.service-grid article {
  min-height: 220px;
  padding: 30px;
}

.service-grid article::before {
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  content: "";
  display: block;
  filter: sepia(0.16) saturate(0.82) contrast(0.96);
  height: 210px;
  margin: -30px -30px 26px;
  transition: filter 180ms ease, transform 180ms ease;
}

.service-grid article:hover::before {
  filter: sepia(0.08) saturate(0.95) contrast(1);
  transform: scale(1.025);
}

.service-grid article:nth-child(1)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.1)),
    url("assets/elegant-praxis-vintage-optimized.jpg");
}

.service-grid article:nth-child(2)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.14)),
    url("assets/vintage-office-optimized.jpg");
}

.service-grid article:nth-child(3)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.16)),
    url("assets/vintage-staircase-optimized.jpg");
}

.service-grid article:nth-child(4)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.16)),
    url("assets/vintage-home-deep-cleaning-optimized.jpg");
}

.service-grid article:nth-child(5)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.12)),
    url("assets/vintage-window-cleaning-optimized.jpg");
}

.service-grid article:nth-child(6)::before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.04), rgba(63, 58, 53, 0.14)),
    url("assets/vintage-commercial-space-optimized.jpg");
}

.calculator {
  background: var(--paper);
}

.calculator-copy {
  align-self: center;
}

.rate-note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px;
}

.rate-note strong {
  color: var(--brown);
}

.rate-note span {
  color: var(--muted);
  font-weight: 600;
}

.price-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.field,
fieldset {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
}

input:focus,
select:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(194, 174, 135, 0.24);
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: 1fr 1fr;
  margin: 4px 0;
  padding: 14px;
}

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

.package-card {
  align-content: start;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  min-height: 172px;
  padding: 16px;
  position: relative;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.package-card:hover {
  border-color: rgba(107, 86, 65, 0.4);
  transform: translateY(-1px);
}

.package-card input {
  appearance: none;
  background: var(--white);
  border: 2px solid rgba(107, 86, 65, 0.34);
  border-radius: 999px;
  height: 20px;
  margin: 0;
  min-height: 20px;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 1px;
  width: 20px;
}

.package-card:has(input:checked) {
  background: #fbf7ef;
  border-color: var(--gold-dark);
  box-shadow: 0 16px 34px rgba(107, 86, 65, 0.13);
}

.package-card:has(input:checked)::after {
  background: var(--brown);
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 8px;
}

.package-card span {
  display: grid;
  gap: 10px;
}

.package-card strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  padding-right: 64px;
  text-transform: none;
}

.package-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.dynamic-options {
  display: grid;
  gap: 12px;
}

.object-details {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr auto;
  padding: 14px;
}

.object-details[hidden] {
  display: none;
}

.detail-check {
  align-items: end;
  color: var(--ink);
  display: flex;
  gap: 10px;
  min-height: 50px;
  padding-bottom: 8px;
  text-transform: none;
}

.detail-check input {
  appearance: none;
  background: var(--white);
  border: 2px solid rgba(107, 86, 65, 0.34);
  border-radius: 4px;
  flex: 0 0 22px;
  height: 22px;
  margin: 0;
  min-height: 22px;
  padding: 0;
  position: relative;
  width: 22px;
}

.detail-check input::after {
  color: var(--brown);
  content: "X";
  display: block;
  font-size: 15px;
  font-weight: 900;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -52%);
}

.detail-check input:checked {
  background: #f7efe1;
  border-color: var(--brown);
}

.detail-check input:checked::after {
  opacity: 1;
}

.base-package {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 16px;
}

.base-package strong {
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.base-package span {
  color: var(--muted);
  font-weight: 700;
}

.dynamic-options .field {
  min-width: 0;
}

fieldset legend {
  grid-column: 1 / -1;
}

.extra-list {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.option {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 12px;
  position: relative;
  text-transform: none;
}

.option input {
  appearance: none;
  background: var(--white);
  border: 2px solid rgba(107, 86, 65, 0.34);
  border-radius: 4px;
  flex: 0 0 22px;
  height: 22px;
  margin: 0;
  min-height: 22px;
  padding: 0;
  position: relative;
  width: 22px;
}

.option input::after {
  color: var(--brown);
  content: "X";
  display: block;
  font-size: 15px;
  font-weight: 900;
  left: 50%;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -52%) scale(0.8);
}

.option input:checked {
  background: #eadcc2;
  border-color: var(--brown);
}

.option input:checked::after {
  opacity: 1;
  transform: translate(-50%, -52%) scale(1);
}

.option:has(input:checked) {
  background: rgba(234, 220, 194, 0.44);
  border-color: rgba(107, 86, 65, 0.48);
}

.option.is-included {
  background: rgba(194, 174, 135, 0.24);
}

.option.is-included input {
  opacity: 0.86;
}

.option span {
  display: grid;
  gap: 2px;
}

.option strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  text-transform: none;
}

.option small {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.estimate {
  background: linear-gradient(135deg, var(--brown), #3f3024);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 5px;
  padding: 22px;
}

.estimate span,
.estimate small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.estimate small[data-breakdown] {
  color: #eadcc2;
}

.estimate .premium-badge {
  align-self: start;
  background: rgba(234, 220, 194, 0.16);
  border: 1px solid rgba(234, 220, 194, 0.32);
  border-radius: 999px;
  color: #f5e8cf;
  display: inline-flex;
  font-size: 12px;
  justify-self: start;
  letter-spacing: 0;
  padding: 5px 10px;
  text-transform: uppercase;
}

.estimate .premium-badge[hidden],
.estimate small[hidden] {
  display: none;
}

.estimate strong {
  color: #eadcc2;
  font-size: 40px;
  line-height: 1;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.case-grid article {
  overflow: hidden;
}

.case-grid h3,
.case-grid p {
  padding: 0 22px;
}

.case-grid h3 {
  margin-top: 22px;
}

.case-grid p {
  padding-bottom: 24px;
}

.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
}

.case-image {
  align-items: flex-end;
  color: var(--white);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  padding: 14px;
  text-transform: uppercase;
}

.case-image.before {
  background:
    linear-gradient(180deg, rgba(63, 58, 53, 0.16), rgba(63, 58, 53, 0.62)),
    url("assets/case-training-before-after-optimized.jpg");
  background-position: left center;
  background-size: 200% 100%;
  filter: sepia(0.18) saturate(0.86);
}

.case-image.after {
  background:
    linear-gradient(180deg, rgba(194, 174, 135, 0.04), rgba(194, 174, 135, 0.42)),
    url("assets/case-training-before-after-optimized.jpg");
  background-position: right center;
  background-size: 200% 100%;
  filter: sepia(0.08) saturate(0.9);
}

.case-images.second .before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.16), rgba(63, 58, 53, 0.62)),
    url("assets/case-sanitary-before-after-optimized.jpg");
}

.case-images.second .after {
  background-image:
    linear-gradient(180deg, rgba(194, 174, 135, 0.04), rgba(194, 174, 135, 0.42)),
    url("assets/case-sanitary-before-after-optimized.jpg");
}

.case-images.third .before {
  background-image:
    linear-gradient(180deg, rgba(63, 58, 53, 0.16), rgba(63, 58, 53, 0.62)),
    url("assets/case-reception-before-after-optimized.jpg");
}

.case-images.third .after {
  background-image:
    linear-gradient(180deg, rgba(194, 174, 135, 0.04), rgba(194, 174, 135, 0.42)),
    url("assets/case-reception-before-after-optimized.jpg");
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
}

.product-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-grid article:hover {
  box-shadow: 0 26px 64px rgba(63, 58, 53, 0.16);
  transform: translateY(-4px);
}

.product-grid img {
  aspect-ratio: 1;
  display: block;
  filter: sepia(0.08) saturate(0.9);
  object-fit: cover;
  width: 100%;
}

.product-grid span,
.product-grid h3,
.product-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.product-grid span {
  color: var(--gold-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 18px;
  text-transform: uppercase;
}

.product-grid h3 {
  margin-bottom: 10px;
  margin-top: 6px;
}

.product-grid p {
  color: var(--muted);
  font-size: 15px;
  padding-bottom: 20px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.testimonial-grid article {
  padding: 30px;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid strong {
  color: var(--gold-dark);
}

.cta-strip {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(243, 239, 231, 0.56)),
    var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 42px clamp(24px, 7vw, 120px);
}

.cta-copy {
  max-width: 760px;
}

.cta-strip h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.cta-strip .eyebrow {
  margin-bottom: 10px;
}

.cta-strip p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.cta-actions {
  align-items: flex-end;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.mini-contact {
  display: grid;
  gap: 3px;
  text-align: right;
}

.mini-contact a {
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
}

.cta-strip .whatsapp-button {
  box-shadow: 0 12px 26px rgba(63, 58, 53, 0.12);
  min-height: 50px;
  padding-inline: 22px;
}

.accreditation-strip {
  background: var(--paper);
  padding-top: 54px;
}

.trust-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin-top: 26px;
}

.trust-card {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(243, 239, 231, 0.84));
  border: 1px solid rgba(194, 174, 135, 0.5);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(63, 58, 53, 0.08);
  display: grid;
  gap: 16px;
  grid-template-columns: 92px 1fr;
  min-height: 132px;
  padding: 18px;
}

.credential-visual {
  align-items: center;
  background: linear-gradient(165deg, #fff0bc 0%, #d9ad5c 42%, #8e6330 100%);
  border: 1px solid rgba(120, 84, 42, 0.36);
  border-radius: 20px 20px 5px 5px;
  box-shadow: 0 18px 28px rgba(63, 58, 53, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--brown);
  display: inline-flex;
  flex-direction: column;
  height: 116px;
  justify-content: flex-start;
  line-height: 1;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 86px;
}

.credential-visual::before,
.credential-visual::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.credential-visual::before {
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.7), transparent 26%),
    radial-gradient(circle at center, #f9df94 0 38%, #c29143 39% 58%, transparent 59%);
  border: 1px solid rgba(88, 65, 42, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px rgba(255, 246, 213, 0.34), 0 7px 14px rgba(75, 57, 36, 0.16);
  height: 64px;
  left: 10px;
  top: 8px;
  width: 64px;
}

.credential-visual::after {
  background: rgba(255, 253, 248, 0.82);
  border-top: 1px solid rgba(93, 68, 39, 0.18);
  bottom: 8px;
  height: 17px;
  left: 9px;
  right: 9px;
}

.credential-visual b {
  color: rgba(83, 61, 39, 0.72);
  font-size: 8px;
  letter-spacing: 1px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.credential-visual.award-teal {
  background: linear-gradient(160deg, #c5e8df 0%, #67b7ad 48%, #2e7c77 100%);
  color: #143d3a;
}

.credential-visual.award-service {
  background: linear-gradient(160deg, #fff1bf 0%, #d6aa4e 48%, #8d632f 100%);
}

.credential-visual.award-silver {
  background: linear-gradient(155deg, #ffffff 0%, #c9c7c0 43%, #78736d 100%);
  color: #34302b;
}

.credential-visual.award-silver::before {
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.86), transparent 27%),
    radial-gradient(circle at center, #f7f6f1 0 38%, #aaa69d 39% 58%, transparent 59%);
}

.credential-visual.award-anniversary {
  background: linear-gradient(160deg, #2f2a24 0%, #1c1916 45%, #b48744 46%, #f0d18a 100%);
  color: #fff6dc;
}

.credential-visual.award-anniversary::after {
  background: #9e3a2f;
  border-top: 0;
  bottom: 28px;
  height: 18px;
  left: 0;
  right: 0;
  transform: rotate(-6deg);
}

.credential-visual span {
  bottom: 10px;
  color: currentColor;
  font-size: 9px;
  font-weight: 900;
  left: 0;
  letter-spacing: 0.03em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.credential-visual strong {
  display: block;
  font-family: Inter, system-ui, sans-serif;
  font-size: 8.4px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 6px auto 0;
  max-width: 76px;
  position: relative;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  z-index: 1;
}

.credential-visual.award-service strong,
.credential-visual.award-silver strong {
  font-size: 9px;
}

.credential-visual.award-anniversary strong {
  color: #fff;
  font-size: 12px;
  margin-top: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.38);
}

.trust-content small {
  color: var(--gold-dark);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.trust-content strong {
  color: var(--ink);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 6px;
}

.trust-content span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer {
  align-items: center;
  background: var(--panel);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(24px, 7vw, 120px);
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .main-nav {
    align-items: stretch;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    padding: 18px 0 24px;
  }

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

  .header-actions {
    display: none;
  }

  .hero,
  .praxis,
  .calculator {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .metric-band,
  .service-grid,
  .case-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .cta-actions,
  .mini-contact {
    justify-items: stretch;
    text-align: left;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
    padding: 0 20px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .logo-mark {
    flex: 0 0 72px;
    height: 34px;
    width: 72px;
  }

  .brand strong {
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    height: 40px;
    width: 40px;
  }

  .main-nav {
    gap: 8px;
    padding: 12px 0 18px;
  }

  .main-nav a {
    border-top: 1px solid var(--line);
    padding: 13px 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    max-width: none;
    padding: 48px 20px 34px;
  }

  .hero-copy > p,
  .section-copy p,
  .section-heading p,
  .calculator-copy p,
  .cta-strip p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(40px, 13vw, 50px);
    line-height: 1.02;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.02;
  }

  h3 {
    font-size: 21px;
  }

  .hero-visual {
    background-size: cover, auto 100%;
    min-height: 360px;
  }

  .section {
    padding: 58px 20px;
  }

  .metric-band {
    padding: 0 20px;
  }

  .metric-band div {
    border-left: 0;
    padding: 22px 0;
  }

  .metric-band div:last-child {
    border-right: 0;
  }

  .praxis,
  .calculator {
    gap: 30px;
  }

  .feature-grid article,
  .service-grid article,
  .case-grid article,
  .testimonial-grid article {
    box-shadow: 0 14px 34px rgba(63, 58, 53, 0.09);
  }

  .service-grid article {
    min-height: 0;
    padding: 24px;
  }

  .service-grid article::before {
    height: 178px;
    margin: -24px -24px 22px;
  }

  .calculator-copy {
    align-self: start;
  }

  .rate-note {
    padding: 18px;
  }

  .price-card {
    box-shadow: 0 14px 36px rgba(63, 58, 53, 0.1);
    gap: 14px;
    max-width: 100%;
    padding: 18px;
    width: 100%;
  }

  .package-fieldset {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .package-card {
    min-height: 0;
    padding: 18px;
  }

  .package-card strong {
    font-size: 28px;
    padding-right: 42px;
  }

  .package-card small {
    font-size: 13px;
  }

  .object-details {
    padding: 14px;
  }

  .option {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .option input,
  .detail-check input {
    margin-top: 2px;
  }

  .estimate {
    padding: 22px 18px;
  }

  .estimate strong {
    font-size: clamp(34px, 10vw, 44px);
    overflow-wrap: anywhere;
  }

  .product-grid {
    gap: 18px;
  }

  .product-grid img {
    aspect-ratio: 1.18;
  }

  .case-images {
    min-height: 190px;
  }

  .cta-strip {
    padding: 38px 20px;
  }

  .cta-actions {
    width: 100%;
  }

  .mini-contact a {
    word-break: break-word;
  }

  .trust-card {
    grid-template-columns: 78px 1fr;
    min-height: 118px;
    padding: 16px;
  }

  .credential-visual {
    height: 104px;
    transform: scale(0.9);
    transform-origin: left center;
    width: 78px;
  }

  .site-footer {
    gap: 22px;
    padding: 30px 20px 92px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    bottom: 76px;
    min-height: 50px;
    padding: 0;
    right: 18px;
    width: 50px;
  }

  .hero-actions,
  .cta-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-row,
  .object-details,
  .extra-list,
  fieldset,
  .metric-band,
  .service-grid,
  .case-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(40px, 13vw, 50px);
  }
}

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

  .logo-mark {
    flex-basis: 64px;
    width: 64px;
  }

  .brand strong {
    font-size: 22px;
  }

  .section,
  .hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .price-card,
  .package-fieldset,
  fieldset[data-extra-fieldset] {
    padding-left: 12px;
    padding-right: 12px;
  }

  .package-card strong {
    font-size: 26px;
  }
}
