/* ============================================================
   FONTANERO TORREVIEJA — Neighborhood sign-shop design
   Flat colour, hard offset shadows, hazard-stripe dividers.
   ============================================================ */

:root {
  --paper:     #f3ead6;
  --paper-2:   #e9dcbe;
  --ink:       #211d17;
  --ink-soft:  #5b5443;
  --rust:      #c1440e;
  --rust-deep: #8f3209;
  --mustard:   #e3a72b;
  --line:      #211d17;

  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Work Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(92%, 1120px); margin-inline: auto; }
.section-pad { padding-block: 76px; }

h1, h2, h3 {
  font-family: 'Archivo Black', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.label {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Hazard divider ---------- */
.hazard {
  height: 12px;
  background: repeating-linear-gradient(135deg, var(--ink) 0 14px, var(--mustard) 14px 28px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  flex-wrap: wrap;
}
.top-bar a { transition: color .2s; }
.top-bar a:hover { color: var(--mustard); }
.top-bar-phone { font-weight: 700; letter-spacing: 0.03em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.nav-links a:hover { border-color: var(--rust); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Work Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-rust { background: var(--rust); color: var(--paper); }
.btn-mustard { background: var(--mustard); color: var(--ink); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.nav-cta { display: inline-flex; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 6%;
  font-weight: 600;
  border-top: 1px solid rgba(33,29,23,0.15);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--paper);
  background-image: radial-gradient(rgba(33,29,23,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  padding-block: 64px 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-label::before { content: ''; width: 28px; height: 3px; background: var(--rust); }
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-title .hl {
  background: var(--rust);
  color: var(--paper);
  padding: 0 10px;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-sm);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.hero-note { font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }

.hero-photo {
  position: relative;
  transform: rotate(2deg);
}
.hero-photo-frame {
  border: 6px solid var(--paper);
  outline: 3px solid var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.tape {
  position: absolute;
  width: 70px; height: 26px;
  background: var(--mustard);
  opacity: 0.85;
  border: 1px solid rgba(33,29,23,0.4);
}
.tape-1 { top: -14px; left: 20px; transform: rotate(-8deg); }
.tape-2 { top: -10px; right: 10px; transform: rotate(6deg); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 320px; margin-inline: auto; order: -1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper-2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-photo {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 14px 0 20px; }
.about-body { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 26px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); }
.services-header { max-width: 560px; margin-bottom: 44px; }
.services-header .about-title { margin-top: 14px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.service-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--mustard);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  transform: rotate(-4deg);
}
.service-name { font-family: 'Archivo Black', Arial, sans-serif; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 10px; }
.service-desc { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   ZONE / ADDRESS STAMP
   ============================================================ */
.zone { background: var(--ink); color: var(--paper); }
.zone .label { color: var(--mustard); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.zone-body { color: rgba(243,234,214,0.78); font-size: 1.05rem; margin: 16px 0 24px; max-width: 480px; }
.stamp {
  border: 3px solid var(--paper);
  border-radius: 50%;
  width: 220px; height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-6deg);
  padding: 18px;
  flex-shrink: 0;
}
.stamp span { display: block; }
.stamp-addr { font-family: 'Archivo Black', Arial, sans-serif; font-size: 1rem; line-height: 1.3; margin-bottom: 6px; }
.stamp-city { font-size: 0.85rem; letter-spacing: 0.1em; }

@media (max-width: 760px) {
  .zone-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .zone-body { margin-inline: auto; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 14px 0 20px; }
.contact-body { color: var(--ink-soft); margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; border-top: 2px dashed var(--ink); padding-top: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--mustard);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); margin-bottom: 3px; }
.contact-item-text a:hover { color: var(--rust); }

.note-card {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 36px;
  background-image: repeating-linear-gradient(var(--paper-2) 0 31px, rgba(33,29,23,0.12) 31px 32px);
}
.note-title { font-family: 'Archivo Black', Arial, sans-serif; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(193,68,14,0.18); }
.field textarea { resize: vertical; min-height: 110px; }
.form-msg { margin-top: 12px; font-size: 0.9rem; font-weight: 600; }
.form-msg.success { color: #3d6b2e; }
.form-msg.error { color: var(--rust-deep); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding-block: 34px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.footer-inner img { height: 28px; filter: invert(1) grayscale(1) brightness(2); }
.footer-copy { font-size: 0.85rem; color: rgba(243,234,214,0.6); }
.footer-social a {
  width: 38px; height: 38px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--mustard); color: var(--ink); border-color: var(--mustard); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid var(--ink);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
