/* ============ Heartland Masonry — styles ============ */
:root {
  --charcoal: #23272a;
  --charcoal-2: #2e3337;
  --brick: #78000F;
  --brick-dark: #5C000C;
  --cream: #f6f3ee;
  --cream-2: #efe9e0;
  --text: #3d4145;
  --text-light: #6d7379;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(35, 39, 42, .12);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.container { width: min(1120px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; line-height: 1.1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.6rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--brick); color: #fff; }
.btn-accent:hover { background: var(--brick-dark); }
.btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--charcoal); color: #cfd3d5; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; gap: 1rem; flex-wrap: wrap; }
.topbar-phone { color: #fff; font-weight: 600; }
.topbar-phone:hover { color: #D4A1A8; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 243, 238, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ddd6cb;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { height: 58px; width: auto; display: block; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; line-height: 1.05; letter-spacing: .08em; color: var(--charcoal); }
.brand-text em { color: var(--brick); }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link { font-weight: 600; font-size: .95rem; color: var(--charcoal); padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav-link:hover { color: var(--brick); border-color: var(--brick); }
.nav-cta { padding: .6rem 1.2rem; font-size: .9rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,22,24,.88) 15%, rgba(20,22,24,.55) 55%, rgba(20,22,24,.25)); }
.hero-inner { position: relative; padding: 5rem 0; }
.hero-kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .85rem; font-weight: 600; color: #D4A1A8; margin-bottom: 1rem; }
.hero-title { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.hero-title span { color: #D4A1A8; }
.hero-sub { margin: 1.2rem 0 2rem; max-width: 560px; font-size: 1.15rem; color: #e9e6e1; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.6rem; font-size: .9rem; color: #c9c5bf; letter-spacing: .03em; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--charcoal); color: #e6e2db; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: #b9bdc0; }
.section-kicker { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 700; color: var(--brick); margin-bottom: .6rem; }
.section-title { font-size: clamp(2rem, 4.5vw, 2.9rem); text-transform: uppercase; color: var(--charcoal); margin-bottom: .8rem; }
.section-sub { color: var(--text-light); max-width: 640px; margin-bottom: 2.8rem; }

.grid { display: grid; gap: 1.6rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Cards ---------- */
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid #e8e2d8; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(35,39,42,.18); }
.card-img { height: 190px; background-size: cover; background-position: center; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { font-size: 1.35rem; text-transform: uppercase; color: var(--charcoal); margin-bottom: .4rem; }
.card-body p { font-size: .93rem; color: var(--text-light); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-img { min-height: 420px; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow); }
.about-body .section-title { color: #fff; }
.about-body p { color: #c6cacd; margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.4rem 0 2rem; }
.check-list li { padding: .45rem 0 .45rem 1.9rem; position: relative; color: #dfe2e4; font-weight: 500; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: #D4A1A8; font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative; height: 260px; border-radius: var(--radius); background-size: cover; background-position: center;
  display: flex; align-items: flex-end; overflow: hidden; box-shadow: var(--shadow);
}
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,24,.72), transparent 55%); transition: opacity .2s; }
.gallery-item span { position: relative; z-index: 1; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .06em; padding: 1rem 1.2rem; }
.gallery-item:hover::after { opacity: .85; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); text-align: center; }
.contact-inner { max-width: 860px; }
.contact-sub { color: var(--text-light); margin-bottom: 2.6rem; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-bottom: 2.6rem; }
.contact-social { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.contact-social-label { font-weight: 600; color: var(--text); }
.btn-social { display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--charcoal); border-color: #ddd6cb; }
.btn-social:hover { border-color: var(--brick); color: var(--brick); }
.btn-social svg { width: 18px; height: 18px; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.4rem; box-shadow: var(--shadow); border: 1px solid #e8e2d8; }
.contact-icon { font-size: 1.7rem; margin-bottom: .5rem; }
.contact-card h3 { font-size: 1.2rem; text-transform: uppercase; color: var(--charcoal); margin-bottom: .3rem; }
.contact-card a { color: var(--brick); font-weight: 600; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: .92rem; color: var(--text-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-2); color: #b9bdc0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding: 3rem 0; }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: .08em; color: #fff; }
.footer-brand em { color: #D4A1A8; }
.footer-logo { height: 76px; width: auto; }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; justify-content: center; }
.footer-social a { color: #cfd3d5; display: inline-flex; padding: .55rem; border: 1px solid #3a4044; border-radius: 8px; transition: color .2s, border-color .2s; }
.footer-social a:hover { color: #fff; border-color: #D4A1A8; }
.footer-social svg { width: 18px; height: 18px; }
.footer-phone { color: #fff; font-weight: 700; font-size: 1.15rem; }
.footer-phone:hover { color: #D4A1A8; }
.footer-bottom { border-top: 1px solid #3a4044; padding: 1.1rem 0; font-size: .82rem; color: #8a9095; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.2rem; }
}

@media (max-width: 640px) {
  .brand-logo { height: 48px; }
  .services-grid, .gallery-grid, .contact-cards { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 300px);
    background: var(--charcoal); flex-direction: column; align-items: flex-start;
    padding: 5.5rem 2rem 2rem; gap: 1.4rem; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { color: #e6e2db; font-size: 1.1rem; }
  .nav-cta { width: 100%; }
  .nav-toggle { display: block; z-index: 60; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 78vh; }
}
