/*
Theme Name: ARVIGG BUILDS
Theme URI: http://localhost:3007
Author: Codex
Description: Custom classic theme for ARVIGG BUILDS.
Version: 1.0.0
Text Domain: arvigg-builds
*/

:root {
  --arvigg-ink: #10233a;
  --arvigg-ink-soft: #47596d;
  --arvigg-primary: #173e6e;
  --arvigg-primary-strong: #1e5ca8;
  --arvigg-accent: #d8a750;
  --arvigg-accent-soft: #f4e3bd;
  --arvigg-surface: #ffffff;
  --arvigg-surface-soft: #f4f7fb;
  --arvigg-line: #d7e2ee;
  --arvigg-footer: #0d1b2c;
  --arvigg-footer-2: #10233a;
  --arvigg-shadow: 0 24px 60px rgba(16, 35, 58, 0.12);
  --arvigg-radius-xl: 34px;
  --arvigg-radius-lg: 26px;
  --arvigg-radius-md: 18px;
  --arvigg-wrap: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--arvigg-ink);
  background:
    radial-gradient(circle at top left, rgba(30, 92, 168, 0.08), transparent 24%),
    linear-gradient(180deg, #f7fafe 0%, #ffffff 30%, #f4f7fb 100%);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--arvigg-primary); text-decoration: none; }
a:hover { color: var(--arvigg-primary-strong); }
img { display: block; max-width: 100%; height: auto; }

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

.arvigg-wrap--wide {
  width: min(100% - 32px, 1320px);
}

.utility-bar {
  background: linear-gradient(90deg, var(--arvigg-footer), var(--arvigg-footer-2));
  color: #f4f8fc;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.utility-bar__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.utility-bar__meta,
.utility-bar__actions,
.topbar-menu,
.topbar-menu ul,
.primary-menu,
.primary-menu ul,
.footer-menu,
.footer-menu ul {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-menu,
.topbar-menu ul,
.primary-menu,
.primary-menu ul,
.footer-menu,
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-bar a { color: #f4f8fc; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,35,58,.08);
}

.site-header__inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--arvigg-ink);
}

.brand__logo { max-height: 58px; width: auto; }

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__title {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
}

.brand__subtitle {
  font-size: 12px;
  color: #627589;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-menu { justify-self: center; }
.primary-menu a {
  color: var(--arvigg-ink);
  font-weight: 700;
  letter-spacing: .01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arvigg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.arvigg-btn:hover { transform: translateY(-1px); }
.arvigg-btn--primary {
  background: linear-gradient(135deg, var(--arvigg-primary), var(--arvigg-primary-strong));
  color: #fff;
  box-shadow: 0 14px 28px rgba(23,62,110,.22);
}
.arvigg-btn--secondary {
  background: #fff;
  color: var(--arvigg-ink);
  border-color: var(--arvigg-line);
  box-shadow: 0 10px 24px rgba(16,35,58,.08);
}

.breadcrumbs {
  padding: 18px 0 4px;
  color: #66788c;
  font-size: 14px;
}

.hero-shell { padding: 18px 0 26px; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--arvigg-radius-xl);
  box-shadow: var(--arvigg-shadow);
  background: linear-gradient(135deg, rgba(10,24,41,.88), rgba(21,62,117,.76));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .34;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,24,41,.9), rgba(10,24,41,.58) 55%, rgba(10,24,41,.22));
}

.hero-card__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
  padding: 54px 0;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 11ch;
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.72;
  color: rgba(255,255,255,.86);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.quote-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  color: var(--arvigg-ink);
  box-shadow: 0 20px 40px rgba(10,24,41,.22);
}

.quote-card h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--arvigg-ink-soft);
}

.quote-card__facts {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.quote-card__facts span {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--arvigg-surface-soft);
  font-weight: 700;
}

.site-main { padding-bottom: 56px; }
.section-shell { padding: 14px 0; }

.panel-card {
  background: var(--arvigg-surface);
  border: 1px solid rgba(16,35,58,.08);
  border-radius: var(--arvigg-radius-lg);
  box-shadow: var(--arvigg-shadow);
  padding: 34px;
}

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

