/* S2 Squared — replicated from "round 5 s2.pdf" at 1920px design width */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #2433ff;
  --btn-blue: #2936fe;
  --heading-grey: #58585a;
  --bar-black: #191919;
}

html { background: #fff; }

body {
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

img { display: block; }
a { text-decoration: none; color: inherit; }

/* ============ NAV ============ */

.nav {
  position: relative;
  height: 124px;
  margin: 0 6px 7px;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.65);
  z-index: 10;
}

.nav-grid-icon {
  margin-left: 48px;
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: 11px 11px;
  grid-template-rows: 11px 11px;
  gap: 4px;
  flex: none;
}
.nav-grid-icon span {
  border: 2.5px solid #444;
  border-radius: 4px;
}

.nav-logo {
  margin-left: 28px;
  flex: none;
}
.nav-logo img { width: 68px; height: 68px; }

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 54px;
  white-space: nowrap;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.3px;
}

.nav-menu a .drop,
.nav-pill .drop {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 3px;
  vertical-align: baseline;
}

.nav-pill {
  background: #a1a1a1;
  color: #fff !important;
  border-radius: 18px;
  padding: 9px 26px;
}

.nav-right {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-search { color: var(--blue); display: flex; }

.nav-cta {
  border: 1.5px solid #2c3bfe;
  border-radius: 31px;
  padding: 19px 44px;
  font-size: 17px;
  font-weight: 500;
  color: #454c63;
}

/* ============ HOME HERO ============ */

.hero-home {
  position: relative;
}
.hero-home > img { width: 100%; height: auto; }

.hero-home h1 {
  position: absolute;
  left: 109px;
  bottom: 46px;
  color: #fff;
  font-size: 81px;
  font-weight: 700;
  line-height: 1.215;
  text-shadow: 0 6px 60px rgba(0, 0, 0, 0.9), 0 6px 60px rgba(0, 0, 0, 0.9);
}

.hero-home .btn-blue {
  position: absolute;
  right: 68px;
  bottom: 49px;
}

.btn-blue {
  display: inline-block;
  background: var(--btn-blue);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 10px;
  padding: 31px 66px;
  box-shadow: 0 8px 18px rgba(41, 54, 254, 0.35);
  cursor: pointer;
}

/* ============ HOME MAP SECTION ============ */

.map-section {
  display: flex;
  align-items: flex-start;
  padding: 190px 84px 200px 102px;
}

.map-section h2 {
  font-size: 51px;
  font-weight: 700;
  color: #3f3f3f;
  line-height: 1.176;
  letter-spacing: -0.8px;
  margin-top: 185px;
  flex: none;
  max-width: 520px;
}

.map-section img {
  margin-left: auto;
  width: 1130px;
  height: auto;
}

/* ============ FOUNDER CAROUSEL ============ */

.carousel {
  position: relative;
  background: #bbb8b9;
  height: 918px;
}

.carousel-person {
  position: absolute;
  left: 192px;
  top: 124px;
  width: 332px;
  text-align: center;
}
.carousel-person img {
  width: 332px;
  height: 332px;
  border-radius: 50%;
  object-fit: cover;
}
.carousel-person .name {
  margin-top: 40px;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
}
.carousel-person .role {
  margin-top: 7px;
  font-size: 29px;
  color: #424242;
}

.carousel-text {
  position: absolute;
  left: 730px;
  top: 281px;
  width: 976px;
  font-size: 30px;
  line-height: 1.82;
  color: #3d3d3d;
  text-align: justify;
}

.carousel-arrow {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 427px;
  background: #2d3cf0;
  border-radius: 6px;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carousel-arrow.left { left: 16px; }
.carousel-arrow.right { right: 16px; }

/* ============ SECTION HEADINGS ============ */

.section-title {
  text-align: center;
  font-size: 94px;
  font-weight: 700;
  color: var(--heading-grey);
  letter-spacing: -1.5px;
}

/* ============ CASE STUDY / CUSTOMER TILES ============ */

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 34px;
  margin: 0 10px;
}

.tile img {
  width: 100%;
  height: auto;
}

.tile .bar {
  background: var(--bar-black);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

/* ============ NEWSROOM ============ */

.newsroom {
  padding: 225px 0 17px 118px;
}

.home .newsroom { padding-top: 200px; padding-bottom: 43px; }
.about .newsroom { padding-top: 193px; padding-bottom: 49px; }
.business .newsroom { padding-bottom: 31px; }

.newsroom h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.096;
  letter-spacing: -2px;
}

.newsroom .rule {
  width: 396px;
  height: 2px;
  background: #9d9d9d;
  margin-top: -2px;
  margin-left: 6px;
}

.newsroom-items {
  display: flex;
  margin-top: 39px;
  font-family: "Roboto Condensed", "Arial Narrow", Roboto, sans-serif;
}

.newsroom-item { width: 604px; flex: none; }

.newsroom-item .date {
  font-size: 29px;
  color: var(--blue);
}

.newsroom-item .title {
  margin-top: 35px;
  font-size: 43px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.163;
  white-space: pre-line;
}

.newsroom-item .more {
  display: inline-block;
  margin-top: 41px;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--blue);
}

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

