/* =========================================================
   SAM Constructions — premium architecture UI (2026)
   ========================================================= */

:root {
  --sam-paper: #f5f2ec;
  --sam-paper-2: #ebe6dc;
  --sam-ink: #141414;
  --sam-charcoal: #2a2a2a;
  --sam-muted: #6b6760;
  --sam-line: rgba(20, 20, 20, 0.12);
  --sam-accent: #8b7355;
  --sam-accent-deep: #6e5a42;
  --sam-white: #ffffff;
  --sam-dark: #0f0f0f;
  --sam-shadow: 0 18px 40px rgba(20, 20, 20, 0.1);
  --sam-radius: 2px;
  --sam-pad: clamp(20px, 4vw, 56px);
  --sam-max: 1180px;
  --sam-font-display: "Outfit", "Segoe UI", sans-serif;
  --sam-font-body: "Outfit", "Segoe UI", sans-serif;
  --sam-header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

@font-face {
  font-family: "Mending";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Mending.woff") format("woff");
}

/* Smooth scrolling — site-wide (JS temporarily sets .sam-js-smooth for lerp frames). */
html {
  scroll-behavior: smooth !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  height: auto !important;
  overscroll-behavior-y: none !important;
}

html.sam-js-smooth {
  scroll-behavior: auto !important;
}

body.sam-ui {
  margin: 0 !important;
  font-family: var(--sam-font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--sam-charcoal);
  background: var(--sam-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  overscroll-behavior-y: none !important;
  scroll-behavior: smooth !important;
}

body.sam-ui a {
  color: inherit;
  text-decoration: none;
}

body.sam-ui img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- NAV ---------- */
body.sam-ui .site-header,
body.sam-ui header#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

body.sam-ui .site-header.is-scrolled,
body.sam-ui header#masthead.is-scrolled {
  background: rgba(245, 242, 236, 0.9) !important;
  border-bottom-color: var(--sam-line);
  box-shadow: 0 8px 30px rgba(20, 20, 20, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.sam-home .site-header:not(.is-scrolled),
body.sam-home header#masthead:not(.is-scrolled) {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.55), transparent);
}

body.sam-ui .site-header__wrap {
  max-width: var(--sam-max) !important;
  margin: 0 auto !important;
  padding: 14px 0 !important;
  background: transparent !important;
}

body.sam-ui .space-between-content {
  align-items: center !important;
  gap: 20px;
  padding: 0 var(--sam-pad);
  width: 100%;
  margin: 0 !important;
}

body.sam-ui .site-branding {
  line-height: 0 !important;
  background: transparent !important;
}

body.sam-ui .site-branding a,
body.sam-ui a.custom-logo-link {
  display: inline-block !important;
  background: transparent !important;
  line-height: 0 !important;
}

body.sam-ui .site-branding img,
body.sam-ui .site-branding .custom-logo,
body.sam-ui a.custom-logo-link img,
body.sam-ui .custom-logo,
body.sam-ui .logo,
body.sam-ui .logo img,
body.sam-ui header img.custom-logo {
  display: block !important;
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  background: transparent !important;
  transition: 0.3s !important;
}

/* Transparent white logo on hero; darken on light header. */
body.sam-home .site-header:not(.is-scrolled) .site-branding img,
body.sam-home .site-header:not(.is-scrolled) .custom-logo,
body.sam-home .site-header:not(.is-scrolled) .logo {
  filter: none;
  mix-blend-mode: screen; /* drops black plate if present */
  opacity: 1;
}

body.sam-home .site-header.is-scrolled .site-branding img,
body.sam-home .site-header.is-scrolled .logo,
body.sam-ui:not(.sam-home) .site-branding img,
body.sam-ui:not(.sam-home) .logo {
  filter: brightness(0);
  mix-blend-mode: normal;
  opacity: 0.92;
}

body.sam-ui .site-branding a:hover img {
  opacity: 0.88;
}

body.sam-ui .main-navigation .menu {
  display: flex !important;
  flex-wrap: wrap;
  gap: 2px 4px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.sam-ui .main-navigation .menu > li {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body.sam-ui .main-navigation .menu > li > a {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  padding: 10px 12px !important;
  color: var(--sam-ink) !important;
  background: transparent !important;
  font-family: var(--sam-font-body);
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: color .3s ease !important;
}

body.sam-home .site-header:not(.is-scrolled) .main-navigation .menu > li > a {
  color: #f4f1ea !important;
}

body.sam-ui .main-navigation .menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 7px;
  width: calc(100% - 24px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
  pointer-events: none;
}

/* Underline only real page currents — not custom #hash links WP marks active on home. */
body.sam-ui .main-navigation .menu > li > a:hover::after,
body.sam-ui .main-navigation .menu > li.current-menu-item:not(.menu-item-type-custom) > a::after,
body.sam-ui .main-navigation .menu > li.current_page_item:not(.menu-item-type-custom) > a::after {
  transform: scaleX(1);
}

body.sam-ui .main-navigation .menu > li > a:hover,
body.sam-ui .main-navigation .menu > li.current-menu-item:not(.menu-item-type-custom) > a,
body.sam-ui .main-navigation .menu > li.current_page_item:not(.menu-item-type-custom) > a {
  color: var(--sam-accent) !important;
  background: transparent !important;
  text-decoration: none !important;
}

body.sam-home .site-header:not(.is-scrolled) .main-navigation .menu > li > a:hover,
body.sam-home .site-header:not(.is-scrolled) .main-navigation .menu > li.current-menu-item:not(.menu-item-type-custom) > a {
  color: #fff !important;
}

body.sam-ui .mobile-menu-toggle-button {
  background: var(--sam-ink) !important;
  color: #fff !important;
}

body.sam-ui .main-navigation .menu > li:last-child > a {
  margin-left: 8px;
  padding: 10px 18px !important;
  background: var(--sam-ink) !important;
  color: #fff !important;
  border: 1px solid var(--sam-ink) !important;
}

body.sam-ui .main-navigation .menu > li:last-child > a::after {
  display: none !important;
  content: none !important;
}

body.sam-ui .main-navigation .menu > li:last-child > a:hover {
  background: var(--sam-accent) !important;
  border-color: var(--sam-accent) !important;
  color: #fff !important;
}

body.sam-home .site-header:not(.is-scrolled) .main-navigation .menu > li:last-child > a {
  background: #fff !important;
  color: var(--sam-ink) !important;
  border-color: #fff !important;
}

/* ---------- LAYOUT ---------- */
body.sam-home #content.site-content,
body.sam-home .site-content__wrap,
body.sam-home .site-content__wrap.container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.sam-home .site-content__wrap > .row,
body.sam-home #primary,
body.sam-home #main.site-main {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  display: block !important;
}

body.sam-home .elementor-section {
  background-color: transparent !important;
}

/* ---------- TYPE ---------- */
.sam-eyebrow {
  margin: 0 0 14px;
  color: var(--sam-accent);
  font-family: var(--sam-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sam-section h2,
.sam-about__copy h2,
.sam-why__intro h2,
.sam-cta__inner h2 {
  margin: 0 0 16px;
  color: var(--sam-ink);
  font-family: var(--sam-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sam-section__head {
  max-width: 40rem;
  margin: 0 auto 42px;
  text-align: center;
}

.sam-section__head p {
  margin: 0 auto;
  color: var(--sam-muted);
  max-width: 34rem;
}

/* ---------- BUTTONS ---------- */
.sam-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--sam-radius);
  font-family: var(--sam-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s !important;
}

.sam-btn--solid {
  background: var(--sam-ink);
  color: #fff !important;
  border-color: var(--sam-ink);
}

.sam-btn--solid:hover {
  background: var(--sam-accent);
  border-color: var(--sam-accent);
  transform: translateY(-2px);
}

.sam-btn--line {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.55);
}

.sam-btn--line:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.sam-about .sam-btn--solid,
.sam-why .sam-btn--solid {
  color: #fff !important;
}

.sam-btn--on-dark {
  color: #fff !important;
}

/* ---------- HERO ---------- */
.sam-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(10,10,10,.78) 8%, rgba(10,10,10,.35) 62%, rgba(10,10,10,.2)),
    var(--sam-hero-image) center / cover no-repeat;
}

.sam-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.55));
  pointer-events: none;
}