.content-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.service-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.panel-card h2,
.panel-card h3 {
  margin: 0 0 14px;
  color: var(--arvigg-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.page-content h4 {
  margin: 22px 0 10px;
  color: var(--arvigg-ink);
  font-size: 22px;
  line-height: 1.18;
}

.panel-card p,
.panel-card li {
  color: var(--arvigg-ink-soft);
  font-size: 18px;
}

.panel-card ul { padding-left: 20px; }

.link-list ul {
  columns: 1;
  gap: 18px;
  margin: 0;
}

.link-list--columns ul {
  columns: 2;
}

.link-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.link-list a {
  font-weight: 700;
}

.service-tile {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--arvigg-line);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.service-tile h3 { font-size: 24px; margin-bottom: 10px; }
.service-tile p { margin: 0 0 16px; }

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--arvigg-line);
  background: var(--arvigg-surface-soft);
}

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

.gallery-item figcaption {
  padding: 12px 14px;
  color: var(--arvigg-ink-soft);
  font-size: 15px;
}

.page-gallery {
  padding: 0;
}

.page-gallery--global {
  padding: 18px 0 8px;
}

.page-gallery__heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.page-gallery__heading h2 {
  margin-bottom: 10px;
}

.page-gallery__heading p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  color: var(--arvigg-ink-soft);
}

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

.page-gallery__item {
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.page-gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-gallery__item img {
  height: 260px;
}

.page-gallery--global .page-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f9fbfd);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.page-gallery--global .page-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(15,23,42,0), rgba(15,23,42,.08));
  pointer-events: none;
}

.page-gallery--global .page-gallery__item img {
  height: 280px;
  transition: transform .35s ease, filter .35s ease;
}

.page-gallery--global .page-gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.page-gallery-modal__dialog {
  width: min(100% - 40px, 1080px);
}

.page-gallery-modal__header {
  margin: 8px 0 18px;
}

.page-gallery-modal__header h3 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: .95;
  letter-spacing: -.05em;
}

.page-gallery-modal__frame {
  border-radius: 22px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

.page-gallery-modal__frame img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: #fff;
}

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

.faq-item {
  border-top: 1px solid var(--arvigg-line);
  padding-top: 14px;
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #edf4ff, #fff6e9);
}

.cta-band p {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--arvigg-ink);
}

.site-footer {
  margin-top: 42px;
  background: linear-gradient(180deg, var(--arvigg-footer), var(--arvigg-footer-2));
  color: #f5f8fc;
  padding: 54px 0 20px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr .9fr;
  gap: 24px;
}

.site-footer h3 {
  margin: 14px 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: rgba(245,248,252,.66);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(245,248,252,.82);
}

.footer-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

.page-content > * + * { margin-top: 22px; }

@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: 1fr; justify-items: start; padding: 18px 0; }
  .primary-menu { justify-self: start; }
  .hero-card__content,
  .content-grid,
  .service-grid,
  .gallery-grid,
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .utility-bar__inner,
  .header-actions,
  .topbar-menu, .topbar-menu ul,
  .primary-menu, .primary-menu ul,
  .hero-actions,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-card,
  .panel-card,
  .cta-band { border-radius: 24px; }
  .hero-card__content,
  .content-grid,
  .service-grid,
  .gallery-grid,
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 10px; }
  .hero-panel { padding-top: 0; }
}

