:root {
  --navy: #0b1f3a;
  --navy-soft: #152d52;
  --gold: #c8a46b;
  --gold-deep: #b68d4a;
  --warm: #f8f6f2;
  --beige: #efe7dc;
  --charcoal: #2b2b2b;
  --muted: #6f6a64;
  --card: rgba(255, 255, 255, 0.7);
  --border: rgba(200, 164, 107, 0.22);
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
  --gold-gradient: linear-gradient(135deg, #f0dfbf 0%, #c8a46b 45%, #9e7535 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 164, 107, 0.12), transparent 32%),
    linear-gradient(180deg, #f9f6f1 0%, #f5efe7 100%);
  color: var(--charcoal);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-padding {
  padding: 5.5rem 0;
}

.soft-section {
  background: linear-gradient(180deg, rgba(239, 231, 220, 0.45) 0%, rgba(248, 246, 242, 0.6) 100%);
}

.dark-panel {
  background:
    radial-gradient(circle at top, rgba(200, 164, 107, 0.2), transparent 30%),
    linear-gradient(180deg, #0a1a31 0%, #0f2645 100%);
  color: var(--warm);
}

.eyebrow,
.mini-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.hero p,
.dark-panel p,
.site-footer p,
.site-footer a,
.hero-card {
  color: rgba(248, 246, 242, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #21180e;
  box-shadow: 0 18px 40px rgba(182, 141, 74, 0.28);
}

.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--warm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 31, 58, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(11, 31, 58, 0.84);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 35px rgba(10, 24, 43, 0.24);
}

.site-header-solid {
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(18px);
}

.site-header.theme-light,
.site-header.site-header-solid.theme-light {
  background: rgba(248, 246, 242, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(10, 24, 43, 0.08);
}

.site-header.theme-dark,
.site-header.site-header-solid.theme-dark {
  background: rgba(11, 31, 58, 0.84);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 35px rgba(10, 24, 43, 0.24);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gold-gradient);
  color: #2d2010;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-mark-image {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  padding: 0;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: var(--warm);
  font-size: 1rem;
}

.brand-copy small {
  color: rgba(248, 246, 242, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--warm);
  font-size: 0.95rem;
}

.site-nav a.active {
  color: var(--gold);
}

.site-header.theme-light .brand-copy strong,
.site-header.theme-light .site-nav a {
  color: var(--navy);
}

.site-header.theme-light .menu-toggle span {
  background-color: var(--navy);
}

.site-header.theme-light .brand-copy small {
  color: rgba(11, 31, 58, 0.65);
}

.site-header.theme-light .nav-cta.btn-gold {
  color: #21180e;
}

.site-header.theme-light .site-nav a.active {
  color: var(--gold-deep);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--warm);
  margin: 0.32rem 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.36)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=80") center/cover;
  transform: scale(1.04);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.42) 0%, rgba(11, 31, 58, 0.72) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.35;
}

.hero-glow-left {
  width: 18rem;
  height: 18rem;
  background: rgba(200, 164, 107, 0.16);
  left: -6rem;
  top: 8rem;
}

.hero-glow-right {
  width: 26rem;
  height: 26rem;
  background: rgba(255, 255, 255, 0.08);
  right: -8rem;
  bottom: -4rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: end;
  min-height: 100vh;
  padding: 7rem 0 5rem;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.94;
  color: var(--warm);
  margin-top: 1rem;
}

.hero-text {
  margin-top: 1.4rem;
  max-width: 42rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.hero-meta div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--warm);
}

.hero-meta small {
  color: rgba(248, 246, 242, 0.72);
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(248, 246, 242, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
  color: var(--warm);
  font-size: 2rem;
  line-height: 1.04;
  margin: 0.9rem 0 1rem;
}

.hero-card-line {
  width: 5rem;
  height: 2px;
  background: var(--gold-gradient);
}

.hero-card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-card-points span,
.contact-pills span,
.filter-btn {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gold-divider {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: min(220px, 40vw);
  height: 2px;
  background: var(--gold-gradient);
}

.split-layout,
.transformation-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  color: var(--warm);
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.55)),
    linear-gradient(180deg, rgba(200, 164, 107, 0.12), transparent),
    var(--navy);
}

.page-hero-about {
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.48)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero-services {
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.48)),
    url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero-portfolio {
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.48)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero-contact {
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.48)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero-inner {
  max-width: 52rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.96;
  margin-top: 0.8rem;
}

.page-hero p:not(.eyebrow) {
  color: rgba(248, 246, 242, 0.84);
  margin-top: 1rem;
  max-width: 42rem;
}

.section-heading,
.section-intro {
  max-width: 46rem;
}

.section-heading h2,
.section-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  color: var(--navy);
  margin-top: 0.8rem;
}

.section-heading p:last-child,
.section-intro p:not(.eyebrow) {
  margin-top: 1rem;
}

