:root {
  --black: #0b0b0c;
  --ink: #16171a;
  --gray-1: #f6f6f4;
  --gray-2: #e6e6e3;
  --gray-3: #c4c4c0;
  --gray-4: #8c8c88;
  --gray-5: #55555a;
  --paper: #ffffff;
  --max-w: 1280px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
img { display: block; max-width: 100%; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* Wordmark — bold tight Helvetica, matches the logo */
.wordmark {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-2);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav .wordmark { font-size: 21px; }
nav ul { display: flex; gap: 38px; list-style: none; align-items: center; }
nav a {
  text-decoration: none; color: var(--gray-5); font-size: 14.5px; font-weight: 500;
  letter-spacing: 0.01em; transition: color .2s; position: relative;
}
nav a:not(.nav-cta):hover { color: var(--black); }
nav a.active:not(.nav-cta) { color: var(--black); }
nav a.active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -28px; height: 2px; background: var(--black);
}
.nav-cta {
  color: #fff !important; font-weight: 600;
  background: var(--black); padding: 11px 22px;
  border: 1px solid var(--black); font-size: 14px;
  transition: all .2s;
}
.nav-cta:hover { background: transparent; color: var(--black) !important; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; transition: .3s; }

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 26px; font-weight: 600;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
.display {
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 1.04; letter-spacing: -0.02em; font-weight: 500;
}
h2 { font-size: clamp(32px, 4vw, 54px); letter-spacing: -0.015em; line-height: 1.12; }
h3 { font-size: 22px; letter-spacing: -0.01em; }
.lead {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.35; letter-spacing: -0.01em;
}
.sub {
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 400;
  color: var(--gray-5); max-width: 56ch; line-height: 1.65;
}
.copy p { color: var(--gray-5); font-weight: 400; font-size: 17px; margin-bottom: 22px; max-width: 60ch; }
.copy p strong { color: var(--ink); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em;
  padding: 17px 34px; transition: all .2s; border: 1px solid var(--black); cursor: pointer;
}
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: transparent; color: var(--black); }
.btn-light { background: #fff; color: var(--black); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.link-arrow {
  color: var(--black); text-decoration: none; font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }

/* ---------- Sections ---------- */
section { padding: 130px 0; }
.hairline { border-top: 1px solid var(--gray-2); }

/* ---------- Hero (image) ---------- */
.hero-img {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-img .bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.62);
}
.hero-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
}
.hero-img .container { position: relative; z-index: 2; padding-bottom: 96px; padding-top: 160px; width: 100%; }
.hero-img .kicker { color: rgba(255,255,255,0.75); }
.hero-img .display { color: #fff; max-width: 16ch; }
.hero-img .sub { color: rgba(255,255,255,0.86); margin-top: 30px; }
.hero-actions { margin-top: 48px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* Compact page hero (interior) */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: 62vh; display: flex; align-items: flex-end;
}
.page-hero .bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.58);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 72px; width: 100%; }
.page-hero .kicker { color: rgba(255,255,255,0.7); }
.page-hero .display { color: #fff; font-size: clamp(42px, 5.4vw, 78px); }

/* ---------- Trust bar (stats) ---------- */
.trust { background: var(--black); color: #fff; padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust .item { padding: 54px 40px; border-right: 1px solid rgba(255,255,255,0.14); }
.trust .item:last-child { border-right: none; }
.trust .num { font-family: var(--serif); font-size: 44px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.trust .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; letter-spacing: 0.04em; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: start; }
.split .lead { margin-top: 26px; }

/* ---------- Platform cards (home) ---------- */
.platforms { background: var(--gray-1); }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 72px; }
.platform-card {
  background: #fff; text-decoration: none; color: var(--ink);
  border: 1px solid var(--gray-2); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.10); }
.platform-card .thumb { aspect-ratio: 3 / 2; overflow: hidden; }
.platform-card .thumb .img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.04); transition: transform .5s;
}
.platform-card:hover .thumb .img { transform: scale(1.06); }
.platform-card .body { padding: 34px 32px 36px; display: flex; flex-direction: column; flex: 1; }
.platform-card .idx { font-size: 12px; letter-spacing: 0.2em; color: var(--gray-4); margin-bottom: 14px; font-weight: 600; }
.platform-card h3 { font-size: 27px; margin-bottom: 14px; }
.platform-card p { color: var(--gray-5); font-size: 15.5px; flex: 1; }
.platform-card .more { margin-top: 26px; font-family: var(--sans); font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; transition: gap .2s; }
.platform-card:hover .more { gap: 14px; }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 80px; }
.feature { border-top: 2px solid var(--black); padding-top: 28px; }
.feature .n { font-size: 13px; color: var(--gray-4); font-weight: 600; letter-spacing: 0.1em; }
.feature h3 { margin: 14px 0 12px; }
.feature p { font-size: 15.5px; color: var(--gray-5); }