:root {
  --arvigg-ink: #232323;
  --arvigg-ink-soft: #606060;
  --arvigg-primary: #6a6a6a;
  --arvigg-primary-strong: #575757;
  --arvigg-accent: #e1ca5d;
  --arvigg-accent-soft: #f8f0c8;
  --arvigg-surface: #ffffff;
  --arvigg-surface-soft: #f3f3f3;
  --arvigg-line: #d8d8d8;
  --arvigg-footer: #545454;
  --arvigg-footer-2: #474747;
  --arvigg-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

body {
  background:
    radial-gradient(circle at top left, rgba(225, 202, 93, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(120, 120, 120, 0.1), transparent 30%),
    linear-gradient(180deg, #f2f2f2 0%, #fbfbfb 28%, #f0f0f0 100%);
}

.site-header {
  position: relative;
  top: auto;
  backdrop-filter: none;
  border-bottom: 0;
  background: transparent;
}

.header-top {
  background:
    linear-gradient(135deg, rgba(225, 202, 93, 0.1), rgba(255, 255, 255, 0.45)),
    linear-gradient(180deg, #e8e8e8 0%, #dddddd 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-top__inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-cta {
  display: grid;
  gap: 8px;
}

.header-cta--left,
.header-cta--right {
  padding-top: 26px;
}

.header-cta--left { justify-items: start; }
.header-cta--right { justify-items: end; text-align: right; }

.header-cta span,
.header-cta span a {
  color: var(--arvigg-ink-soft);
  font-size: 20px;
  font-weight: 700;
}

.header-stars {
  display: inline-flex;
  gap: 6px;
  color: #f0cf4e;
  padding-left: 2px;
}

.header-stars svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 8px rgba(240, 207, 78, 0.45));
}

.brand { justify-self: center; }
.brand__logo { max-height: 92px; width: auto; }

.header-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(225, 202, 93, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #6a6a6a 0%, #565656 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu-toggle__icon {
  display: inline-grid;
  gap: 4px;
}

.mobile-menu-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.primary-menu-wrap { display: flex; justify-content: center; }

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu > li { position: relative; }

.submenu-toggle {
  display: none;
}

.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-menu > li:hover > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--arvigg-accent);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 20;
  min-width: 360px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 14px;
  margin: 0;
  list-style: none;
  background: rgba(70, 70, 70, 0.985);
  border: 1px solid rgba(225, 202, 93, 0.32);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, 16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.primary-menu .sub-menu li a {
  display: block;
  min-height: 100%;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 12px;
}

.primary-menu .sub-menu li a:hover {
  color: var(--arvigg-accent);
  background: rgba(225, 202, 93, 0.1);
}

.arvigg-btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.arvigg-btn--primary {
  background: linear-gradient(135deg, var(--arvigg-accent), #d0b24d);
  color: #272727;
  box-shadow: 0 16px 34px rgba(225, 202, 93, 0.3);
}

.arvigg-btn--secondary,
.arvigg-btn--outline {
  background: linear-gradient(135deg, #767676, #5f5f5f);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.arvigg-btn--primary:hover { color: #1f1f1f; }
.arvigg-btn--secondary:hover,
.arvigg-btn--outline:hover { color: var(--arvigg-accent); }

.breadcrumbs {
  padding: 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.hero-shell { padding: 0 0 32px; }

.hero-card {
  width: 100%;
  min-height: 600px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.84), rgba(80, 80, 80, 0.78));
}

.hero-card__sr-image {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}

.hero-card::before { opacity: 0.45; }
.hero-card::after {
  background: linear-gradient(90deg, rgba(36, 36, 36, 0.9) 0%, rgba(66, 66, 66, 0.76) 52%, rgba(225, 202, 93, 0.16) 100%);
}

.hero-card__content {
  min-height: 600px;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .56fr);
  gap: 28px;
}

.hero-copy { padding: 34px 0 40px; }
.hero-kicker {
  background: rgba(225, 202, 93, 0.18);
  border-color: rgba(225, 202, 93, 0.22);
  color: #fff;
}

.hero-breadcrumbs { margin-bottom: 22px; }
.hero-breadcrumbs .breadcrumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-breadcrumbs .breadcrumbs a,
.hero-breadcrumbs .breadcrumbs span { color: rgba(255,255,255,.9); }

.quote-card {
  padding: 26px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(225, 202, 93, 0.08), rgba(255, 255, 255, 0.99)),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.quote-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(225, 202, 93, 0.18);
  color: #494949;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card h2 {
  font-size: 25px;
  margin-bottom: 8px;
  line-height: 1.08;
}

.quote-card p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.hero-form .wpcf7-form { display: grid; gap: 10px; }
.hero-form p,
.hero-form label { margin: 0; display: block; }
.hero-form p br {
  display: none;
}
.hero-panel {
  display: flex;
  justify-content: flex-end;
}
.quote-card {
  width: 100%;
  max-width: 360px;
}

.hero-card--estimate .hero-card__content {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .78fr);
  gap: 34px;
}

.hero-card--estimate .quote-card {
  max-width: 520px;
  padding: 24px 24px 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(225, 202, 93, 0.14), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero-card--estimate .quote-card h2 {
  font-size: 28px;
  line-height: 1;
}

.hero-card--estimate .quote-card p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42;
}

.hero-form .form-row {
  display: block;
}
.hero-form .form-row--single {
  display: block;
}
.hero-form .form-row > p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-form .form-row--single > p { grid-template-columns: 1fr; }
.hero-form label {
  font-size: 0;
  line-height: 0;
}
.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  margin-top: 6px;
  padding: 15px 16px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
  color: var(--arvigg-ink);
  font-size: 16px;
  line-height: 1.35;
  box-shadow: none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder,
