:root {
  /* Colors - Sandstone tan + dark brown (construction/masonry) */
  --color-primary: #b87a3c;
  --color-secondary: #2a2521;
  --color-accent: #4a7c8a;
  --color-dark: #0c0a09;
  --color-light: #faf6f0;
  --color-text: #2a2521;
  --color-text-light: #57534e;
  --color-text-on-dark: #e7e5e4;
  --color-bg: #ffffff;
  --color-bg-alt: #f5ece0;
  --color-border: #d6d3d1;

  --font-heading: 'Bricolage Grotesque', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 6px;
  --transition: 0.3s ease;

  --shadow-sm: 0 1px 2px rgba(12, 10, 9, 0.06);
  --shadow-md: 0 4px 12px rgba(12, 10, 9, 0.08);
  --shadow-lg: 0 12px 32px rgba(12, 10, 9, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-padding); }
.section-alt { background: var(--color-bg-alt); }

.skip-link {
  position: absolute; top: 0; left: 0;
  padding: 10px 16px; background: var(--color-secondary); color: var(--color-light);
  z-index: 1000; border-radius: 0 0 var(--border-radius) 0;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); color: var(--color-light); }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--border-radius);
  font-weight: 600; font-family: var(--font-body);
  font-size: 0.95rem; letter-spacing: 0.01em;
  transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-secondary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn-outline:hover { background: var(--color-secondary); color: #fff; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--color-text-light); font-size: 1.05rem; }

.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-inner .logo { display: flex; align-items: center; }
.nav-inner .logo img { height: 40px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--color-secondary); font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 4px; padding: 8px 0; }
.nav-links > li > a:hover { color: var(--color-primary); }
.has-dropdown > a::after {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 4px;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after, .has-dropdown:focus-within > a::after { transform: translateY(1px) rotate(225deg); }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: -16px;
  background: #fff; border: 1px solid var(--color-border);
  list-style: none; padding: 8px 0; margin: 0;
  min-width: 320px; border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
  max-height: 70vh; overflow-y: auto;
}
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown li { margin: 0; padding: 0; }
.dropdown a { display: block; padding: 9px 18px; color: var(--color-text); font-size: 0.92rem; font-weight: 500; transition: background var(--transition), color var(--transition); }
.dropdown a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.nav-cta { background: var(--color-secondary); color: #fff; padding: 10px 18px; border-radius: var(--border-radius); font-weight: 600; font-size: 0.95rem; white-space: nowrap; transition: background var(--transition); }
.nav-cta:hover { background: var(--color-primary); color: #fff; }
.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-secondary); transition: var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px; border-top: 1px solid var(--color-border); box-shadow: var(--shadow-md); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: var(--transition); max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .has-dropdown > a::after { margin-left: auto; }
  .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; min-width: 0; max-height: none; padding: 0 0 8px 16px; opacity: 1; visibility: visible; transform: none; pointer-events: auto; display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown a { padding: 8px 0; font-size: 0.9rem; border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* HERO (hero-01 full-bleed) */
.hero {
  position: relative;
  min-height: 78vh;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--color-light);
  display: flex; align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,10,9,0.78), rgba(28,25,23,0.62));
  z-index: 1;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; position: relative; z-index: 2; }
.hero h1 { color: var(--color-light); max-width: 820px; margin-bottom: 20px; }
.hero .lede { font-size: 1.2rem; max-width: 680px; color: var(--color-text-on-dark); margin-bottom: 32px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ABOUT (about-02 mirror) */
#about { padding: var(--section-padding); }
#about .split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
#about .split img { width: 100%; border-radius: var(--border-radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
#about .split h2 { margin-bottom: 20px; }
#about .split-text p { color: var(--color-text-light); font-size: 1rem; }
@media (min-width: 800px) {
  #about .split > div:first-child { order: 1; }
  #about .split > div:last-child { order: 2; }
}
@media (max-width: 800px) {
  #about .split { grid-template-columns: 1fr; gap: 32px; }
  #about .split > .split-text { order: 1; }
  #about .split > img { order: 2; }
}
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-text); }
.feature-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px;
  margin-top: 2px; border-radius: 50%;
  background: var(--color-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px; background-position: center; background-repeat: no-repeat;
}

