/* ══════════════════════════════════════════
   SAULET MASONRY — Shared Stylesheet
   ══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Barlow:wght@300;400;500&family=Barlow+Condensed:wght@600;700&display=swap');

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

:root {
  --red:      #c0291a;
  --red-dark: #9e1e10;
  --stone:    #2b2420;
  --mortar:   #4a3f38;
  --sand:     #c8a97e;
  --cream:    #f5efe6;
  --charcoal: #1a1512;
  --warm-white: #fdf8f2;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--warm-white);
  color: var(--stone);
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--red);
}
.nav-logo img {
  height: 72px; width: auto;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,230,.65);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
  background: var(--red) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* ── FOOTER ── */
site-footer, .site-footer {
  background: var(--charcoal);
  padding: 50px 60px;
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
  border-top: 2px solid var(--red);
}
.footer-logo img { height: 60px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,230,.4);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--sand); }
.footer-copy {
  width: 100%;
  font-size: .78rem; color: rgba(245,239,230,.2);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 36px; border-radius: 2px;
  border: none; cursor: pointer; display: inline-block;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--stone);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 36px; border-radius: 2px;
  border: 2px solid var(--red);
  cursor: pointer; display: inline-block;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--red); color: var(--cream); }

/* ── SECTION UTILITIES ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--stone);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--mortar); max-width: 560px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── AD BANNER ── */
.ad-banner {
  background: var(--stone);
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.ad-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--red); color: var(--cream);
  padding: 4px 10px; border-radius: 1px;
}
.ad-text { font-size: .95rem; color: rgba(245,239,230,.8); font-weight: 300; }
.ad-text strong { color: var(--sand); font-weight: 500; }
.ad-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand); text-decoration: none;
  border-bottom: 1px solid rgba(200,169,126,.4);
  transition: border-color .2s;
}
.ad-link:hover { border-color: var(--sand); }

/* ── MOBILE ── */
@media (max-width: 860px) {
  .site-nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .ad-banner { padding: 14px 20px; }
}