.hero-form select::placeholder {
  color: #8a8a8a;
  font-size: 15px;
}

.hero-form textarea {
  min-height: 116px;
  max-height: 140px;
  resize: vertical;
}
.hero-form .wpcf7-form-control-wrap { display: block; }
.hero-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #767676 50%),
    linear-gradient(135deg, #767676 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.hero-form .form-row--consent {
  margin-top: -2px;
}

.hero-form .form-row--consent > p,
.hero-form .form-row--consent label {
  display: block;
}

.hero-form .wpcf7-acceptance {
  display: block;
}

.hero-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.hero-form .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--arvigg-ink-soft);
}

.hero-form .wpcf7-acceptance input {
  margin: 4px 0 0;
}

.hero-form .wpcf7-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--arvigg-accent), #d0b24d);
  color: #272727;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(225, 202, 93, 0.22);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card--estimate .hero-form .wpcf7-form {
  gap: 8px;
}

.hero-card--estimate .hero-form .form-row > p {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-card--estimate .hero-form .form-row--single > p {
  grid-template-columns: 1fr;
}

.hero-card--estimate .hero-form input,
.hero-card--estimate .hero-form textarea,
.hero-card--estimate .hero-form select {
  margin-top: 2px;
  padding: 12px 12px;
  font-size: 15px;
  border-radius: 9px;
}

.hero-card--estimate .hero-form input::placeholder,
.hero-card--estimate .hero-form textarea::placeholder,
.hero-card--estimate .hero-form select::placeholder {
  font-size: 14px;
}

.hero-card--estimate .hero-form textarea {
  min-height: 84px;
  max-height: 108px;
}

.hero-card--estimate .hero-form .wpcf7-acceptance label {
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.hero-card--estimate .hero-form .wpcf7-submit {
  min-height: 46px;
  font-size: 13px;
}

.contact-hero-card__links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hero-panel .contact-hero-card__links .sidebar-inline-link {
  background: rgba(75, 75, 75, 0.06);
  color: var(--arvigg-ink) !important;
}

.hero-panel .contact-hero-card__links .sidebar-inline-link:hover {
  background: rgba(225, 202, 93, 0.16);
}

.hero-panel .contact-hero-card__links .sidebar-inline-link__icon {
  background: rgba(225, 202, 93, 0.18);
  color: #5a5542;
}

.contact-hero-card__meta {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--arvigg-ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(250px, .42fr);
  gap: 28px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 24px;
  justify-self: end;
  width: 100%;
  max-width: 300px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.content-grid--estimate {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .55fr);
  align-items: start;
}

.estimate-sidebar {
  display: grid;
  gap: 16px;
}

.estimate-sidebar .link-list h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.estimate-sidebar__checklist {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.estimate-sidebar__checklist ul {
  padding-left: 18px;
}

.contact-map-section {
  padding-top: 4px;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-map-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #575757, #474747);
  color: #fff;
  box-shadow: var(--arvigg-shadow);
}

.contact-map-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-map-copy p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.6;
}

.contact-map-copy .section-eyebrow {
  background: rgba(225, 202, 93, 0.18);
  color: #fff2b7;
}

.contact-map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-map-city {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-map-embed {
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--arvigg-shadow);
  border: 1px solid rgba(0,0,0,0.08);
  background: #e9e9e9;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
}

.service-sidebar__stack {
  display: grid;
  gap: 16px;
}

.sidebar-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.sidebar-card--soft {
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.18), rgba(255, 255, 255, 0.95));
}

.sidebar-card--cta {
  background: linear-gradient(135deg, #5b5b5b, #474747);
  color: #fff;
}

.sidebar-card--cta h3,
.sidebar-card--cta p {
  color: #fff;
}

.sidebar-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-card__header h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.02;
}

.sidebar-card__icon,
.sidebar-facts__icon,
.sidebar-inline-link__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(225, 202, 93, 0.18);
  color: #5a5542;
  flex: 0 0 40px;
}

.sidebar-card--cta .sidebar-inline-link__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #f0cf4e;
}

.sidebar-card__icon svg,
.sidebar-facts__icon svg,
.sidebar-inline-link__icon svg {
  width: 18px;
  height: 18px;
}