.image-stack {
  position: relative;
  min-height: 35rem;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.image-main {
  inset: 0 4.5rem 0 0;
}

.image-float {
  width: 48%;
  right: 0;
  bottom: 1.5rem;
  border: 10px solid rgba(248, 246, 242, 0.95);
}

.image-card img,
.project-card img,
.comparison-frame img {
  height: 100%;
  object-fit: cover;
}

.stats-grid,
.services-grid,
.why-grid,
.process-grid,
.footer-grid,
.detail-grid,
.page-links-grid,
.feature-grid {
  display: grid;
  gap: 1.4rem;
}

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

.stat-card,
.service-card,
.why-card,
.process-card,
.contact-panel,
.cta-card,
.testimonial-shell,
.detail-card,
.page-link-card,
.feature-tile {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card,
.service-card,
.why-card,
.process-card,
.contact-panel,
.detail-card,
.page-link-card,
.feature-tile {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--navy);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

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

.service-card {
  position: relative;
  min-height: 17rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.why-card:hover,
.process-card:hover,
.project-card:hover {
  transform: translateY(-6px);
}

.service-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(239,231,220,0.95));
}

.service-icon,
.process-card span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 107, 0.14);
  color: var(--gold-deep);
  font-weight: 800;
}

.service-card h3,
.why-card h3,
.process-card h3,
.project-overlay h3,
.testimonial-card h3,
.site-footer h3 {
  margin-top: 1rem;
  color: var(--navy);
  font-size: 1.8rem;
}

.service-card p,
.why-card p,
.process-card p {
  margin-top: 0.75rem;
}

.service-card a {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}

.why-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.page-links-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-tile {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.feature-list span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-padding .feature-list span {
  color: var(--navy);
  background: rgba(200, 164, 107, 0.12);
  border-color: rgba(200, 164, 107, 0.2);
}

.dark-panel .feature-list span {
  color: var(--warm);
}

.comparison-frame {
  position: relative;
  height: 34rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.comparison-before-wrap,
.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
}

.comparison-before-wrap {
  left: 0;
  width: 55%;
  overflow: hidden;
}

.comparison-before {
  filter: grayscale(1) brightness(0.75);
}

.comparison-line {
  left: 55%;
  width: 3px;
  background: rgba(248, 246, 242, 0.8);
  transform: translateX(-50%);
}

.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #1d1409;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-range {
  width: 100%;
  margin-top: 1.2rem;
  accent-color: var(--gold);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.filter-btn {
  cursor: pointer;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--warm);
}

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

.portfolio-grid-tall .project-card {
  height: 28rem;
}

.project-card {
  position: relative;
  height: 26rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(11, 31, 58, 0.82) 100%);
}

.project-overlay {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  z-index: 1;
}

.project-overlay span {
  color: var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-overlay h3 {
  color: var(--warm);
}

.project-card.hidden {
  display: none;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-shell,
.cta-card {
  padding: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.78));
  border: 1px solid var(--border);
}

.testimonial-carousel {
  position: relative;
  min-height: 14rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}

.quote {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold-deep);
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.cta-section .cta-card {
  background: rgba(248, 246, 242, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  backdrop-filter: blur(12px);
}

.cta-section h2,
.dark-panel .section-intro h2 {
  color: var(--warm);
}

.contact-list,
.site-footer div {
  display: grid;
  gap: 0.8rem;
}

.contact-list a {
  color: var(--navy);
  font-weight: 700;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-pills span {
  color: var(--navy);
  background: rgba(200, 164, 107, 0.12);
  border-color: rgba(200, 164, 107, 0.2);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form span {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
}

.map-frame {
  margin-top: 2rem;
}

.map-frame iframe {
  width: 100%;
  height: 26rem;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #081628;
  color: rgba(248, 246, 242, 0.72);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}

.footer-brand strong,
.footer-brand small,
.site-footer h3 {
  color: var(--warm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.whatsapp-float,
.consult-float {
  position: fixed;
  z-index: 22;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.24);
}

.whatsapp-float {
  right: 1rem;
  bottom: 1rem;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 800;
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.consult-float {
  left: 1rem;
  bottom: 1rem;
  padding: 0.95rem 1.2rem;
  background: var(--navy);
  color: var(--warm);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .transformation-grid,
  .contact-grid,
  .footer-grid,
  .stats-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .portfolio-grid,
  .detail-grid,
  .page-links-grid,
  .feature-grid,
  .services-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-stack {
    min-height: 28rem;
  }
}

@media (max-width: 780px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.site-header-solid,
  .site-header.theme-light,
  .site-header.theme-dark,
  .site-header.site-header-solid.theme-light,
  .site-header.site-header-solid.theme-dark {
    background: rgba(11, 31, 58, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(10, 24, 43, 0.24);
  }

  .site-header .brand-copy strong,
  .site-header.theme-light .brand-copy strong,
  .site-header .site-nav a,
  .site-header.theme-light .site-nav a {
    color: var(--warm);
  }

  .site-header .brand-copy small,
  .site-header.theme-light .brand-copy small {
    color: rgba(248, 246, 242, 0.72);
  }

  .site-header .menu-toggle span,
  .site-header.theme-light .menu-toggle span {
    background-color: var(--warm);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.open .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(11, 31, 58, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  }

  .hero-grid,
  .split-layout,
  .transformation-grid,
  .contact-grid,
  .stats-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .portfolio-grid,
  .footer-grid,
  .hero-meta,
  .detail-grid,
  .page-links-grid,
  .feature-grid,
  .services-grid-wide {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 6.5rem 0 4rem;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .hero-card,
  .cta-card,
  .testimonial-shell {
    padding: 1.6rem;
  }

  .comparison-frame,
  .project-card,
  .portfolio-grid-tall .project-card {
    height: 22rem;
  }

  .image-stack {
    min-height: 22rem;
  }

  .image-main {
    inset: 0 2rem 0 0;
  }

  .image-float {
    width: 46%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
