:root {
  --site-scale: 1.17;
  --ink: #212121;
  --muted: #5f6c72;
  --line: #dddddd;
  --paper: #ffffff;
  --cream: #f2f2f2;
  --charcoal: #212121;
  --accent: #7db6b1;
  --accent-dark: #5a707a;
  --shadow: 0 20px 50px rgba(31, 39, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Century Gothic", "AppleGothic", "Avant Garde", Arial, sans-serif;
  line-height: 1.65;
  zoom: var(--site-scale);
}

@supports not (zoom: 1) {
  body {
    width: calc(100% / var(--site-scale));
    transform: scale(var(--site-scale));
    transform-origin: top left;
  }
}

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: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(33, 33, 33, 0.96);
  backdrop-filter: blur(14px);
}

.homepage .site-header {
  position: fixed;
  width: 100%;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(17, 20, 24, 0.62), rgba(17, 20, 24, 0));
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
}

.homepage .nav {
  width: 100%;
  padding: 12px 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: skew(-8deg);
}

.brand-mark::first-letter {
  font-size: 1.4rem;
}

.homepage .brand {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.homepage .brand-mark {
  width: 18px;
  height: 18px;
  font-size: 0.58rem;
}

.homepage .brand-mark::first-letter {
  font-size: 1.1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
}

.homepage .brand small {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
}

.homepage .nav-links {
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
  display: grid;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -14px;
  display: grid;
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(33, 33, 33, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 120ms ease, transform 120ms ease;
  z-index: 50;
}

.dropdown-menu a {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #ffffff;
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  padding: 8px 14px;
  font: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(33, 33, 33, 0.72), rgba(33, 33, 33, 0.28)),
    var(--hero-image, linear-gradient(135deg, #222, #777));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}

.hero.hero-cover {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)),
    var(--hero-image, linear-gradient(135deg, #222, #777));
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-spacer {
  height: 100vh;
}

.hero-cover-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42vh;
  z-index: 2;
}

.hero-logo {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.hero-submark {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  letter-spacing: 0.58em;
}

.hero-title {
  margin-top: 12px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Century Gothic", "AppleGothic", "Avant Garde", Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-title-italic {
  margin-top: 2px;
  font-style: italic;
}

.hero-note {
  max-width: 520px;
  margin-top: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.4;
}

.hero-ghost {
  min-height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 12px;
}

.hero-ghost:hover {
  border-color: #ffffff;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
  content: "";
  z-index: -1;
}

.hero-inner,
.section,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  max-width: 780px;
  padding: 78px 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  font-family: "Century Gothic", "AppleGothic", "Avant Garde", Arial, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

h2 {
  margin-bottom: 18px;
  color: #37474f;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero .lead {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
}

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  background: var(--charcoal);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 10px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
button.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.button.secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.section {
  padding: 76px 0;
}

.button-image-section {
  background: #2f2f2f;
  padding: 0;
}

.button-image-section img {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: block;
}

.intro-band {
  background: #ffffff;
  color: var(--ink);
  padding: 38px 24px 40px;
  text-align: center;
}

.intro-band h1 {
  max-width: none;
  margin: 0 0 18px;
  color: #202124;
  font-family: "Lato", Arial, sans-serif;
  font-size: 19pt;
  font-weight: 700;
  line-height: 1.3;
}

.intro-band p {
  max-width: 920px;
  margin: 0 auto;
  color: #202124;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.55;
  text-align: left;
}

.consultation-band {
  background: #ffffff;
  color: #202124;
  padding: 24px 24px 92px;
  text-align: center;
}

.consultation-copy {
  width: fit-content;
  max-width: calc(100% - 80px);
  margin: 0 auto 36px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.45;
  text-align: left;
}

.consultation-label {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.4;
}

.consultation-number {
  display: inline-block;
  color: #202124;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20pt;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quick-links-section {
  background: #2f2f2f;
  padding: 49px 24px 60px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
  width: min(1196px, calc(100% - 48px));
  margin: 0 auto;
}

.quick-link-card {
  color: #ffffff;
}

.quick-link-photo {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.quick-link-button {
  width: auto;
  height: 36px;
  margin: 0 auto 21px;
  object-fit: contain;
}

.quick-link-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11pt;
  line-height: 1.36;
  text-align: left;
}

.google-home-section {
  background: #ffffff;
  color: #202124;
  padding: 52px 24px 46px;
  text-align: center;
}

.google-home-wrap {
  width: min(900px, calc(100% - 24px));
  margin: 0 auto;
}

.google-home-wrap h2 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.google-home-wrap > p {
  margin: 0 0 50px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
}

.google-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  border: 2px solid #202124;
  color: #202124;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  padding: 2px 10px;
  text-decoration: none;
}

.google-exterior-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 24px;
  margin: 40px auto 30px;
}

.google-exterior-grid img,
.google-interior-row img,
.google-contact-images img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.google-exterior-grid img {
  aspect-ratio: 1.34 / 1;
}

.google-interior-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px auto 18px;
}

.google-interior-row figure {
  margin: 0;
}

.google-interior-row img {
  aspect-ratio: 1 / 1;
}

.google-interior-row figcaption {
  margin-top: 16px;
  color: #202124;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.google-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  text-align: left;
}

.google-home-form {
  padding: 22px;
}

.google-home-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.google-home-form h4,
.google-home-form p {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.google-home-form .form-grid {
  gap: 8px;
}

.google-home-form input {
  border-radius: 0;
  background: #e9e9e9;
  font-size: 13px;
  padding: 9px 11px;
}

.google-home-form .actions {
  margin-top: 12px;
}

.google-home-form .button {
  min-height: 34px;
  width: 100%;
  border-radius: 0;
  font-size: 13px;
  padding: 8px 12px;
}

.google-contact-images {
  display: grid;
  gap: 14px;
}

.google-contact-images img {
  aspect-ratio: 1.62 / 1;
}

.home-cta-band {
  background: #2f2f2f;
  color: #ffffff;
  padding: 48px 24px 42px;
  text-align: center;
}

.home-cta-band h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.home-cta-band p {
  max-width: 860px;
  margin: 0 auto;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.home-cta-button-band {
  background: #ffffff;
  padding: 22px 24px;
  text-align: center;
}

.google-outline-button-light {
  border-color: #202124;
  color: #202124;
}

.google-image-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.google-image-button img {
  display: block;
  width: 100%;
  height: auto;
}

.google-image-button-book {
  width: min(620px, 100%);
}

.google-image-button-view {
  width: min(612px, 100%);
}

.google-image-button-contact {
  width: min(612px, 100%);
}

.section.compact {
  padding: 58px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  background: var(--cream);
}

.section.alt > .section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: start;
}

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

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

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(31, 39, 43, 0.06);
  padding: 28px;
}

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-card .thumb {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(28, 29, 30, 0.16), rgba(28, 29, 30, 0.45)),
    var(--card-image, linear-gradient(135deg, #d8d0c5, #444));
  background-position: center;
  background-size: cover;
}

.project-card .body {
  padding: 26px;
}

.meta {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.list li {
  border-left: 3px solid var(--accent);
  background: rgba(138, 106, 67, 0.08);
  padding: 12px 14px;
}

.story {
  display: grid;
  gap: 28px;
}

.story article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.story article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quote-panel {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  background: var(--charcoal);
  color: #ffffff;
  padding: 34px;
}

.quote-panel.image-cta {
  background:
    linear-gradient(0deg, rgba(33, 33, 33, 0.82), rgba(33, 33, 33, 0.45)),
    var(--tile-image, linear-gradient(120deg, #444, #777));
  background-size: cover;
  background-position: center;
}

.google-copy {
  display: grid;
  gap: 22px;
}

.google-copy p {
  margin: 0;
}

.callout-line {
  color: #37474f;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.service-pill {
  border: 1px solid rgba(33, 33, 33, 0.16);
  background: #ffffff;
  color: #37474f;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  padding: 18px;
  text-align: center;
}

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

.image-pair-tight {
  margin-top: 20px;
}

.image-tile {
  min-height: 240px;
  background:
    linear-gradient(0deg, rgba(33, 33, 33, 0.18), rgba(33, 33, 33, 0.18)),
    var(--tile-image, linear-gradient(135deg, #d7d7d7, #777));
  background-position: center;
  background-size: cover;
}

.site-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  padding: 14px 16px 0;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  padding: 28px;
}

.quote-form h2 {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.quote-form h4 {
  margin: 0 0 15px;
  font-size: 1rem;
  font-weight: 400;
}

.quote-form p {
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #e5e5e5;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: background 160ms ease, border-color 160ms ease;
}

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

input:focus,
textarea:focus,
input.filled,
textarea.filled {
  background: #cfcfcf;
  border-color: transparent;
}

.success-message {
  display: none;
  margin: 16px 0 0;
  border-radius: 14px;
  background: rgba(58, 118, 86, 0.12);
  color: #286542;
  font-weight: 700;
  padding: 12px 14px;
}

.success-message.is-visible {
  display: block;
}

.site-footer {
  background: #2f2f2f;
  color: #ffffff;
  padding: 46px 24px 44px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 120px;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 38px;
  align-items: start;
}

.footer-logo img {
  width: 210px;
  height: auto;
}

.footer-contact {
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-main a,
.footer-main p {
  color: rgba(255, 255, 255, 0.76);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #2f2f2f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.fine-print {
  border-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  margin: 0 0 22px;
  padding: 0;
  text-align: center;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 18px;
  }

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

  .dropdown-menu {
    position: static;
    min-width: 100%;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero.hero-cover,
  .hero-spacer {
    min-height: 70vh;
    height: 70vh;
  }

  .hero.hero-cover {
    background-attachment: scroll;
  }

  .hero-cover-content {
    bottom: 14vh;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .hero-submark {
    letter-spacing: 0.35em;
  }

  .consultation-copy {
    width: calc(100% - 40px);
  }

  .split,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 28px;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .google-home-wrap {
    width: min(560px, calc(100% - 12px));
  }

  .google-contact-layout,
  .google-interior-row {
    grid-template-columns: 1fr;
  }

  .service-list,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 64px 0;
  }

  .section {
    padding: 62px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