.sidebar-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.sidebar-facts {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-facts li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.sidebar-facts__copy {
  display: grid;
  gap: 3px;
}

.sidebar-facts__copy strong {
  color: var(--arvigg-ink);
  font-size: 15px;
}

.sidebar-facts__copy span {
  color: var(--arvigg-ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.sidebar-actions {
  display: grid;
  gap: 10px;
}

.sidebar-actions__button {
  justify-content: center;
}

.sidebar-inline-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-weight: 700;
}

.sidebar-inline-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sidebar-card--links h2 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.06;
}

.sidebar-card--links ul {
  margin: 0;
}

.sidebar-card--links a {
  display: inline-flex;
  padding: 3px 0;
  font-size: 15px;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(225, 202, 93, 0.14);
  color: #5d5740;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
  letter-spacing: -.05em;
}

.section-heading p {
  margin: 0;
  max-width: 70ch;
  font-size: 18px;
  color: var(--arvigg-ink-soft);
}

.home-story__stack {
  display: grid;
  gap: 20px;
  max-width: none;
  margin: 0;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.home-story__stack p {
  margin: 0;
  font-size: 21px;
  line-height: 1.62;
  color: #4e4e4e;
}

.home-story__stack p a {
  color: var(--arvigg-ink);
  font-weight: 800;
}

.home-story__highlight {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.2), rgba(255,255,255,0.96));
  color: var(--arvigg-ink) !important;
  font-size: clamp(28px, 3vw, 38px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: -.04em;
}

.home-band {
  padding: 24px 0;
}

.home-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #5a5a5a, #444);
  color: #fff;
  box-shadow: var(--arvigg-shadow);
}

.home-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .96;
  letter-spacing: -.05em;
}

.home-band__copy p {
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.home-band__copy .section-eyebrow {
  background: rgba(225, 202, 93, 0.18);
  color: #fff2b7;
  margin-bottom: 12px;
}

.home-band__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-promo-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f3f3f3);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-promo-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.18), rgba(225, 202, 93, 0.05));
  color: #5e5a48;
}

.service-promo-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-promo-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.service-promo-card p {
  margin: 0;
  font-size: 16px;
  color: var(--arvigg-ink-soft);
}

.service-promo-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.24), rgba(225, 202, 93, 0.12));
  color: #4e4a3c;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(225, 202, 93, 0.25);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.service-promo-card a span {
  font-size: 15px;
  transition: transform .18s ease;
}

.service-promo-card:hover a {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.4), rgba(225, 202, 93, 0.18));
}

.service-promo-card:hover a span {
  transform: translateX(2px);
}

.home-service-area-band {
  padding-top: 10px;
}

.service-area-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #616161, #525252);
  color: #fff;
  box-shadow: var(--arvigg-shadow);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

.service-area-band__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(225, 202, 93, 0.16);
}

.service-area-band__icon svg {
  width: 24px;
  height: 24px;
}

.service-area-band__copy {
  display: grid;
  gap: 4px;
}

.service-area-band__copy strong {
  font-size: 20px;
}

.service-area-band__copy span {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  transition: color .18s ease;
}

.service-area-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(225, 202, 93, 0.16);
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.service-area-band:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f2df87, #dbc15a);
  color: #3c392e;
  box-shadow: 0 26px 48px rgba(112, 95, 19, 0.22);
}

.service-area-band:hover .service-area-band__copy span {
  color: rgba(60, 57, 46, 0.86);
}

.service-area-band:hover .service-area-band__icon {
  background: rgba(255, 255, 255, 0.38);
  color: #4b4638;
}

.service-area-band:hover .service-area-band__cta {
  background: rgba(255, 255, 255, 0.56);
  color: #3c392e;
  box-shadow: inset 0 0 0 1px rgba(95, 82, 20, 0.12);
}

.projects-showcase {
  padding-top: 22px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(var(--projects-columns, 3), minmax(0, 1fr));
  gap: 20px;
}

.project-card__button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.project-card__media {
  display: block;
  height: 340px;
  border-radius: 24px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.6)),
    var(--project-cover);
  background-size: cover;
  background-position: center;
  box-shadow: var(--arvigg-shadow);
}