/* SERVICES (services-01 grid - 12 cards) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--color-text-light); font-size: 0.92rem; flex: 1; margin-bottom: 14px; }
.service-card .read-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--color-primary); font-size: 0.88rem; font-family: var(--font-body); }
.service-card .read-more::after { content: "→"; transition: transform var(--transition); }
.service-card:hover .read-more::after { transform: translateX(4px); }

/* REVIEWS (reviews-02 dark 3 cards) */
.reviews-02 { background: var(--color-secondary); padding: 96px 24px; color: #fff; }
.reviews-02 .wrap { max-width: 1200px; margin: 0 auto; }
.reviews-02 .hd { text-align: center; margin-bottom: 56px; }
.reviews-02 .hd .eyebrow { color: var(--color-primary); }
.reviews-02 .hd h2 { color: #fff; }
.reviews-02 .quotes { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .reviews-02 .quotes { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }
.reviews-02 .quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; }
.reviews-02 .quote-text { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.7; margin: 0 0 24px; flex: 1; }
.reviews-02 .meta { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.reviews-02 .meta strong { display: block; color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; }
.reviews-02 .meta span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* FAQ (faq-01 accordion) */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-secondary);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: transparent;
}
.faq-question::after {
  content: "+"; font-size: 1.5rem; font-weight: 400;
  color: var(--color-primary);
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-answer-inner { padding: 0 0 22px; color: var(--color-text-light); }

/* CTA (cta-02 bg image) */
.cta-02 {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding: 120px 24px; text-align: center; color: #fff; overflow: hidden;
}
.cta-02::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,10,9,0.78), rgba(28,25,23,0.72));
  z-index: 1;
}
.cta-02 .cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-02 .eyebrow { color: var(--color-accent); margin-bottom: 12px; }
.cta-02 h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-02 p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-02 .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-02 .btn-primary { background: var(--color-primary); }
.cta-02 .btn-primary:hover { background: #fff; color: var(--color-secondary); }
.cta-02 .btn-outline { color: #fff; border-color: #fff; }
.cta-02 .btn-outline:hover { background: #fff; color: var(--color-secondary); }

/* GALLERY (gallery-01 3x3) */
.gallery-01 .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-01 .gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--border-radius); aspect-ratio: 4/3; }
.gallery-01 .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-01 .gallery-grid figure:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-01 .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* CONTACT (contact-01) */
.contact-01 { background: var(--color-secondary); padding: 80px 0; }
.contact-01 .grid { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-01 .info-side { color: #fff; }
.contact-01 .info-side h2 { color: #fff; margin-bottom: 12px; }
.contact-01 .accent-line { width: 60px; height: 4px; background: var(--color-primary); border-radius: 4px; margin-bottom: 24px; }
.contact-01 .info-side .lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-01 .info-block { margin-bottom: 24px; color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; }
.contact-01 .info-block .lbl { color: rgba(255,255,255,0.45); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; display: block; }
.contact-01 .info-block strong { color: #fff; display: block; font-weight: 600; font-family: var(--font-heading); margin-bottom: 4px; }
.contact-01 .info-block a { color: var(--color-primary); font-family: var(--font-body); font-weight: 600; display: block; }
.contact-01 .info-block a:hover { text-decoration: underline; }
.contact-01 .form-side { background: #fff; border-radius: 16px; padding: 36px; }
.contact-01 .form-side h3 { font-size: 1.4rem; margin-bottom: 20px; }
.contact-01 .form-side .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--color-secondary); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--color-border); border-radius: var(--border-radius);
  font-family: var(--font-body); font-size: 1rem;
  color: var(--color-text); background: #f5f3ee;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-consent { margin: 18px 0 24px; font-size: 0.92rem; color: var(--color-text-light); }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.form-consent input { margin-top: 4px; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }
form button[type="submit"] {
  width: 100%; background: var(--color-primary); color: #fff;
  padding: 14px 32px; border-radius: 999px;
  font-weight: 600; font-family: var(--font-body); font-size: 1rem;
  transition: var(--transition);
}
form button[type="submit"]:hover { background: var(--color-secondary); transform: translateY(-2px); }
@media (max-width: 800px) {
  .contact-01 .grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-01 .form-side .row-2 { grid-template-columns: 1fr; }
}

/* MAP */
.map-block { width: 100%; height: 400px; line-height: 0; }
.map-block iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 600px) { .map-block { height: 350px; } }

/* FOOTER (3-col) */
.site-footer { background: var(--color-dark); color: var(--color-text-on-dark); padding: 64px 0 24px; font-size: 0.95rem; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--color-light); font-size: 0.78rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; font-family: var(--font-body); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--color-text-on-dark); }
.footer-grid a:hover { color: var(--color-primary); }
.footer-grid p { color: var(--color-text-on-dark); margin-bottom: 8px; }
.footer-grid .footer-logo { height: 50px; width: auto; margin-bottom: 14px; }
.footer-bottom-row {
  max-width: var(--max-width); margin: 40px auto 0; padding: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; font-size: 0.82rem; color: rgba(231,229,228,0.5);
  border-top: 1px solid rgba(231,229,228,0.1);
}
.footer-bottom-row p { margin: 0; }
.footer-bottom-row a { color: rgba(231,229,228,0.7); }
.footer-bottom-row a:hover { color: var(--color-primary); }
.agency-credit a { color: var(--color-primary); font-weight: 600; }

/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* WhatsApp button */
.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  z-index: 99;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-float:hover { background: #1ebe5a; transform: scale(1.05); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}