.footer {
  position: relative;
  height: 484px;
  margin: 0 8px 6px;
  border-radius: 16px;
  background: linear-gradient(128deg, #2d56fa 0%, #2740fb 45%, #2734fa 100%);
  color: #fff;
  overflow: hidden;
}

.footer-logo {
  position: absolute;
  left: 202px;
  top: 60px;
  width: 88px;
  height: 88px;
}

.footer-since {
  position: absolute;
  left: 180px;
  top: 188px;
  font-size: 82px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #d7d2dc;
}

.footer-locale {
  position: absolute;
  left: 195px;
  top: 353px;
  font-size: 15px;
}
.footer-locale b { font-weight: 700; }

.footer h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* dim footer text — matches the design's semi-transparent white */
.footer-col,
.footer-locale { color: rgba(255, 255, 255, 0.7); }
.footer-bottom-left,
.footer-bottom-right { color: rgba(255, 255, 255, 0.55); }

.footer-col {
  position: absolute;
  top: 88px;
  font-size: 14.5px;
  line-height: 2.05;
  letter-spacing: 1px;
}
.footer-col.c1 { left: 739px; line-height: 1.5; }
.footer-col.c2 { left: 1086px; }
.footer-col.c3 { left: 1321px; }
.footer-col.c4 { left: 1561px; }

.footer-col.c1 p { margin-bottom: 8px; }
.footer-col.c1 .gap { height: 42px; }

.footer-rule {
  position: absolute;
  left: 120px;
  right: 120px;
  top: 438px;
  height: 1px;
  background: rgba(228, 228, 218, 0.75);
}

.footer-bottom-left {
  position: absolute;
  left: 283px;
  top: 450px;
  font-size: 13px;
}
.footer-bottom-right {
  position: absolute;
  right: 283px;
  top: 450px;
  font-size: 13px;
}
.footer u { text-underline-offset: 2px; }

/* ============ ABOUT PAGE ============ */

.about-head { text-align: center; }

.about-head h1 {
  margin-top: 127px;
  font-size: 82px;
  font-weight: 700;
  color: var(--heading-grey);
}

.about-head .nice {
  margin-top: 58px;
  font-size: 69px;
  font-weight: 700;
  color: var(--heading-grey);
}
.about-head .nice span { color: var(--blue); }

.about-head .values {
  margin-top: 24px;
  font-size: 57px;
  font-weight: 700;
  color: var(--heading-grey);
}
.about-head .values span { color: var(--blue); }

.about-head .lede {
  margin: 54px auto 0;
  max-width: 1700px;
  font-size: 44px;
  color: #4c4c4c;
  line-height: 1.45;
}

.about-panel {
  margin: 126px 66px 0;
  background: #dcdcdc;
  padding: 40px 38px 62px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.about-panel .btn-blue {
  margin-top: 58px;
  padding: 24px 46px;
  font-size: 14px;
}

.roadmap { padding-top: 311px; padding-bottom: 75px; text-align: center; }

.roadmap h2 {
  position: relative;
  z-index: 1;
  font-size: 75px;
  font-weight: 700;
  color: var(--blue);
}

.roadmap img {
  width: 1850px;
  max-width: none;
  margin: -210px 0 0 70px;
}

/* ============ OUR BUSINESS PAGE ============ */

.business h1 {
  margin-top: 118px;
  text-align: center;
  font-size: 82px;
  font-weight: 700;
  color: var(--heading-grey);
}

.business-grid {
  margin-top: 160px;
  display: grid;
  grid-template-columns: 712px 712px;
  column-gap: 106px;
  row-gap: 124px;
  justify-content: center;
  margin-bottom: 499px;
}
.business-grid img { width: 712px; height: auto; }

/* ============ OUR CUSTOMERS PAGE ============ */

.customers-hero {
  position: relative;
  height: 1122px;
  background: url("../assets/cust-map.png") center bottom no-repeat;
}

.customers-hero h1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  padding-left: 84px;
  color: #fff;
  font-size: 89px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.customers h2.section-title {
  margin-top: 123px;
  letter-spacing: 0;
  font-size: 82px;
}

.customers .tiles { margin-top: 131px; row-gap: 18px; }
.customers .tile .bar { height: 118px; }

.customers .newsroom { padding-top: 322px; padding-bottom: 34px; }

/* ============ FOTILE CASE STUDY PAGE ============ */

.fotile-hero {
  position: relative;
  height: 1196px;
  overflow: hidden;
}
.fotile-hero > img { width: 100%; height: auto; margin-top: -59px; }

.cs-kicker {
  position: absolute;
  left: 123px;
  top: 614px;
  padding: 1px 7px 3px;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 63px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.7px;
}

.cs-brand {
  position: absolute;
  left: 122px;
  top: 686px;
  color: #fff;
  font-size: 185px;
  font-weight: 900;
  line-height: 1;
  transform: scaleX(0.973);
  transform-origin: left top;
  text-shadow: 5px 5px 16px rgba(0, 0, 0, 0.5);
}

.products {
  margin-top: 152px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 178px;
}

.product { text-align: center; }

.product h3 {
  font-size: 33px;
  font-weight: 700;
  color: var(--heading-grey);
  letter-spacing: 0.5px;
}

.product img { margin: 48px auto 0; }
.product.cooktop img { margin-top: 174px; }
.product.versawash img { margin-top: 168px; }
.product.range img { margin-top: 60px; }

.glance {
  margin-top: 201px;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: var(--blue);
}

.videos {
  display: flex;
  gap: 24px;
  margin: 110px 12px 0;
}
.videos img { width: calc(50% - 12px); height: auto; cursor: pointer; }

.fotile-page .newsroom { padding-top: 397px; padding-bottom: 40px; }

/* ============ CONTACT PAGE ============ */

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

.contact-head h1 {
  margin-top: 118px;
  font-size: 82px;
  font-weight: 700;
  color: var(--heading-grey);
}

.contact-lede {
  margin: 40px auto 0;
  max-width: 1400px;
  font-size: 30px;
  color: #4c4c4c;
  line-height: 1.5;
}

.contact-body {
  display: flex;
  align-items: flex-start;
  gap: 110px;
  max-width: 1500px;
  margin: 130px auto 40px;
  padding: 0 60px;
}

.contact-info {
  flex: none;
  width: 340px;
  margin-top: 14px;
  font-size: 21px;
  line-height: 1.6;
  color: #4c4c4c;
}
.contact-info h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 22px;
}
.contact-info p { margin-bottom: 8px; }
.contact-info .gap { height: 26px; }
.contact-info a { color: var(--blue); }

.contact-form { flex: 1; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
  row-gap: 32px;
}

.form-grid label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.3px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 17px 22px;
  font-family: inherit;
  font-size: 19px;
  color: #333;
  background: #fff;
  border: 1.5px solid #c4c4c4;
  border-radius: 10px;
  outline: none;
}
.form-grid textarea { resize: vertical; min-height: 190px; }

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
}

