:root {
  --ink: #1a2420;
  --paper: #f2f2ea;
  --paper-alt: #e9e9df;
  --steel: #2e4a52;
  --steel-dark: #22383f;
  --signal: #e8992b;
  --signal-dark: #cc7f18;
  --line: #d8d6c8;
  --rust: #a8432b;

  --font-display: "Archivo", sans-serif;
  --font-body: "Public Sans", sans-serif;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3, .eyebrow {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.container {
  max-width: 1200px;
}

.eyebrow {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.eyebrow--on-steel {
  color: var(--signal);
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 2rem;
  max-width: 32ch;
}

.section-title--on-steel {
  color: #fff;
}

/* Buttons */
.btn-signal {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
  font-weight: 700;
  border-radius: 4px;
  padding: 0.7rem 1.5rem;
}
.btn-signal:hover, .btn-signal:focus {
  background: var(--signal-dark);
  border-color: var(--signal-dark);
  color: var(--ink);
}

.btn-outline-steel {
  border: 2px solid var(--steel);
  color: var(--steel);
  font-weight: 700;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
}
.btn-outline-steel:hover {
  background: var(--steel);
  color: #fff;
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--steel-dark);
}

/* HEADER */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--ink);
}
.header-phone .phone-label {
  font-size: 0.72rem;
  color: var(--steel);
}
.header-phone .phone-number {
  font-weight: 700;
  font-family: var(--font-display);
}

.btn-call {
  white-space: nowrap;
}

/* HERO */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, var(--line) 0, var(--line) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient(-45deg, var(--line) 0, var(--line) 1px, transparent 1px, transparent 26px);
  opacity: 0.35;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 22ch;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 1.75rem;
  color: #3a423f;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  padding: 0;
  margin: 0;
}
.trust-chips li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-dark);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.hero-frame {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICE BLOCKS */
.service-block {
  padding: 4rem 0;
}
.service-block--alt {
  background: var(--paper-alt);
}
.service-img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-block h2 {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 0.85rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* AREAS */
.areas {
  background: var(--steel-dark);
  color: #fff;
  padding: 4rem 0;
}
.area-card {
  background: var(--steel);
  border-radius: 6px;
  padding: 1.75rem;
  height: 100%;
}
.area-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--signal);
  margin-bottom: 0.6rem;
}
.area-card p {
  color: #dfe4e1;
  margin: 0;
  font-size: 0.95rem;
}

/* WHY US */
.why-us {
  padding: 4rem 0;
}
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-item p {
  color: #444c49;
  font-size: 0.92rem;
  margin: 0;
}
.why-item {
  border-top: 3px solid var(--signal);
  padding-top: 0.9rem;
}

/* PROCESS */
.process {
  background: var(--paper-alt);
  padding: 4rem 0;
}
.process-row {
  position: relative;
}
.process-step {
  text-align: left;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--steel-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.88rem;
  color: #444c49;
  margin: 0;
}

/* GALLERY */
.gallery {
  padding: 4rem 0;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* FAQ */
.faq {
  padding: 4rem 0;
}
.accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: var(--paper-alt);
  color: var(--steel-dark);
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(232, 153, 43, 0.35);
}

/* CONTACT */
.contact {
  background: var(--steel-dark);
  color: #fff;
  padding: 4.5rem 0;
}
.contact-lede {
  color: #dfe4e1;
  margin-bottom: 1.75rem;
  max-width: 42ch;
}
.contact-detail {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: none;
  color: var(--signal);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-detail a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 2rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-color: var(--line);
  padding: 0.65rem 0.8rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(46, 74, 82, 0.15);
}
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: #cfd3d0;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-inner p {
  margin: 0;
}

/* FLOATING BUTTONS */
.float-btn {
  position: fixed;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.float-whatsapp {
  left: 20px;
  background: #25D366;
  animation: pulse-btn 2.4s infinite;
}
.float-call {
  right: 20px;
  background: var(--signal);
  color: var(--ink);
  animation: pulse-btn 2.4s infinite;
  animation-delay: 1.2s;
}
@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.18); }
  70% { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.cu-lg-wdth{
	width:220px;
}
/* MOBILE */
@media (max-width: 767.98px) {
  .header-inner { padding: 0.7rem 1rem; }
  .hero { padding: 2.5rem 0 3rem; }
  .service-block, .areas, .why-us, .process, .gallery, .faq, .contact {
    padding: 2.75rem 0;
  }
  .contact-form { padding: 1.25rem; }
}
@media(max-width:424px)
{
	.cu-lg-wdth{
	width:180px;
}
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:150px;
}
}