.sam-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--sam-max), 100%);
  margin: 0 auto;
  padding: calc(var(--sam-header-h) + 48px) var(--sam-pad) 88px;
}

.sam-hero .sam-eyebrow { color: #d9c4a0; }

.sam-hero__title {
  margin: 0 0 18px;
  max-width: 14ch;
  font-family: var(--sam-font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.sam-hero__lead {
  margin: 0 0 28px;
  max-width: 34rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 400;
}

.sam-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sam-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 14px;
  transform: translateX(-50%);
  transition: 0.3s;
}

.sam-hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: #fff;
  animation: samScroll 1.6s ease-in-out infinite;
}

.sam-hero__scroll:hover { border-color: #fff; }

@keyframes samScroll {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- SECTIONS ---------- */
.sam-section {
  width: min(var(--sam-max), 100%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) var(--sam-pad);
}

/* ABOUT */
.sam-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.sam-about__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--sam-radius);
}

.sam-about__media img {
  width: 100%;
  height: min(70vh, 620px);
  object-fit: cover;
  transition: 0.5s !important;
}

.sam-about__media:hover img { transform: scale(1.04); }

.sam-about__copy p {
  color: var(--sam-muted);
  margin: 0 0 16px;
}

.sam-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.sam-pillars li {
  position: relative;
  padding-left: 16px;
  color: var(--sam-ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.sam-pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 1px;
  background: var(--sam-accent);
}

/* SERVICES */
.sam-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sam-service {
  overflow: hidden;
  background: var(--sam-white);
  border: 1px solid var(--sam-line);
  transition: 0.3s !important;
}

.sam-service:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 115, 85, 0.55);
  box-shadow: var(--sam-shadow);
}

