:root {
  --bg: #f7f1e8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #1c1915;
  --muted: #6d6458;
  --line: rgba(28, 25, 21, 0.08);
  --primary: #83643b;
  --secondary: #0f5b54;
  --accent: #c6a56d;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 14px 32px rgba(17, 17, 17, 0.05);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.8), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.65), transparent 28%),
    linear-gradient(180deg, #fbfbfd, var(--bg));
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 18px; }
button { font: inherit; border: 0; cursor: pointer; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.skip-link { position: absolute; inset-inline-start: -999px; top: 1rem; }
.skip-link:focus { inset-inline-start: 1rem; z-index: 2000; background: #fff; padding: 0.75rem 1rem; border-radius: 999px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(28, 25, 21, 0.06);
}

.header-strip {
  border-bottom: 1px solid rgba(28, 25, 21, 0.06);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.header-strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.header-strip-inner p { margin: 0; }
.header-strip-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.header-strip-links a { opacity: 0.94; }

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
  position: relative;
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  padding: 0.3rem 0 0.3rem 0.85rem;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 280px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(34, 24, 13, 0.1);
}

.main-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
  padding: 0.26rem;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.92);
  border: 1px solid rgba(28, 25, 21, 0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow-x: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.88);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.phone-pill, .btn {
  border-radius: 999px;
  padding: 0.8rem 1rem;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
}

.btn-primary {
  background: #111111;
  color: white;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-outline {
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  background: rgba(255,255,255,0.56);
}

.btn-soft {
  background: rgba(245, 245, 247, 0.96);
  color: var(--text);
  border: 1px solid rgba(28, 25, 21, 0.06);
}

@media (min-width: 721px) {
  .brand {
    padding-inline-end: 0.3rem;
  }

  .header-actions .btn-primary {
    padding-inline: 1.15rem;
  }
}

.hero, .page-hero { padding: 5.5rem 0 4rem; }
.page-hero.compact { padding-bottom: 1rem; }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.9)),
    linear-gradient(90deg, rgba(255,255,255,0.84), rgba(255,255,255,0.42)),
    var(--hero-bg-image) center/cover no-repeat;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

.blog-hero-has-bg::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.92)),
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.56)),
    var(--hero-bg-image) center/cover no-repeat;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid, .two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero h1, .page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.9rem);
  line-height: 1.03;
  margin: 0.2rem 0 1rem;
}

.hero p, .page-hero p, .content-card p { color: var(--muted); }
.hero-copy p, .page-hero p {
  max-width: 720px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  color: #555;
  background: rgba(245, 245, 247, 0.96);
  border: 1px solid rgba(28, 25, 21, 0.05);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.glass-card, .content-card, .service-card, .portfolio-card, .testimonial, .city-card, .blog-card, .quote-form, .trust-box, .cta-box, .stat-card, .page-hero-note {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.glass-card, .content-card, .service-card, .city-card, .blog-card, .quote-form, .trust-box, .stat-card, .page-hero-note {
  padding: 1.5rem;
}

.hero-copy,
.hero-panel { position: relative; }

.page-hero-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
}

.page-hero-note {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
}

.page-hero-note strong, .city-note strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--primary);
}

.city-hero-shell {
  align-items: stretch;
}

.city-note {
  border-top: 4px solid var(--accent);
}

.section { padding: 2.5rem 0 4.5rem; }
.muted { background: transparent; }

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.split-heading p {
  max-width: 420px;
  color: var(--muted);
}

.section-heading h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
}

.cards-grid, .portfolio-grid, .testimonial-grid, .blog-grid, .city-list, .media-grid {
  display: grid;
  gap: 1.2rem;
}

.cards-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.testimonial-grid, .blog-grid, .city-list, .media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card,
.portfolio-card,
.city-card,
.blog-card,
.managed-media,
.testimonial {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.portfolio-card:hover,
.city-card:hover,
.blog-card:hover,
.managed-media:hover,
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.1);
}

.service-card img,
.managed-media img,
.hero-photo img,
.portfolio-card img {
  width: 100%;
  object-fit: cover;
}

.service-card img {
  height: 220px;
  margin-bottom: 1rem;
}

.service-card h2, .service-card h3, .city-card h2, .blog-card h2 { margin-top: 0; }
.service-card p,
.city-card p,
.blog-card p,
.portfolio-copy p {
  color: var(--muted);
}

