/* ======================================================
   HOMEPAGE CSS
====================================================== */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --content-width: 1100px;
  --hero-gap: 80px;
  --heading-gap: 80px;
  --media-gap: 30px;

  --bg: #000000;
  --text: #f4f5f7;
  --muted: rgba(244, 245, 247, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.30);

  --glass: rgba(6, 7, 10, 0.76);
  --glass-border: rgba(255, 255, 255, 0.10);
}

body {
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  font-family: "Playfair Display", serif;
  overflow-x: hidden;
}

body.dark {
  background: #000000;
  color: var(--text);
}

/* ======================================================
   PARTICLE BACKGROUND
====================================================== */

#particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: #000000;
  display: block;
}

.main-nav,
main,
.contact-footer {
  position: relative;
  z-index: 2;
}

/* ======================================================
   NAVBAR
====================================================== */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(6, 7, 10, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);

  min-height: 96px;
  padding: 0 36px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;

  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 460ms ease;
  will-change: transform, opacity;
}

.main-nav.nav-hidden {
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  pointer-events: none;
}

.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 16px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 16px 0;
  line-height: 1;
}

.main-nav a:hover {
  opacity: 0.85;
}

.main-nav .nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.main-nav .shopping-cart {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  line-height: 0;
}

.main-nav .shopping-cart img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav .shopping-cart:hover img {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
}

/* ======================================================
   MAIN LAYOUT
====================================================== */

main {
  width: 100%;
  padding: var(--hero-gap) 32px 0;
}

.content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ======================================================
   TITLES / SECTIONS
====================================================== */

.hero-title {
  width: min(var(--content-width), 100%);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 var(--hero-gap);
  text-align: center;
}

.section-heading {
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text);
}