.project-card__content {
  display: grid;
  gap: 8px;
  margin-top: -86px;
  padding: 22px;
  width: calc(100% - 28px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  position: relative;
  z-index: 1;
}

.project-card__category {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(225, 202, 93, 0.18);
  color: #5b5846;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__content strong {
  font-size: 24px;
  line-height: 1.06;
}

.project-card__content span:last-child {
  color: #6a6a6a;
  font-weight: 800;
}

.projects-empty {
  text-align: center;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.project-modal.is-open {
  display: block;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,.78);
  backdrop-filter: blur(6px);
}

.project-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 34px auto;
  max-height: calc(100vh - 68px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
}

.project-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: inline-flex;
  border: 0;
  background: #4f4f4f;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.project-modal__header {
  margin: 12px 0 18px;
}

.project-modal__header h3 {
  margin: 10px 0 8px;
  font-size: 40px;
  line-height: .95;
  letter-spacing: -.05em;
}

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

.project-modal__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

body.project-modal-open {
  overflow: hidden;
}

.cta-band {
  background: linear-gradient(135deg, #f1f1f1, #f8f0c8);
}

.site-footer {
  margin-top: 52px;
  background:
    linear-gradient(135deg, rgba(225, 202, 93, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #555555 0%, #444444 100%);
  padding: 56px 0 24px;
}

.site-footer__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.site-footer__grid > section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer p,
.site-footer a,
.site-footer li { font-size: 17px; }

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  transition: color .18s ease, opacity .18s ease;
}

.site-footer a:hover {
  color: #f1dd82;
}

.footer-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.footer-stack {
  display: inline-grid;
  gap: 3px;
}

.footer-stack span {
  color: rgba(255,255,255,.84);
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--arvigg-accent);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 202, 93, 0.24), rgba(225, 202, 93, 0.1));
  color: #fff !important;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(225, 202, 93, 0.18);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.footer-pill-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e8d46d, #cdb24f);
  color: #3d392d !important;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.site-main a[href^="tel:"],
.site-main a[href^="mailto:"] {
  color: #3e3e3e;
  font-weight: 700;
  text-decoration-color: rgba(225, 202, 93, 0.7);
}

