:root {
  --color-ink: #17211f;
  --color-muted: #5d6b67;
  --color-paper: #fbfaf7;
  --color-panel: #ffffff;
  --color-stone: #d8d0c4;
  --color-clay: #9b5f43;
  --color-sage: #496f62;
  --color-charcoal: #24302e;
  --color-line: #e5e0d8;
  --shadow-soft: 0 18px 44px rgba(23, 33, 31, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-paper);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #efe8de;
  color: var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  background: var(--color-panel);
  color: var(--color-ink);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-charcoal);
  border-radius: 6px;
  padding: 12px 18px;
  background: var(--color-charcoal);
  color: var(--color-paper);
  font-weight: 750;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--color-charcoal);
}

.button.light {
  border-color: var(--color-paper);
  background: var(--color-paper);
  color: var(--color-charcoal);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--color-paper);
}

.hero.compact {
  min-height: 430px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 31, 0.82), rgba(23, 33, 31, 0.34) 54%, rgba(23, 33, 31, 0.12));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 90px 0 72px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #f0d9c8;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(251, 250, 247, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #f0ece5;
}

.section.dark {
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--color-muted);
}

.dark .section-head p,
.dark p {
  color: rgba(251, 250, 247, 0.76);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 24px;
}

.dark .card {
  border-color: rgba(251, 250, 247, 0.18);
  background: rgba(251, 250, 247, 0.06);
}

.card p,
.project-card p,
.service-list p,
.policy-content p,
.faq-item p {
  color: var(--color-muted);
}

.dark .card p {
  color: rgba(251, 250, 247, 0.74);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-clay);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--color-line);
}

.stat {
  background: var(--color-paper);
  padding: 24px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.project-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #c7b9a8, #496f62);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  padding: 22px;
}

.project-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--color-paper);
}

.project-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 28, 26, 0.08), rgba(20, 28, 26, 0.52) 48%, rgba(20, 28, 26, 0.92));
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 120px 0 42px;
}

.project-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 34px 0 0;
  background: rgba(251, 250, 247, 0.22);
}

.project-hero-meta div {
  padding: 18px;
  background: rgba(20, 28, 26, 0.42);
}