/* ---------- Criteria ---------- */
.criteria { margin-top: 72px; }
.criterion {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  padding: 32px 0; border-top: 1px solid var(--gray-2); align-items: baseline;
}
.criterion:last-child { border-bottom: 1px solid var(--gray-2); }
.criterion .k { font-size: 13px; color: var(--gray-4); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.criterion .v { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); line-height: 1.4; }
.criterion .v strong { font-weight: 600; }

/* ---------- Leadership ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 76px; }
.team-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; gap: 56px; }
.person .portrait { aspect-ratio: 4 / 5; overflow: hidden; background: var(--gray-2); }
.person .portrait .img {
  width: 100%; height: 100%; background-size: cover; background-position: center top;
  filter: grayscale(100%) contrast(1.03);
}
.person h3 { margin-top: 26px; font-size: 24px; }
.person .role { font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-4); margin-top: 8px; font-weight: 600; }
.person p { color: var(--gray-5); font-size: 15.5px; margin-top: 16px; }

/* ---------- Quote ---------- */
.quote { background: var(--gray-1); }
.quote blockquote {
  font-family: var(--serif); font-size: clamp(28px, 3.8vw, 50px); font-weight: 400;
  letter-spacing: -0.015em; line-height: 1.28; max-width: 24ch;
}
.quote blockquote strong { font-weight: 600; }
.quote cite { display: block; margin-top: 34px; font-family: var(--sans); font-style: normal; font-size: 14px; color: var(--gray-4); letter-spacing: 0.04em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--black); color: #fff; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,0.72); font-weight: 400; margin-top: 22px; max-width: 54ch; font-size: 18px; }
.cta-band .btn-light { margin-top: 44px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 100px; }
.contact-info p { color: var(--gray-5); font-weight: 400; margin-bottom: 34px; max-width: 44ch; font-size: 17px; }
.contact-line { font-size: 16px; margin-bottom: 14px; }
.contact-line .lbl { color: var(--gray-4); }
.contact-line a { color: var(--black); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gray-3); padding-bottom: 2px; }
.contact-line a:hover { border-color: var(--black); }
form label { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 10px; font-weight: 600; }
form input, form textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--gray-3);
  background: transparent; padding: 12px 0 14px; font-size: 17px; color: var(--ink);
  font-family: var(--sans); margin-bottom: 34px; transition: border-color .2s;
}
form input::placeholder { color: var(--gray-3); }
form input:focus, form textarea:focus { outline: none; border-bottom-color: var(--black); }

/* ---------- Footer ---------- */
footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0 48px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand .wordmark { color: #fff; font-size: 22px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; margin-top: 20px; max-width: 40ch; line-height: 1.7; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.footer-bottom .copyright { font-size: 13px; color: rgba(255,255,255,0.5); }
footer .fine { font-size: 12px; color: rgba(255,255,255,0.4); max-width: 88ch; margin-top: 16px; line-height: 1.7; }

/* ---------- Portfolio map ---------- */
.map-wrap { position: relative; }
#portfolio-map {
  width: 100%; height: 620px; background: var(--gray-1);
  border: 1px solid var(--gray-2); z-index: 1;
}
.leaflet-container { font-family: var(--sans) !important; background: #f2f2f0; }
/* Desaturate map tiles to hold the monochrome identity */
.leaflet-tile-pane { filter: grayscale(100%) contrast(1.02); }
.map-pin {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25), 0 4px 10px rgba(0,0,0,0.3);
}
.leaflet-popup-content-wrapper { border-radius: 2px; box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.leaflet-popup-content { margin: 16px 18px; }
.pop-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.pop-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-4); margin-top: 4px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.map-legend .li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-5); }
.map-legend .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--black); }
.map-legend .dot.hollow { background: #fff; border: 2px solid var(--black); }
/* Keyless Google Maps embeds */
.embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.embed-card { border: 1px solid var(--gray-2); background: #fff; }
.embed-card iframe { display: block; width: 100%; height: 380px; border: 0; }
.embed-card figcaption { padding: 22px 26px; border-top: 1px solid var(--gray-2); }
.embed-card figcaption h3 { font-size: 22px; margin-bottom: 6px; }
.embed-card figcaption span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-4); font-weight: 600; }
@media (max-width: 820px) { .embed-grid { grid-template-columns: 1fr; } .embed-card iframe { height: 320px; } }

/* Google map fallback (shown if API key missing) */
#map-fallback {
  position: absolute; inset: 0; z-index: 2; display: none;
  align-items: center; justify-content: center; text-align: center;
  background: var(--gray-1); border: 1px solid var(--gray-2); padding: 32px;
}
#map-fallback .inner { max-width: 46ch; }
#map-fallback h3 { font-size: 22px; margin-bottom: 12px; }
#map-fallback p { color: var(--gray-5); font-size: 15px; }
.gm-style .pop-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.gm-style .pop-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-4); margin-top: 4px; }

/* ---------- Careers ---------- */
.careers-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 76px; }
.cval { border-top: 2px solid var(--black); padding-top: 26px; }
.cval h3 { margin-bottom: 12px; }
.cval p { color: var(--gray-5); font-size: 15.5px; }