@media (max-width: 1080px) {
  .header-top__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 0;
    text-align: center;
  }

  .header-cta--left,
  .header-cta--right {
    padding-top: 0;
    justify-items: center;
    text-align: center;
  }

  .primary-menu { flex-wrap: wrap; gap: 22px; }
  .primary-menu > li > a { min-height: 64px; }
  .hero-card__content,
  .content-grid,
  .service-layout,
  .site-footer__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; top: auto; }
  .home-band__grid,
  .services-cards-grid,
  .projects-grid,
  .project-modal__gallery { grid-template-columns: 1fr 1fr; }
  .home-story__stack { padding: 30px; }
  .service-area-band { grid-template-columns: 1fr; }
  .contact-map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding-top: 8px;
  }

  .header-top__inner {
    gap: 16px;
    padding: 22px 0 18px;
  }

  .header-cta {
    gap: 6px;
  }

  .header-cta--left {
    order: 2;
  }

  .brand {
    order: 1;
  }

  .header-cta--right {
    order: 3;
  }

  .brand__logo { max-height: 78px; }
  .header-cta span,
  .header-cta span a { font-size: 16px; }
  .header-stars svg {
    width: 22px;
    height: 22px;
  }

  .header-nav {
    min-height: 0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .header-nav .arvigg-wrap {
    display: grid;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .primary-menu-wrap {
    display: none;
    width: 100%;
    justify-content: stretch;
  }

  .primary-menu-wrap.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(64, 64, 64, 0.98);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .primary-menu > li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .primary-menu > li > a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .submenu-toggle {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .submenu-toggle span {
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .submenu-toggle span:last-child {
    transform: rotate(90deg);
    transition: transform .18s ease;
  }

  .menu-item-has-children.submenu-open .submenu-toggle span:last-child {
    transform: rotate(0deg);
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 8px;
    grid-column: 1 / -1;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    border-radius: 16px;
  }

  .menu-item-has-children.submenu-open > .sub-menu {
    display: grid;
  }

  .hero-shell {
    padding-bottom: 20px;
  }

  .hero-card {
    min-height: auto;
    max-height: none;
  }

  .hero-card__content {
    min-height: auto;
    padding: 18px 0 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    padding: 14px 0 0;
  }

  .hero-breadcrumbs {
    margin-bottom: 14px;
  }

  .hero-breadcrumbs .breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    row-gap: 6px;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.95;
  }

  .hero-copy p {
    font-size: 18px;
    max-width: 32ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .arvigg-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-panel {
    justify-content: stretch;
  }

  .quote-card,
  .hero-card--estimate .quote-card {
    max-width: none;
    width: 100%;
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .quote-card h2,
  .hero-card--estimate .quote-card h2 {
    font-size: 26px;
    line-height: 1.02;
  }

  .quote-card p,
  .hero-card--estimate .quote-card p {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .hero-form .form-row > p { grid-template-columns: 1fr; }
  .hero-form input,
  .hero-form textarea,
  .hero-form select {
    font-size: 16px;
    padding: 14px 14px;
  }

  .section-shell {
    padding: 44px 0;
  }

  .section-heading h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1;
  }

  .home-band__grid,
  .services-cards-grid,
  .projects-grid,
  .project-modal__gallery { grid-template-columns: 1fr; }
  .home-story__stack {
    padding: 0;
    gap: 16px;
  }
  .home-story__stack p { font-size: 18px; }
  .home-story__highlight {
    padding: 16px 18px;
    font-size: clamp(24px, 8vw, 32px) !important;
  }
  .home-band__grid { padding: 24px; }
  .home-band__media img {
    min-height: 240px;
  }
  .contact-map-copy {
    padding: 22px;
  }
  .contact-map-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-map-actions .arvigg-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-map-embed iframe {
    min-height: 360px;
  }
  .service-promo-card {
    padding: 24px 20px;
  }
  .service-promo-card h3 {
    font-size: 22px;
  }
  .service-area-band {
    padding: 18px;
    gap: 14px;
  }
  .service-area-band__cta {
    width: 100%;
  }
  .content-grid,
  .service-layout {
    gap: 24px;
  }
  .service-sidebar__stack {
    gap: 14px;
  }
  .sidebar-card {
    padding: 18px;
  }
  .project-card__content {
    width: calc(100% - 20px);
    margin-top: -70px;
    padding: 18px;
  }
  .project-card__media { height: 280px; }
  .project-modal__dialog {
    width: min(100% - 20px, 1180px);
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    padding: 18px;
    border-radius: 22px;
  }
  .project-modal__header h3 {
    font-size: clamp(28px, 9vw, 40px);
  }
  .project-modal__item img {
    height: 240px;
  }
  .site-footer {
    margin-top: 36px;
    padding: 42px 0 20px;
  }
  .site-footer__grid {
    gap: 22px;
  }
  .site-footer__grid > section {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-footer__grid > section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .site-footer p,
  .site-footer a,
  .site-footer li {
    font-size: 16px;
  }
  .footer-pill-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .arvigg-wrap {
    width: min(100% - 28px, 1240px);
  }

  .brand__logo {
    max-height: 68px;
  }

  .header-cta span,
  .header-cta span a {
    font-size: 15px;
  }

  .header-stars svg {
    width: 20px;
    height: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .quote-card,
  .hero-card--estimate .quote-card {
    padding: 20px 16px 16px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 9.5vw, 38px);
  }

  .project-card__media {
    height: 240px;
  }

  .contact-map-city {
    font-size: 13px;
  }

  .contact-map-embed iframe {
    min-height: 320px;
  }

  .project-modal__item img {
    height: 200px;
  }
}

.deck-resources-cta {
  margin: 32px 0 8px;
}

.deck-brands-block {
  display: grid;
  gap: 28px;
}

.deck-brands-block__intro {
  display: grid;
  gap: 14px;
}

.deck-brand-card {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(252, 250, 244, 0.98), rgba(247, 242, 229, 0.96));
  box-shadow: 0 28px 60px rgba(27, 29, 34, 0.08);
  border: 1px solid rgba(33, 37, 41, 0.08);
}

.deck-brand-card__bar {
  height: 12px;
  background: linear-gradient(90deg, #5b5a56, #e1ca5d, #5b5a56);
}

.deck-brand-card__content {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px 30px 32px;
}

.deck-brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(33, 37, 41, 0.08);
  padding: 22px;
}

.deck-brand-card__logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
}

.deck-brand-card__copy {
  display: grid;
  gap: 14px;
}

.deck-brand-card__copy h3,
.deck-brand-card__copy p {
  margin: 0;
}

.deck-brand-card__action {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .deck-brand-card__content {
    grid-template-columns: 1fr;
  }
}