.media-section {
  width: min(var(--content-width), 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-auto {
  padding-top: 0;
}

.section-real,
.section-restaurant,
.section-construction,
.section-misc {
  padding-top: var(--heading-gap);
}

/* ======================================================
   VIDEO GRID
====================================================== */

.shortform-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.media-grid {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: start;
  gap: var(--media-gap);
  width: 100%;
  margin: 0 auto;
}

.section-auto .media-grid {
  padding-top: 0;
}

.section-real .media-grid,
.section-restaurant .media-grid,
.section-construction .media-grid,
.section-misc .media-grid {
  padding-top: var(--heading-gap);
}

.media-grid.grid-4 {
  grid-template-columns: repeat(4, 272px);
}

.media-grid.grid-3 {
  grid-template-columns: repeat(3, 272px);
}

.media-grid.centered-2 {
  width: max-content;
  max-width: 100%;
  grid-template-columns: repeat(2, 272px);
  justify-content: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.media-grid.centered-3 {
  width: max-content;
  max-width: 100%;
  grid-template-columns: repeat(3, 272px);
  justify-content: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.media-card {
  width: 272px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ======================================================
   LONG FORM SLIDER
====================================================== */

.video-slider {
  width: min(980px, 100%);
  position: relative;
  margin: 0 auto;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.slider-track {
  display: flex;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  min-width: 100%;
}

.slide-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);

  display: grid;
  place-items: center;

  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  font-size: 24px;
  line-height: 1;
  color: var(--text);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

#longformSlider .slider-pagination {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

#longformSlider .pager-dots {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

#longformSlider .pager-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

#longformSlider .pager-dots .dot.active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}

/* ======================================================
   SHORTFORM SECTION
====================================================== */

.shortform-section {
  width: min(var(--content-width), 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 70px 0 0;
}

.shortform-heading {
  width: 100%;
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text);
}

.mobile-keep-together {
  display: inline;
}

.shortform-section .shortform-wrap {
  width: 45%;
  margin: 0 auto 28px;
  padding: 0;
}

.shortform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.short-card {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.short-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.shortform-cta-link {
  grid-column: 1 / -1;
  justify-self: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 5;

  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;

  padding: 20px 34px;
  border: 2px solid rgba(255, 255, 255, 0.70);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: auto;
}

.shortform-cta-link:hover {
  background: rgba(0, 0, 0, 0.72);
}

.shortform-cta-link:active {
  transform: scale(0.98);
}

/* ======================================================
   CONTACT FOOTER
====================================================== */

.contact-footer {
  padding: 80px 0 70px;
  overflow: visible;
}

.contact-section {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.contact-left {
  width: 100%;
  max-width: 650px;
  text-align: center;
}

.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.subtitle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 0 0 56px;
  opacity: 0.95;
  color: var(--muted);
}

.contact-form {
  width: 100%;
  text-align: left;
}

.contact-form label {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 28px 0 12px;
}

.contact-form label span {
  font-size: 16px;
  opacity: 0.6;
  margin-left: 8px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.field-label {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 22px;
  font-size: 18px;
  border: 2px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  outline: none;
}

.contact-form input {
  border-radius: 999px;
}

.contact-form textarea {
  border-radius: 28px;
  min-height: 220px;
  resize: none;
}

.contact-btn {
  margin-top: 42px;
  padding: 20px 54px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.10);
  color: var(--text);
  font-size: 20px;
  font-family: "Playfair Display", Georgia, serif;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-btn:hover {
  opacity: 0.92;
}

.contact-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

/* ======================================================
   FORM FEEDBACK
====================================================== */

.form-feedback-wrap {
  margin-top: 18px;
  min-height: 34px;
}

.form-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    color 180ms ease;
}

.form-status.is-visible {
  opacity: 0.96;
  transform: translateY(0);
}

.form-status.is-loading {
  color: rgba(255, 255, 255, 0.78);
}

.form-status.is-success {
  color: #b9ffcf;
}

.form-status.is-error {
  color: #ffb3b3;
}

.form-status-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  opacity: 0;
  transform: scale(0.72);
}

.form-status.has-icon .form-status-icon {
  opacity: 1;
  transform: scale(1);
  transition: opacity 220ms ease, transform 220ms ease;
}

.status-check-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.status-check-circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
}

.status-check-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.form-status.is-success.has-icon .status-check-circle {
  animation: drawCircle 450ms ease forwards;
}

.form-status.is-success.has-icon .status-check-path {
  animation: drawCheck 350ms ease 180ms forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* ======================================================
   SOCIAL ICONS
====================================================== */

.contact-right {
  margin-top: 34px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  overflow: visible;
  min-height: 64px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  visibility: visible;
}

.social img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social:hover img {
  opacity: 1;
  transform: translateY(-1px) scale(1.04);
}

/* ======================================================
   SAFE REVEAL ANIMATION
====================================================== */

.reveal-item,
.reveal-scale {
  opacity: 1;
  transform: translateY(0);
}

body.media-js-ready .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

body.media-js-ready .reveal-item.is-heading {
  transform: translateY(24px);
}

body.media-js-ready .reveal-scale {
  opacity: 0;
  transform: translateY(34px) scale(0.965);
  transform-origin: center;
  will-change: opacity, transform;
}

body.media-js-ready .reveal-item.animate {
  animation: mediaRevealUp 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

body.media-js-ready .reveal-item.is-heading.animate {
  animation: mediaRevealHeading 1150ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

body.media-js-ready .reveal-scale.animate {
  animation: mediaRevealScale 1250ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

/* ======================================================
   CONTACT CLICK QUICK REVEAL
====================================================== */

body.media-js-ready .contact-quick-reveal .reveal-item.animate,
body.media-js-ready .contact-quick-reveal .reveal-scale.animate {
  animation-duration: 780ms;
}

@keyframes mediaRevealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaRevealHeading {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaRevealScale {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.965);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1200px) {
  .media-grid.grid-4 {
    grid-template-columns: repeat(2, 272px);
  }

  .media-grid.grid-3 {
    grid-template-columns: repeat(2, 272px);
  }

  .media-grid.centered-2 {
    grid-template-columns: repeat(2, 272px);
  }

  .media-grid.centered-3 {
    grid-template-columns: repeat(2, 272px);
  }
}

@media (max-width: 900px) {
  .name-row {
    grid-template-columns: 1fr;
  }

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

  .shortform-cta-link {
    white-space: normal;
  }

  .shortform-section .shortform-wrap {
    width: 70%;
  }

  .shortform-section {
    gap: 52px;
    padding-top: 56px;
  }

  .video-slider {
    width: min(100%, 900px);
  }
}

@media (max-width: 768px) {
  :root {
    --hero-gap: 56px;
    --heading-gap: 64px;
    --media-gap: 24px;
  }

  .hero-title,
  .section-heading,
  .shortform-heading,
  .contact-left h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    text-align: center;
  }

  .hero-title {
    margin-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 72px;
  }

  .main-nav {
    min-height: 84px;
    padding: 10px 18px;
  }

  .main-nav .nav-links {
    gap: 16px;
    max-width: calc(100% - 150px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-nav .nav-links::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .main-nav .nav-logo {
    top: 50%;
    transform: translate(-50%, -54%);
  }

  .main-nav .nav-logo img {
    height: 104px;
  }

  .main-nav .shopping-cart {
    right: 18px;
  }

  .main-nav .shopping-cart img {
    width: 26px;
    height: 26px;
  }

  main {
    padding: 56px 20px 0;
  }

  .shortform-wrap {
    padding: 0 16px;
  }

  .shortform-section .shortform-wrap {
    width: 100%;
    padding: 0;
  }

  .media-grid,
  .media-grid.centered-2,
  .media-grid.centered-3 {
    width: 100%;
    grid-template-columns: 272px !important;
  }

  .section-real,
  .section-restaurant,
  .section-construction,
  .section-misc {
    padding-top: 64px;
  }

  .section-real .media-grid,
  .section-restaurant .media-grid,
  .section-construction .media-grid,
  .section-misc .media-grid {
    padding-top: 64px;
  }

  .shortform-section {
    gap: 36px;
    padding-top: 42px;
  }

  .mobile-keep-together {
    white-space: nowrap;
  }

  .contact-footer {
    padding: 72px 22px 70px;
  }

  .contact-section {
    width: 100%;
    max-width: 700px;
  }

  .contact-left {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-right {
    margin-top: 28px;
    gap: 20px;
    min-height: 58px;
  }

  .social img {
    width: 48px;
    height: 48px;
  }

  .form-status {
    font-size: 18px;
  }
}

/* ======================================================
   PHONE NAV FIX
====================================================== */

@media (max-width: 560px) {
  .main-nav {
    min-height: 84px;
    padding: 5px 12px 7px;

    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 42px 24px;
    column-gap: 14px;
    row-gap: 0;

    align-items: center;
    justify-content: center;
    justify-items: center;

    position: sticky;
  }

  .main-nav.nav-hidden {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    pointer-events: none;
  }

  .main-nav .nav-logo {
    position: static;
    grid-column: 1 / -1;
    grid-row: 1;
    transform: none;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0;
    line-height: 0;
  }

  .main-nav .nav-logo img {
    height: 50px;
    width: auto;
  }

  .main-nav .nav-links {
    grid-column: 1;
    grid-row: 2;

    width: auto;
    max-width: none;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
    overflow: visible;
    padding: 0;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .main-nav .nav-links::-webkit-scrollbar {
    display: none;
  }

  .main-nav .nav-links a {
    font-size: 10.5px;
    letter-spacing: 0.06em;
    padding: 4px 0;
    white-space: nowrap;
    line-height: 1;
  }

  .main-nav .shopping-cart {
    position: static;
    grid-column: 2;
    grid-row: 2;

    transform: translateY(-1px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 11px;
    height: 11px;
    padding: 0;
    margin: 0;
    line-height: 0;
  }

  .main-nav .shopping-cart img {
    width: 11px;
    height: 11px;
    object-fit: contain;
    display: block;
  }

  main {
    padding: 44px 16px 0;
  }

  .hero-title {
    margin-bottom: 44px;
  }

  .slider-viewport {
    border-radius: 14px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .shortform-section {
    padding-top: 38px;
    gap: 32px;
  }

  .short-card {
    border-radius: 16px;
  }

  .shortform-cta-link {
    width: 100%;
    font-size: 20px;
    padding: 17px 24px;
  }

  .contact-footer {
    padding: 64px 24px 74px;
  }

  .contact-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .contact-left {
    width: 100%;
    max-width: 100%;
  }

  .contact-form {
    width: 100%;
    padding: 0 4px;
  }

  .contact-right {
    margin-top: 28px;
    margin-bottom: 18px;
    min-height: 56px;
    overflow: visible;
  }

  .subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .contact-form label,
  .field-label {
    font-size: 22px;
  }

  .contact-form label span {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 16px 18px;
  }

  .contact-form textarea {
    min-height: 180px;
  }

  .contact-btn {
    width: 100%;
    padding: 18px 34px;
  }
}

/* ======================================================
   EXTRA SMALL PHONE FIX
====================================================== */

@media (max-width: 390px) {
  .main-nav {
    min-height: 80px;
    padding: 4px 9px 6px;
    grid-template-rows: 39px 23px;
    column-gap: 11px;
  }

  .main-nav .nav-logo img {
    height: 47px;
  }

  .main-nav .nav-links {
    gap: 11px;
    padding: 0;
  }

  .main-nav .nav-links a {
    font-size: 9.5px;
    letter-spacing: 0.05em;
  }

  .main-nav .shopping-cart {
    width: 10px;
    height: 10px;
    transform: translateY(-1px);
  }

  .main-nav .shopping-cart img {
    width: 10px;
    height: 10px;
  }

  .hero-title,
  .shortform-heading,
  .section-heading,
  .contact-left h2 {
    font-size: 30px;
  }

  .shortform-cta-link {
    font-size: 18px;
  }

  .contact-footer {
    padding-left: 26px;
    padding-right: 26px;
    padding-bottom: 78px;
  }

  .contact-form {
    padding-left: 2px;
    padding-right: 2px;
  }
}