/* ============================================================
   ROERS-STYLE HOME (monochrome, Hickson branding)
   ============================================================ */
.r-hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.r-hero .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.55);
}
.r-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}
.r-hero .container { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 200px; width: 100%; }
.r-hero .kicker { color: rgba(255,255,255,0.75); }
.r-hero h1 { color: #fff; font-size: clamp(48px, 8vw, 104px); line-height: 1.0; letter-spacing: -0.03em; max-width: 15ch; }
.hero-mask { position: absolute; left: 0; bottom: -1px; width: 100%; z-index: 2; line-height: 0; }
.hero-mask svg { display: block; width: 100%; height: clamp(60px, 8vw, 130px); }

/* Centered intro (echo "Rooted Values. Proven Results.") */
.r-intro { text-align: center; padding: 84px 0 24px; }
.r-intro h2 { max-width: 20ch; margin: 0 auto; }
.r-intro p { max-width: 68ch; margin: 26px auto 0; color: var(--gray-5); font-size: 18px; font-weight: 300; }
.r-intro .btn { margin-top: 40px; }

/* Approach — three platforms (echo "Seamless Integration") */
.r-approach { padding: 96px 0 120px; }
.r-approach .head { text-align: center; margin-bottom: 72px; }
.r-approach .cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--gray-2); }
.r-cap { padding: 48px 40px; border-right: 1px solid var(--gray-2); text-decoration: none; color: var(--ink); transition: background .25s; }
.r-cap:last-child { border-right: none; }
.r-cap:hover { background: var(--gray-1); }
.r-cap .idx { font-size: 12px; letter-spacing: 0.2em; color: var(--gray-4); font-weight: 600; }
.r-cap h3 { font-size: 27px; margin: 16px 0 14px; }
.r-cap p { color: var(--gray-5); font-size: 15.5px; font-weight: 300; }
.r-cap .explore { margin-top: 24px; font-family: var(--sans); font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; transition: gap .2s; }
.r-cap:hover .explore { gap: 14px; }

/* Dark band (echo "By The Numbers") */
.r-band { background: var(--black); color: #fff; padding: 96px 0; }
.r-band .head { text-align: center; margin-bottom: 64px; }
.r-band .head h2 { color: #fff; }
.r-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.r-stat .num { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.r-stat .label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 16px; letter-spacing: 0.04em; }

/* Values — four columns (echo "Why Invest") */
.r-values { padding: 120px 0; background: var(--gray-1); }
.r-values .head { text-align: center; margin-bottom: 76px; }
.r-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.r-val { border-top: 2px solid var(--black); padding-top: 26px; }
.r-val h3 { font-size: 20px; margin-bottom: 12px; }
.r-val p { color: var(--gray-5); font-size: 15px; font-weight: 300; }
.r-values .btn { display: block; width: max-content; margin: 72px auto 0; }

/* Quick links + disclaimer (echo Roers pre-footer) */
.r-quicklinks { border-top: 1px solid var(--gray-2); padding: 40px 0; }
.r-quicklinks .row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.r-quicklinks a { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); text-decoration: none; }
.r-quicklinks a:hover { text-decoration: underline; }
.r-disclaimer { padding: 8px 0 72px; }
.r-disclaimer p { max-width: 100%; font-size: 12px; line-height: 1.7; color: var(--gray-4); font-weight: 300; text-align: center; }

@media (max-width: 980px) {
  .r-hero .container { padding-top: 120px; padding-bottom: 150px; }
  .r-approach .cap-grid { grid-template-columns: 1fr; }
  .r-cap { border-right: none; border-bottom: 1px solid var(--gray-2); }
  .r-cap:last-child { border-bottom: none; }
  .r-band-grid { grid-template-columns: 1fr; gap: 48px; }
  .r-values-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .r-quicklinks .row { gap: 28px; }
}
@media (max-width: 560px) {
  .r-values-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  nav ul { display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; align-items: stretch;
    border-bottom: 1px solid var(--gray-2); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
  nav ul.open { display: flex; }
  nav ul li { border-top: 1px solid var(--gray-1); }
  nav ul a { display: block; padding: 18px 24px; }
  nav a.active:not(.nav-cta)::after { display: none; }
  .nav-cta { border: none; }
  .menu-btn { display: block; }
  section { padding: 84px 0; }
  .hero-img { min-height: 84vh; }
  .hero-img .container { padding-bottom: 64px; padding-top: 130px; }
  .page-hero { min-height: 48vh; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust .item { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .trust .item:nth-child(2) { border-right: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .platform-grid { grid-template-columns: 1fr; gap: 28px; }
  .features { grid-template-columns: 1fr; gap: 40px; margin-top: 52px; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .criterion { grid-template-columns: 1fr; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .careers-values { grid-template-columns: 1fr; gap: 40px; margin-top: 52px; }
  #portfolio-map { height: 440px; }
}