/* honeypot — kept out of sight without display:none so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  margin-top: 34px;
  font-size: 20px;
  font-weight: 700;
}
.form-status.show { display: block; }
.form-status.ok { color: var(--blue); }
.form-status.err { color: #c0392b; }

.contact-form .btn-blue {
  margin-top: 44px;
  padding: 26px 60px;
  font-size: 19px;
}

.contact-cta { margin-top: 74px; }

.contact .newsroom { padding-top: 180px; padding-bottom: 43px; }

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

/* Desktop keeps the 1920px design; js/main.js zooms the canvas
   proportionally between 768px and 1919px so nothing reflows. */

.nav-burger { display: none; }
.nav-menu .menu-cta { display: none; }

@media (max-width: 767px) {

  html { overflow-x: hidden; }

  /* --- nav + mobile menu --- */

  .nav { height: 68px; margin: 0 4px 4px; border-radius: 12px; }
  .nav-menu { border-radius: 0 0 12px 12px; }
  .nav-grid-icon { display: none; }
  .nav-logo { margin-left: 16px; }
  .nav-logo img { width: 46px; height: 46px; }
  .nav-right { display: none; }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    margin-right: 16px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--blue);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    white-space: normal;
    background: #fff;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.12);
    padding: 6px 0 20px;
    display: none;
  }
  .nav.open .nav-menu { display: flex; }

  .nav-menu a {
    padding: 14px 24px;
    font-size: 16px;
  }
  .nav-pill { border-radius: 0; padding: 14px 24px; }

  .nav-menu .menu-cta {
    display: block;
    margin: 16px 24px 0;
    padding: 14px 0;
    text-align: center;
    border: 1.5px solid #2c3bfe;
    border-radius: 31px;
    color: #454c63;
    font-weight: 500;
  }

  /* --- home hero: stack image / headline / button --- */

  .hero-home { padding-bottom: 10px; }
  .hero-home h1 {
    position: static;
    margin: 26px 20px 0;
    color: #3f3f3f;
    font-size: 24px;
    line-height: 1.3;
    text-shadow: none;
  }
  .hero-home h1 br { display: none; }
  .hero-home .btn-blue {
    position: static;
    display: inline-block;
    margin: 24px 20px 0;
  }
  .btn-blue {
    font-size: 15px;
    letter-spacing: 0.8px;
    border-radius: 8px;
    padding: 16px 34px;
    box-shadow: 0 5px 12px rgba(41, 54, 254, 0.35);
  }

  /* --- map section --- */

  .map-section { flex-direction: column; padding: 64px 20px 70px; }
  .map-section h2 {
    margin-top: 0;
    max-width: none;
    font-size: 28px;
    letter-spacing: -0.4px;
  }
  .map-section img {
    margin: 36px -20px 0;
    width: calc(100% + 40px);
    max-width: none;
  }

  /* --- founder carousel --- */

  .carousel { height: auto; padding: 54px 20px 60px; }
  .carousel-person { position: static; width: auto; margin: 0 auto; }
  .carousel-person img { width: 200px; height: 200px; margin: 0 auto; }
  .carousel-person .name { margin-top: 24px; font-size: 30px; }
  .carousel-person .role { font-size: 17px; }
  .carousel-text {
    position: static;
    width: auto;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
  .carousel-arrow { display: none; }

  /* --- section titles + tiles --- */

  .section-title { font-size: 40px; letter-spacing: -0.5px; }
  .case-studies .section-title {
    margin-top: 70px !important;
    margin-bottom: 48px !important;
    left: 0 !important;
  }
  .tiles { grid-template-columns: 1fr; row-gap: 20px; }
  .tile .bar { font-size: 17px; letter-spacing: 0.5px; height: 62px; }

  /* --- newsroom --- */

  .newsroom,
  .home .newsroom,
  .about .newsroom,
  .customers .newsroom,
  .fotile-page .newsroom { padding: 70px 20px 30px; }

  .newsroom h2 { font-size: 26px; letter-spacing: -1px; }
  .newsroom .rule { width: 200px; margin-left: 2px; }
  .newsroom-items { flex-direction: column; gap: 40px; margin-top: 26px; }
  .newsroom-item { width: auto; }
  .newsroom-item .date { font-size: 15px; }
  .newsroom-item .title { margin-top: 12px; font-size: 22px; }
  .newsroom-item .more { margin-top: 14px; font-size: 17px; }

  /* --- footer: stack everything --- */

  .footer { height: auto; padding: 44px 24px 22px; }
  .footer-logo,
  .footer-since,
  .footer-locale,
  .footer-col,
  .footer-rule,
  .footer-bottom-left,
  .footer-bottom-right { position: static; }

  .footer-logo { width: 64px; height: 64px; }
  .footer-since { margin-top: 22px; font-size: 40px; letter-spacing: -0.7px; }
  .footer-locale { margin-top: 8px; }
  .footer-col { margin-top: 34px; }
  .footer h3 { margin-bottom: 8px; }
  .footer-col.c1 .gap { height: 10px; }
  .footer-rule { margin-top: 40px; }
  .footer-bottom-left { margin-top: 16px; }
  .footer-bottom-right { margin-top: 6px; }

  /* --- about page --- */

  .about-head h1 { margin-top: 54px; font-size: 40px; }
  .about-head .nice { margin-top: 24px; font-size: 28px; }
  .about-head .values { margin-top: 10px; font-size: 20px; }
  .about-head .lede { margin: 26px 20px 0; font-size: 16px; }
  .about-head .lede br { display: none; }
  .about-panel { margin: 54px 16px 0; padding: 16px 14px 32px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .about-grid img { height: 130px; border-width: 2px; }
  .about-panel .btn-blue { margin-top: 28px; padding: 15px 30px; font-size: 12px; }
  .roadmap { padding-top: 80px; padding-bottom: 40px; }
  .roadmap h2 { font-size: 30px; }
  .roadmap img { width: 100%; max-width: 100%; margin: 14px 0 0; }

  /* --- our business page --- */

  .business h1 { margin-top: 54px; font-size: 40px; }
  .business-grid {
    margin: 48px 0 90px;
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding: 0 20px;
  }
  .business-grid img { width: 100%; }

  /* --- our customers page --- */

  .customers-hero { height: 320px; background-size: cover; }
  .customers-hero h1 { padding: 0 16px; bottom: 16px; font-size: 24px; }
  .customers h2.section-title { margin-top: 54px; font-size: 40px; }
  .customers .tiles { margin-top: 44px; }
  .customers .tile .bar { height: 62px; }

  /* --- fotile case study page --- */

  .fotile-hero { height: auto; }
  .fotile-hero > img { margin-top: 0; }
  .cs-kicker {
    left: 20px;
    top: 42%;
    font-size: 18px;
    letter-spacing: -0.5px;
    border-width: 1.5px;
  }
  .cs-brand {
    left: 20px;
    top: 55%;
    font-size: 52px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }
  .products { margin-top: 60px; grid-template-columns: 1fr; row-gap: 56px; }
  .product h3 { font-size: 20px; }
  .product img { margin: 20px auto 0; max-width: 70%; height: auto; }
  .product.cooktop img,
  .product.versawash img,
  .product.range img { margin-top: 20px; }
  .glance { margin-top: 70px; font-size: 26px; }
  .videos { flex-direction: column; gap: 16px; margin: 40px 12px 0; }
  .videos img { width: 100%; }

  /* --- contact page --- */

  .contact-head h1 { margin-top: 54px; font-size: 40px; }
  .contact-lede { margin: 20px 20px 0; font-size: 16px; }
  .contact-lede br { display: none; }

  .contact-body {
    flex-direction: column;
    gap: 40px;
    margin: 44px 0 20px;
    padding: 0 20px;
  }
  .contact-info { width: auto; margin-top: 0; font-size: 16px; }
  .contact-info h3 { font-size: 16px; margin-bottom: 12px; }
  .contact-info .gap { height: 12px; }
  .contact-form { width: 100%; }

  .form-grid { grid-template-columns: 1fr; row-gap: 20px; }
  .form-grid label { font-size: 14px; }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    margin-top: 8px;
    padding: 13px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
  .form-grid textarea { min-height: 140px; }

  .form-status { margin-top: 22px; font-size: 16px; }
  .contact-form .btn-blue { margin-top: 26px; padding: 16px 34px; font-size: 15px; }

  .contact-cta { margin-top: 34px; }

  .contact .newsroom { padding: 70px 20px 30px; }
}
