:root {
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --bg: #fbf9f8;
  --surface-low: #f6f3f2;
  --surface: #f0eded;
  --surface-high: #eae8e7;
  --surface-highest: #e4e2e1;
  --white: #ffffff;
  --text: #1b1c1c;
  --muted: #424750;
  --outline: rgba(115, 119, 129, 0.18);
  --primary: rgb(115 88 88);
  --primary-strong: rgb(115 88 88);
  --primary-soft: #d4e3ff;
  --accent: #934b00;
  --accent-soft: #ffdcc5;
  --shadow: 0 24px 64px rgba(27, 28, 28, 0.06);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 248, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(115, 119, 129, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5e6670;
  padding-bottom: 0.35rem;
}

.nav-links a.active {
  color: var(--primary-strong);
  border-bottom: 2px solid var(--primary-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 10px;
  padding: 0.92rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 8px 22px rgba(0, 41, 81, 0.16);
}

.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem 1.55rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--white);
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 800;
}

.floating-call {
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.floating-call.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 1rem);
}

.floating-call-phone {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.82;
  text-transform: none;
}

.page-main {
  padding-top: 0;
  padding-bottom: 5rem;
}

.hero-home {
  position: relative;
  height: calc(100svh - 84px);
  min-height: 42rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
}

.hero-stage.is-loading #heroImage,
.hero-stage.is-loading .hero-copy {
  opacity: 0;
}

.hidden {
  display: none !important;
}

.hero-stage img,
.media-tile img,
.project-tile img,
.contact-hero img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage::after,
.contact-hero::after,
.media-tile::after,
.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-stage::after {
  background: linear-gradient(90deg, rgba(27, 28, 28, 0.86) 0%, rgba(27, 28, 28, 0.34) 66%, rgba(27, 28, 28, 0.16) 100%);
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(var(--hero-copy-offset-x, 0px), calc(-50% + var(--hero-copy-offset-y, 0px)));
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  max-width: 46rem;
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #301400;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.cta-band h2 {
  font-family: var(--font-display);
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-copy p {
  margin: 0;
  max-width: 38rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.stat-box,
.service-card,
.project-card,
.info-panel,
.material-tile,
.team-card,
.text-panel,
.legal-card {
  background: var(--surface-low);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.stat-box {
  min-height: 6.75rem;
  padding: 0.95rem 0.95rem 0.8rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 242, 0.94);
}

.stat-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
}

.stat-box span {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-tile {
  position: relative;
  min-height: 6.75rem;
  overflow: hidden;
  border-radius: 14px;
}

.media-tile::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 41, 81, 0.72) 100%);
}

.media-caption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.section {
  padding-top: 5rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  margin: 0.7rem 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-weight: 900;
}

.section-head p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.span-8 {
  grid-column: span 8;
}

.span-6 {
  grid-column: span 6;
}