.sam-service__visual {
  position: relative;
  overflow: hidden;
}

.sam-service__visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.35s !important;
}

.sam-service:hover .sam-service__visual img {
  transform: scale(1.06);
}

.sam-service__index {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  background: rgba(245, 242, 236, 0.92);
  color: var(--sam-ink);
  font-family: var(--sam-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.sam-service__body {
  position: relative;
  padding: 22px 22px 28px;
}

.sam-service h3 {
  margin: 0 0 8px;
  font-family: var(--sam-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sam-ink);
}

.sam-service p {
  margin: 0;
  color: var(--sam-muted);
  max-width: 36ch;
}

.sam-service__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--sam-accent);
  font-size: 1.2rem;
  transition: 0.3s;
}

.sam-service:hover .sam-service__arrow {
  opacity: 1;
  transform: none;
}

/* PROJECTS */
.sam-project-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.sam-project {
  position: relative;
  margin: 0;
  grid-column: span 4;
  overflow: hidden;
  background: #111;
  border-radius: var(--sam-radius);
  min-height: 280px;
  transition: 0.3s !important;
}

.sam-project--feature {
  grid-column: span 8;
  min-height: 460px;
}

.sam-project img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: 0.35s !important;
}

.sam-project:hover img { transform: scale(1.06); }

.sam-project figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color: #fff;
  transform: translateY(8px);
  opacity: 0.92;
  transition: 0.3s;
}

.sam-project:hover figcaption {
  transform: none;
  opacity: 1;
}

.sam-project__cat {
  display: block;
  margin-bottom: 6px;
  color: #d9c4a0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sam-project strong {
  display: block;
  font-family: var(--sam-font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.sam-project__go {
  position: absolute;
  right: 20px;
  bottom: 22px;
  opacity: 0;
  transition: 0.3s;
}

.sam-project:hover .sam-project__go { opacity: 1; }

/* PROCESS */
.sam-process {
  background: var(--sam-paper-2);
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.sam-process .sam-section__head,
.sam-process-grid {
  width: min(var(--sam-max), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sam-pad);
  padding-right: var(--sam-pad);
}

.sam-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  padding-bottom: clamp(64px, 9vw, 110px);
  list-style: none;
}

.sam-step {
  padding: 22px 18px;
  background: var(--sam-white);
  border: 1px solid var(--sam-line);
  transition: 0.3s !important;
}

.sam-step:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 115, 85, 0.5);
}