.service-card ul, .content-card ul, .trust-box ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-card li, .content-card li, .trust-box li {
  padding-inline-start: 1.25rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.service-card li::before, .content-card li::before, .trust-box li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  inset-inline-start: 0;
  top: 0.7rem;
}

.service-links {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.portfolio-copy {
  padding: 1rem 1.2rem 1.35rem;
}

.portfolio-copy span, .city-card span {
  color: var(--secondary);
  font-weight: 700;
}

.hero-actions, .cta-inline {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-media-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
}

.page-hero-visual,
.banner-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}

.page-hero-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.hero-photo-large { grid-column: span 2; }
.hero-photo img { height: 220px; }
.hero-photo-large img { height: 320px; }

.hero-photo figcaption, .managed-media figcaption, .banner-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.banner-grid-large .banner-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.banner-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-wall,
.featured-projects,
.faq-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.photo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-wall-card,
.featured-project-card,
.faq-card,
.process-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-wall-card img,
.featured-project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.photo-wall-card-wide {
  grid-column: span 2;
}

.photo-wall-card-tall {
  grid-row: span 2;
}

.photo-wall-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.featured-projects {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-project-card-main {
  grid-column: span 2;
}

.featured-project-card-main img {
  height: 360px;
}

.featured-project-copy {
  padding: 1.15rem 1.2rem 1.35rem;
}

.featured-project-copy span {
  color: var(--secondary);
  font-weight: 700;
}

.featured-project-copy p {
  color: var(--muted);
}

.project-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.project-badges strong {
  display: inline-flex;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(245,245,247,0.96);
  border: 1px solid rgba(17,17,17,0.05);
  font-size: 0.85rem;
}

.faq-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card,
.process-card {
  padding: 1.35rem;
}

.faq-card h3,
.process-card h3 {
  margin-top: 0;
}

.faq-card p,
.process-card p {
  color: var(--muted);
}

.process-card strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  margin-bottom: 0.9rem;
}

.two-col-top {
  align-items: start;
}

.before-after-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
}

.before-after-stage {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 420px;
}

.before-after-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.before-layer {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.before-layer .before-after-image {
  width: 100%;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 50%;
  width: 2px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 1px rgba(17,17,17,0.08);
}

.before-after-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 30px rgba(17,17,17,0.18);
}

.before-after-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.before-after-controls span {
  font-weight: 700;
}

.before-after-controls input[type="range"] {
  flex: 1;
}

.cities-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cities-cloud a, .related-link, .mini-service {
  display: inline-flex;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
}

.related-link {
  margin-bottom: 0.7rem;
}

.mini-service {
  width: 100%;
  border-radius: 18px;
  margin-top: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
}

.mini-service span { color: var(--muted); font-size: 0.93rem; }

.testimonial {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
}

.testimonial footer {
  color: var(--muted);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78));
}

.accent-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
}

.article-shell { padding-top: 3rem; }
.article-body { max-width: 820px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}
.reading-progress {
  position: sticky;
  top: 88px;
  z-index: 900;
  height: 3px;
  background: rgba(17,17,17,0.05);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #111;
  transition: width 0.12s linear;
}

.article-main { min-width: 0; }
.lead { font-size: 1.15rem; color: var(--muted); }
.media-section { padding-top: 0; }

.blog-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.blog-main,
.article-main { min-width: 0; }

.blog-listing {
  display: grid;
  gap: 1rem;
}

.blog-card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sidebar-card,
.search-form,
.breadcrumbs,
.article-cover,
.article-share,
.article-tags,
.comment-section {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sidebar-card,
.search-form,
.article-share,
.article-tags,
.comment-section {
  padding: 1.2rem;
}

.breadcrumbs {
  padding: 0.9rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.search-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.search-row {
  display: flex;
  gap: 0.7rem;
}

.search-row input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  font: inherit;
}

.taxonomy-list,
.popular-posts {
  display: grid;
  gap: 0.55rem;
}

.taxonomy-list a,
.popular-posts a,
.tag-cloud a,
.post-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(245,245,247,0.96);
  border: 1px solid rgba(17,17,17,0.05);
  color: var(--muted);
  font-size: 0.88rem;
}

.taxonomy-list a.active {
  background: #111;
  color: white;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.post-chip {
  margin-bottom: 0.8rem;
  color: #111;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.9rem 0 1rem;
}

.article-cover {
  overflow: hidden;
  margin: 1.2rem 0;
}

.article-cover img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.article-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.3rem;
}

