:root {
  --orange: #ff5000;
  --orange-dark: #e04600;
  --gray: #77767b;
  --ink: #201f1f;
  --bg: #f4f2ee;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: #fff; color: var(--orange); }

.btn-solid {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.btn-solid:hover { background: transparent; color: #fff; }

.btn-whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); color: #fff; }

/* Diagonal pattern background used across brand sections */
.diagonal-pattern {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.08) 0px,
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 42px
  );
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 24px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.logo span { font-weight: 400; opacity: 0.85; }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
}

.main-nav {
  position: fixed;
  inset: 0;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.main-nav.open { opacity: 1; pointer-events: auto; }
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.main-nav li { margin: 18px 0; }
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav a:hover { opacity: 0.7; }
.nav-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Hero */
.hero {
  background: var(--orange);
  color: #fff;
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  max-width: 760px;
}
.hero-sub {
  max-width: 480px;
  color: #fff;
  font-size: 1.3rem;
  margin: 28px 0 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Coverage bands */
.coverage-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -40px 0;
}
.coverage-band.orange { background: var(--orange); }
.coverage-band.gray { background: var(--gray); }
.coverage-band.dark { background: var(--ink); }
.coverage-band .container { padding-top: 40px; padding-bottom: 40px; }

.coverage-band h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  display: inline-block;
  padding-bottom: 18px;
  border-bottom: 2px solid #fff;
  margin-bottom: 28px;
}
.coverage-band p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About */
.about {
  background: var(--bg);
  padding: 110px 0 90px;
  text-align: center;
}
.about .eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.about h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 24px; }
.about p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #4a4a4a;
}

/* Contact */
.contact {
  background: var(--orange);
  color: #fff;
  padding: 130px 0 100px;
  position: relative;
}
.contact h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 720px;
  line-height: 1.1;
  margin-bottom: 50px;
}
.contact-form { max-width: 640px; }
.form-row { margin-bottom: 26px; }
.form-row label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-row input, .form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  padding: 8px 2px;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-bottom-color: #fff;
  border-bottom-width: 2px;
}
.form-row textarea { resize: vertical; }
.form-status { margin-top: 18px; font-size: 0.95rem; min-height: 1.2em; }
.form-status.success { color: #1a1a1a; font-weight: 700; }
.form-status.error { color: #fff2ea; font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--gray);
  color: #fff;
  padding: 60px 0;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 8px;
}
.footer-grid p { margin: 4px 0; font-weight: 500; }
.footer-grid a { color: #fff; text-decoration: none; }
.copyright {
  text-align: center;
  margin-top: 48px;
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 150;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--whatsapp-dark); }

@media (max-width: 640px) {
  .coverage-band { padding: 70px 0; }
  .hero { padding: 150px 0 90px; }
  .contact { padding: 100px 0 70px; }
}