.span-4 {
  grid-column: span 4;
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card.large {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-copy,
.service-image,
.service-body {
  min-height: 100%;
}

.service-copy,
.service-body {
  padding: 2.25rem;
}

.service-image img {
  min-height: 100%;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.service-card h3,
.project-card h3,
.team-card h3,
.info-panel h3,
.legal-card h1,
.legal-card h2 {
  font-family: var(--font-display);
  margin: 0 0 0.9rem;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.service-card.dark {
  background: var(--primary);
  color: var(--white);
}

.service-card.dark h3,
.service-card.dark p,
.service-card.dark li,
.service-card.dark .meta-label {
  color: var(--white);
}

.service-card.dark .icon-badge {
  background: var(--white);
  color: var(--primary);
}

.service-card p,
.project-card p,
.info-panel p,
.meta-label,
.legal-card p {
  color: var(--muted);
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-list,
.detail-list,
.legal-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li,
.detail-list li,
.legal-list li {
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before,
.detail-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
}

.progress-block {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(115, 119, 129, 0.18);
}

.progress-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #737781;
}

.progress-bar {
  margin-top: 0.7rem;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.progress-scale {
  margin-top: 0.35rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  color: #737781;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 2rem 0;
}

.stats-band .stat-box {
  background: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -1.5rem 2rem 2rem -1.5rem;
  border-radius: 32px;
  background: rgba(0, 63, 119, 0.08);
  z-index: 0;
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 34rem;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.page-hero {
  padding-top: 2rem;
  padding-bottom: 1rem;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: end;
}

.page-hero h1 {
  color: var(--primary);
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  font-size: 1.06rem;
  color: var(--muted);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.metric-stack {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.metric-box {
  min-width: 200px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-low);
  border: 1px solid var(--outline);
}

.metric-box strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
}

.metric-box span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0 0.5rem;
  border-bottom: 1px solid rgba(115, 119, 129, 0.15);
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface-highest);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.chip.active {
  background: var(--primary);
  color: var(--white);
}

.project-grid-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.project-card.small {
  grid-column: span 4;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  min-height: 18rem;
}

.project-card.featured .project-tile {
  min-height: 25rem;
}

.project-tile::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 41, 81, 0.56) 100%);
}

.project-flag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.project-meta p {
  margin: 0;
}

.pill {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-highest);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.load-more .button {
  background: var(--surface-low);
  color: var(--primary);
  box-shadow: none;
  border: 1px solid var(--outline);
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  padding: 4rem 2rem;
  border-radius: 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-band p {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto 2rem;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 84px);
  max-height: calc(100svh - 84px);
  border-radius: 0;
}

.contact-hero::after {
  background: rgba(27, 28, 28, 0.62);
}

.contact-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  max-width: 46rem;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
  padding-top: 4rem;
}

.contact-card,
.info-panel {
  background: transparent;
}

.contact-card h2,
.team-panel h2 {
  margin: 0;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section-bar {
  width: 3rem;
  height: 4px;
  margin: 0.8rem 0 1.2rem;
  background: var(--accent);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field,
.field-full {
  display: grid;
  gap: 0.5rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #737781;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 1rem;
  background: var(--surface-low);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-bottom-color: var(--primary);
}

.info-panel {
  display: grid;
  gap: 1.5rem;
}

.info-box,
.map-box {
  padding: 2rem;
  background: var(--surface);
}

.info-box {
  position: relative;
  overflow: hidden;
}

.info-box::after {
  content: "▦";
  position: absolute;
  right: -0.2rem;
  bottom: -2.6rem;
  font-size: 10rem;
  line-height: 1;
  color: rgba(0, 41, 81, 0.05);
}

.info-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-icon {
  color: var(--accent);
  font-weight: 900;
}

.map-box {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
}

.map-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.55;
}

.map-pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.map-pill {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.map-pin-badge {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.team-panel {
  margin-top: 5rem;
  padding: 4rem 0;
  background: var(--surface-low);
}

.section-full {
  width: 100%;
}

.cta-band .inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.team-card {
  overflow: hidden;
  border-radius: 0;
}

.team-card img {
  aspect-ratio: 4 / 5;
}

.team-copy {
  padding: 1.8rem;
}

.team-role {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(115, 119, 129, 0.14);
  margin-top: 2rem;
}

.material-tile {
  padding: 2rem;
  background: var(--surface-low);
  border: 0;
  box-shadow: none;
}

.material-index {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer {
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  background: #f2f2f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h4 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #000;
  font-size: 0.94rem;
}

.footer-list {
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(115, 119, 129, 0.14);
  color: #737781;
  font-size: 0.88rem;
}

.legal-wrap {
  padding: 4rem 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 2rem;
}

.legal-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .page-hero-grid,
  .split-section,
  .contact-grid,
  .footer-grid,
  .legal-grid,
  .team-grid,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band {
    display: grid;
  }

  .service-card.large {
    grid-template-columns: 1fr;
  }

  .span-8,
  .span-6,
  .span-4,
  .project-card.featured,
  .project-card.small {
    grid-column: span 12;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .inner {
    width: min(calc(100% - 1.2rem), var(--max));
  }

   #siteHeader > header > div > .button {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 1rem;
  }

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

  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .hero-copy,
  .contact-hero-copy {
    left: 1.5rem;
    right: 1.5rem;
  }

  .hero-copy {
    top: auto;
    bottom: calc(2rem + var(--hero-mobile-copy-offset-y, 0px));
    transform: translateX(var(--hero-mobile-copy-offset-x, 0px));
    width: calc(100% - 3rem);
  }

  .hero-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--hero-mobile-image-fit, cover);
    transform: scale(var(--hero-mobile-image-scale, 1));
    transform-origin: center center;
  }

  .contact-form,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    height: auto;
    min-height: 44rem;
    padding-bottom: 0;
  }

  .hero-home {
    height: auto;
    min-height: auto;
  }

  .contact-hero {
    min-height: 36rem;
    max-height: none;
  }

  .contact-hero-copy {
    width: calc(100% - 3rem);
  }

  .hero-copy h1,
  .page-hero h1,
  .cta-band h2 {
    font-size: 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    transition: none;
  }
}
#servicesApp > section > section.services-cta > div > div > a.services-button.is-ghost {
  display: none!important;
}

@media (max-width: 480px) {
  /* smartphone styles */

  .site-header {
    padding: 1rem;
  }

  .site-footer {
    padding: 1rem;
  }
}