.project-hero-meta dt {
  color: rgba(251, 250, 247, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-hero-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--color-charcoal);
  color: var(--color-paper);
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:nth-child(2n) img {
  filter: saturate(0.82) contrast(1.08);
}

.gallery-item:nth-child(3n) img {
  filter: sepia(0.18) saturate(0.92);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(20, 28, 26, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: left;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: start;
}

.project-info-card {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.project-info-card h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.project-story h2 {
  margin-bottom: 26px;
}

.project-story h3 {
  margin: 30px 0 8px;
}

.project-story p {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.feature-grid {
  grid-template-columns: repeat(7, minmax(190px, 1fr));
  overflow-x: auto;
  padding-bottom: 6px;
}

.feature-grid .card {
  min-width: 190px;
}

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

.drawing-card {
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-panel);
}

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

.drawing-placeholder {
  min-height: 230px;
  background-color: #f7f4ee;
  background-image:
    linear-gradient(90deg, rgba(36, 48, 46, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(36, 48, 46, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}

.drawing-placeholder::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 3px solid rgba(36, 48, 46, 0.74);
  border-left-width: 9px;
}

.section-lines::after {
  inset: 48px 30px;
  border-top-width: 8px;
  border-bottom-width: 2px;
  transform: skewX(-8deg);
}

.elevation-lines::after {
  inset: 42px;
  border-radius: 0;
  box-shadow: inset 38px 0 0 rgba(155, 95, 67, 0.16), inset -44px 0 0 rgba(73, 111, 98, 0.16);
}

.model-view::after {
  inset: 44px;
  transform: rotateX(58deg) rotateZ(-34deg);
  border-width: 6px;
}

.site-plan::after {
  inset: 28px 54px;
  border-radius: 42% 58% 48% 52%;
  border-color: rgba(73, 111, 98, 0.8);
}

.drawing-card figcaption,
.comparison-card figcaption {
  padding: 14px 16px;
  color: var(--color-muted);
  font-weight: 800;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.comparison-card img {
  aspect-ratio: 16 / 10;
}

.project-cta {
  text-align: center;
}

.project-cta h2,
.project-cta p {
  margin-left: auto;
  margin-right: auto;
}

.project-cta p {
  max-width: 640px;
}

.lightbox {
  width: min(1100px, calc(100% - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #111816;
  color: var(--color-paper);
}

.lightbox::backdrop {
  background: rgba(10, 14, 13, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111816;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: rgba(251, 250, 247, 0.8);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251, 250, 247, 0.24);
  border-radius: 50%;
  background: rgba(20, 28, 26, 0.82);
  color: var(--color-paper);
  font-size: 1.1rem;
  cursor: pointer;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 44px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list a,
.info-row {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 56px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 24px;
  color: var(--color-clay);
  font-weight: 900;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 20px 0;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 34px;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 11px 12px;
  background: var(--color-panel);
  color: var(--color-ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.map-placeholder {
  display: grid;
  min-height: 270px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(73, 111, 98, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(73, 111, 98, 0.15) 1px, transparent 1px),
    #eee8df;
  background-size: 28px 28px;
  color: var(--color-muted);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  background: #141c1a;
  color: var(--color-paper);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(140px, 0.5fr));
  gap: 28px;
}

.site-footer a,
.site-footer p {
  color: rgba(251, 250, 247, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 250, 247, 0.16);
  color: rgba(251, 250, 247, 0.64);
  font-size: 0.92rem;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 60;
  padding: 10px 14px;
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 22px;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .section-head,
  .split,
  .project-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-info-card {
    position: static;
  }

  .project-hero-meta,
  .photo-gallery,
  .drawing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero,
  .hero.compact,
  .project-hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 70px 0 48px;
  }

  .section {
    padding: 56px 0;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .stats,
  .form-row,
  .project-hero-meta,
  .photo-gallery,
  .drawing-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall,
  .drawing-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .button {
    width: 100%;
  }
}

/* Premium Goomarq architect template refinements */
.premium-nav .nav-links a[href*="about"],
.premium-nav .nav-links a[href*="faq"],
.premium-nav .nav-links a[href*="testimonials"] {
  display: none;
}

.premium-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--color-paper);
}

.premium-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 28, 26, 0.86), rgba(20, 28, 26, 0.42), rgba(20, 28, 26, 0.16));
}

.premium-hero .hero-content {
  padding-bottom: 64px;
}

.carousel-row {
  display: grid;
  grid-auto-columns: minmax(280px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 16px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.carousel-row > * {
  scroll-snap-align: start;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.listing-card img,
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.listing-card:nth-child(2n) img,
.service-card:nth-child(2n) img {
  filter: saturate(0.82) contrast(1.08);
}

.listing-card:nth-child(3n) img,
.service-card:nth-child(3n) img {
  filter: sepia(0.16) saturate(0.9);
}

.listing-body {
  padding: 18px;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.two-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trust-card {
  min-width: 220px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 22px;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #e7ded2;
  color: var(--color-clay);
  font-weight: 900;
}

.testimonial-card {
  min-width: 310px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 20px;
}

.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-photo {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-paper);
  font-weight: 900;
}

.stars {
  color: #b97839;
  letter-spacing: 0;
}

.lead-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.service-grid,
.pricing-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--color-panel);
  color: var(--color-muted);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.pricing-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 28px;
}

.price {
  color: var(--color-clay);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.pricing-note {
  margin-top: 20px;
  color: var(--color-muted);
  text-align: center;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.48fr);
  gap: 34px;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111816;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumbnail-row button {
  min-height: 78px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: var(--color-panel);
  cursor: pointer;
}

.thumbnail-row button.is-active {
  border-color: var(--color-clay);
}

.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-action-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.action-stack {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.action-stack .button {
  width: 100%;
}

.video-placeholder {
  display: grid;
  min-height: 330px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 33, 31, 0.92), rgba(73, 111, 98, 0.82)), url("../images/architectural-studio-hero.png") center / cover;
  color: var(--color-paper);
  font-size: 1.25rem;
  font-weight: 900;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 18px;
  background: #1f7a4f;
  color: #fff;
  font-weight: 850;
}

@media (max-width: 920px) {
  .service-grid,
  .pricing-grid,
  .project-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .project-action-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .premium-hero {
    min-height: 560px;
  }

  .carousel-row {
    grid-auto-columns: minmax(250px, 84vw);
  }

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