.sam-step__n {
  display: block;
  margin-bottom: 18px;
  color: var(--sam-accent);
  font-family: var(--sam-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.sam-step h3 {
  margin: 0 0 8px;
  font-family: var(--sam-font-display);
  font-size: 1.15rem;
  color: var(--sam-ink);
}

.sam-step p {
  margin: 0;
  color: var(--sam-muted);
  font-size: 0.95rem;
}

/* WHY */
.sam-why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sam-why__intro p { color: var(--sam-muted); }

.sam-why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sam-why__item {
  padding: 24px 22px;
  background: var(--sam-white);
  border-top: 2px solid var(--sam-ink);
  transition: 0.3s !important;
}

.sam-why__item:hover {
  border-top-color: var(--sam-accent);
  transform: translateY(-3px);
  box-shadow: var(--sam-shadow);
}

.sam-why__item h3 {
  margin: 0 0 8px;
  font-family: var(--sam-font-display);
  font-size: 1.15rem;
  color: var(--sam-ink);
}

.sam-why__item p {
  margin: 0;
  color: var(--sam-muted);
  font-size: 0.95rem;
}

/* CTA */
.sam-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--sam-pad);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,10,10,.72), rgba(10,10,10,.78)),
    var(--sam-cta-image) center / cover no-repeat;
}

.sam-cta__veil { position: absolute; inset: 0; pointer-events: none; }

.sam-cta__inner {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: 0 auto;
}

.sam-cta__inner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.sam-cta__inner p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
}

.sam-cta .sam-hero__actions { justify-content: center; }

.sam-cta .sam-btn--solid {
  background: #fff;
  color: var(--sam-ink) !important;
  border-color: #fff;
}

.sam-cta .sam-btn--solid:hover {
  background: var(--sam-accent);
  border-color: var(--sam-accent);
  color: #fff !important;
}

/* FOOTER */
.sam-footer {
  background: var(--sam-dark);
  color: rgba(255,255,255,.78);
  padding: 64px var(--sam-pad) 28px;
}

.sam-footer__grid {
  width: min(var(--sam-max), 100%);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.sam-footer__name {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--sam-font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.sam-footer__label {
  margin: 0 0 14px;
  color: #d9c4a0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sam-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sam-footer li { margin: 0 0 10px; }

.sam-footer a { transition: color .3s ease; }
.sam-footer a:hover { color: #d9c4a0; }

.sam-footer__base {
  width: min(var(--sam-max), 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
}

.sam-footer__built {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: "Mending", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.2 !important;
  text-align: right !important;
  transition: color .3s ease !important;
}

.sam-footer__built a {
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  text-decoration: none !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
}

.sam-footer__built a:hover {
  color: #fff !important;
}

/* INNER PAGES */
body.sam-ui:not(.sam-home) .site-content__wrap {
  max-width: var(--sam-max);
  margin: 0 auto;
  padding: 40px var(--sam-pad) 80px;
}

body.sam-ui .elementor-heading-title {
  font-family: var(--sam-font-display) !important;
  color: var(--sam-ink) !important;
}

body.sam-ui .elementor-button {
  background: var(--sam-ink) !important;
  color: #fff !important;
  border-radius: var(--sam-radius) !important;
  transition: 0.3s !important;
}

body.sam-ui .elementor-button:hover {
  background: var(--sam-accent) !important;
  transform: translateY(-2px);
}

body.sam-ui input[type="text"],
body.sam-ui input[type="email"],
body.sam-ui input[type="tel"],
body.sam-ui textarea {
  border: 1px solid var(--sam-line) !important;
  border-radius: var(--sam-radius) !important;
  padding: 14px 16px !important;
  background: #fff !important;
}

/* REVEAL */
.sam-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.sam-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body.sam-ui {
    scroll-behavior: auto !important;
  }

  .sam-reveal,
  .sam-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sam-hero__scroll span { animation: none !important; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sam-about__grid,
  .sam-why__grid {
    grid-template-columns: 1fr;
  }

  .sam-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sam-project--feature { grid-column: span 12; min-height: 360px; }
  .sam-project { grid-column: span 6; }

  .sam-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .sam-service-grid,
  .sam-why__list,
  .sam-process-grid,
  .sam-pillars {
    grid-template-columns: 1fr;
  }

  .sam-project,
  .sam-project--feature { grid-column: span 12; min-height: 280px; }

  .sam-footer__grid { grid-template-columns: 1fr; }

  body.sam-ui .main-navigation .menu > li:last-child > a {
    margin-left: 0;
  }

  .sam-hero__title { max-width: none; }
}