.insight-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
}

.insight-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.insight-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.article-summary {
  margin: 1.25rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.summary-grid a,
.metric-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(245,245,247,0.96);
  border: 1px solid rgba(17,17,17,0.05);
  color: var(--muted);
  font-size: 0.88rem;
}

.article-section,
.article-content {
  margin-bottom: 1.25rem;
}

.article-section h2 {
  margin-bottom: 0.65rem;
}

.article-cta {
  margin: 1.5rem 0;
}

.comments-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.managed-media img {
  height: 260px;
}

.quote-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  font: inherit;
}

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(180deg, #111111, #1c1c1e);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-box .eyebrow {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.08);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  position: relative;
}

.footer-shell {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 720px;
}

.footer-mark {
  flex-shrink: 0;
}

.footer-brand h2 {
  margin: 0.1rem 0 0.45rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-primary-action {
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 0.3rem 0 1rem;
}

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.floating-whatsapp, .floating-call {
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: white;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(16px);
}

.floating-whatsapp {
  background: rgba(28, 28, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-call {
  background: rgba(245, 245, 247, 0.96);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.text-link {
  color: #111111;
  font-weight: 600;
}

.blog-card a:hover, .text-link:hover { opacity: 0.88; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .topbar,
  .header-actions,
  .header-main,
  .blog-layout,
  .article-layout,
  .page-hero-shell,
  .footer-top,
  .footer-grid,
  .hero-grid,
  .two-col,
  .testimonial-grid,
  .blog-grid,
  .city-list,
  .portfolio-grid,
  .cards-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .article-insights {
    grid-template-columns: 1fr;
  }

  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-wall,
  .featured-projects,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-project-card-main,
  .photo-wall-card-wide {
    grid-column: span 2;
  }
  .before-after-stage,
  .before-after-image {
    min-height: 320px;
    height: 320px;
  }

  .topbar { align-items: flex-start; }
  .main-nav { width: 100%; justify-content: center; }
  .footer-grid { display: grid; }
  .blog-sidebar { position: static; }
}

@media (max-width: 720px) {
  .header-strip {
    display: none;
  }

  .header-strip-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero, .page-hero { padding-top: 3.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-box, .hero-actions, .cta-inline { flex-direction: column; align-items: stretch; }
  .hero-media-stack { grid-template-columns: 1fr; }
  .hero-photo-large { grid-column: auto; }
  .hero-photo img, .hero-photo-large img, .managed-media img, .page-hero-visual img, .banner-card img { height: 220px; }
  .topbar {
    min-height: auto;
    align-items: center;
    gap: 0.9rem;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
  }
  .brand strong,
  .brand small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-panel {
    position: absolute;
    top: calc(100% + 0.4rem);
    inset-inline: 0;
    display: none;
    z-index: 1200;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--shadow);
  }
  .menu-open .header-panel {
    display: flex;
  }
  .header-main,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 22px;
    padding: 0.5rem;
    overflow: visible;
  }
  .main-nav a {
    width: 100%;
    padding: 0.9rem 1rem;
  }
  .header-actions {
    gap: 0.65rem;
  }
  .phone-pill, .btn { width: 100%; }
  .footer-shell {
    border-radius: 24px;
    padding: 1rem;
  }
  .footer-top {
    padding-bottom: 1rem;
  }
  .footer-grid {
    gap: 1.25rem;
  }
  .footer-bottom {
    gap: 0.5rem;
  }
  .search-row,
  .article-share {
    flex-direction: column;
  }
  .banner-grid {
    grid-template-columns: 1fr;
  }
  .photo-wall,
  .featured-projects,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .featured-project-card-main,
  .photo-wall-card-wide,
  .banner-grid-large .banner-card-featured {
    grid-column: auto;
  }
  .featured-project-card-main img,
  .photo-wall-card img {
    height: 220px;
  }
  .before-after-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .before-after-stage,
  .before-after-image {
    min-height: 220px;
    height: 220px;
  }
  .reading-progress {
    top: 76px;
  }
  .floating-actions {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  .floating-whatsapp,
  .floating-call {
    flex: 0 1 auto;
    min-width: 118px;
    min-height: 40px;
    padding: 0.72rem 0.9rem;
    font-size: 0.84rem;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.1);
  }
}
