:root {
  --ink: #070706;
  --black: #0c0b09;
  --black-2: #15130f;
  --stone: #d8d0c1;
  --paper: #f7f0e2;
  --muted: #b8ad9d;
  --gold: #d0a247;
  --gold-light: #f3d98b;
  --line: rgba(208, 162, 71, .28);
  --line-soft: rgba(255, 255, 255, .08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(208, 162, 71, .13), transparent 24rem),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, .045), transparent 22rem),
    var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(6, 6, 5, .94);
  border-bottom: 1px solid rgba(208, 162, 71, .34);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 230px;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(243, 217, 139, .55);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px rgba(208, 162, 71, .05), 0 10px 30px rgba(0, 0, 0, .45);
}

.brand span {
  color: var(--gold-light);
  font: 400 22px Georgia, "Times New Roman", serif;
  letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font: 800 9px Arial, Helvetica, sans-serif;
  letter-spacing: .9px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: #eee8dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav .is-active {
  color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav .is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0));
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, .92) 0%, rgba(7, 7, 6, .68) 38%, rgba(7, 7, 6, .2) 72%),
    linear-gradient(180deg, rgba(7, 7, 6, .25) 0%, rgba(7, 7, 6, 0) 52%, #070706 100%),
    url("../IMG_1508.JPG") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 86px);
  padding: clamp(56px, 8vw, 92px) 0;
}

.hero-content::before {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  max-width: 860px;
  color: #fff7e8;
  font-size: clamp(48px, 6.4vw, 86px);
}

h2 {
  color: #fff7e8;
  font-size: clamp(32px, 4.2vw, 56px);
}

h3 {
  color: #fff7e8;
  font-size: 24px;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 32px;
  color: #eee5d6;
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-statement {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff7e8;
  font: 400 clamp(24px, 3.1vw, 42px)/1.18 Georgia, "Times New Roman", serif;
}

.hero-actions,
.contact-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(243, 217, 139, .38);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 14px 34px rgba(0, 0, 0, .24);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, .2), transparent 34%, rgba(255, 255, 255, .12) 64%, transparent);
  opacity: .38;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 18px 42px rgba(0, 0, 0, .34);
}

.btn-gold {
  border-color: transparent;
  background: linear-gradient(135deg, #b9832e, #f4dc97 52%, #b98631);
  color: #17110a;
}

.btn-ghost,
.btn-outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  color: #fff1d8;
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 64px);
  z-index: 1;
  width: min(330px, calc(100% - 40px));
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, .78);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font: 400 25px Georgia, serif;
}

.hero-panel small {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #0a0908;
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line-soft);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold-light);
  font: 400 24px Georgia, serif;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section,
.split-section,
.contact-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.intro-section {
  border-bottom: 1px solid var(--line-soft);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.editorial p:last-child {
  margin: 0;
  color: var(--stone);
  font-size: 18px;
}

.editorial-showcase {
  align-items: stretch;
}

.atelier-note {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(208, 162, 71, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, rgba(22, 19, 14, .96), rgba(9, 8, 7, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.atelier-note::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 217, 139, .12);
  border-radius: 6px;
  pointer-events: none;
}

.atelier-note p {
  margin: 0 0 24px;
  color: var(--stone);
  font-size: 18px;
}

.atelier-note a {
  display: inline-flex;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.services-section .section-heading {
  display: block;
  max-width: 780px;
  text-align: center;
}

.services-section .section-heading .eyebrow {
  margin-bottom: 16px;
}

.services-section .section-heading h2 {
  margin: 0 auto;
}

.services-section {
  width: 100%;
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(9, 8, 7, .9), rgba(9, 8, 7, .97)),
    url("../IMG_1508.JPG") center / cover fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(208, 162, 71, .23);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    #11100e;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
  transition: transform .35s ease, opacity .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 6, .1) 45%, rgba(7, 7, 6, .58) 100%);
  pointer-events: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(243, 217, 139, .12);
  border-radius: 6px;
  pointer-events: none;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  padding: 24px 24px 0;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 13px;
  background: var(--gold);
}

.service-card p {
  margin: 12px 0 0;
  padding: 0 24px 26px;
  color: var(--muted);
  font-size: 14px;
}

.service-card:hover img {
  transform: scale(1.05);
  opacity: .9;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 217, 139, .55);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .48);
}

.center {
  text-align: center;
  justify-content: center;
}

.actions-row {
  margin-top: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  color: var(--gold-light);
  font: 400 25px Georgia, serif;
}

.process-list p,
.content-page p,
.site-footer p {
  color: var(--muted);
}

.process-list p {
  margin: 8px 0 0;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 760px;
  font-size: clamp(29px, 3.4vw, 44px);
}

.site-footer {
  padding: 34px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(208, 162, 71, .08), transparent 38%),
    #050504;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  letter-spacing: .4px;
}

.content-hero {
  min-height: 430px;
}

.content-hero .hero-content {
  width: min(860px, calc(100% - 40px));
}

.content-page {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
}

.content-page > .lead {
  max-width: 850px;
  margin: 0 0 34px;
  color: var(--stone);
  font-size: 19px;
}

.info-grid,
.facts-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  margin: 32px 0;
}

.info-grid,
.facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.fact-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(208, 162, 71, .23);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #15130f, #0d0c0a);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-card::before,
.info-card::before,
.fact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(var(--gold-light), var(--gold));
}

.info-card h2 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 31px;
}

.fact-card strong,
.contact-card span {
  display: block;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.fact-card p,
.contact-card p,
.info-card p {
  margin: 8px 0 0;
}

.contact-card {
  min-height: 168px;
  padding: 30px 30px 28px 92px;
}

.contact-card b {
  position: absolute;
  left: 28px;
  top: 30px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 217, 139, .45);
  border-radius: 50%;
  color: var(--gold-light);
  font: 700 12px Arial, Helvetica, sans-serif;
  background: rgba(0, 0, 0, .25);
}

.contact-card:hover,
.info-card:hover,
.fact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 217, 139, .5);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .38);
}

.contact-page {
  width: min(1180px, calc(100% - 40px));
}

.contact-intro {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.contact-intro .lead {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.contact-actions-panel {
  display: grid;
  gap: 14px;
}

.contact-tile {
  position: relative;
  display: block;
  min-height: 132px;
  padding: 24px 26px 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(208, 162, 71, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #17140f, #0c0b09);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .3);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(var(--gold-light), var(--gold));
}

.contact-tile.primary {
  background:
    linear-gradient(135deg, rgba(208, 162, 71, .28), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #1f1a12, #0d0b08);
}

.contact-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 217, 139, .55);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .42);
}

.contact-tile span,
.map-copy span {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-tile strong {
  display: block;
  margin-top: 8px;
  color: #fff7e8;
  font: 400 28px/1.1 Georgia, "Times New Roman", serif;
}

.contact-tile small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.map-panel {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(208, 162, 71, .28);
  border-radius: var(--radius);
  background: #11100e;
  box-shadow: 0 28px 86px rgba(0, 0, 0, .38);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(243, 217, 139, .1);
  border-radius: inherit;
  pointer-events: none;
}

.map-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(243, 217, 139, .26);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, .86);
  backdrop-filter: blur(14px);
}

.map-copy strong {
  display: block;
  margin-top: 8px;
  color: #fff7e8;
  font: 400 30px Georgia, "Times New Roman", serif;
}

.map-copy small {
  color: var(--muted);
}

.map-panel iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.9) brightness(.78) sepia(.22);
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(208, 162, 71, .08) 1px, transparent 1px),
    linear-gradient(rgba(208, 162, 71, .08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(208, 162, 71, .14), transparent 18rem),
    #0b0a08;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.map-fallback span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-fallback strong {
  color: rgba(255, 247, 232, .22);
  font: 400 88px/1 Georgia, "Times New Roman", serif;
}

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

.visit-strip div {
  padding: 24px;
  border: 1px solid rgba(208, 162, 71, .2);
  border-radius: var(--radius);
  background: rgba(12, 11, 9, .76);
}

.visit-strip span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.visit-strip strong {
  display: block;
  margin-top: 8px;
  color: #fff7e8;
  font: 400 22px Georgia, "Times New Roman", serif;
}

.visit-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(208, 162, 71, .2), transparent 34%),
    linear-gradient(145deg, #18150f, #0c0b09);
  box-shadow: 0 22px 68px rgba(0, 0, 0, .32);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .section-heading,
  .editorial,
  .split-section,
  .contact-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 76px;
    gap: 10px;
    padding: 12px 16px 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand small {
    max-width: 132px;
    white-space: normal;
    line-height: 1.2;
    font-size: 7px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0;
  }

  .header-cta::after {
    content: "Poziv";
    font-size: 12px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    font-size: 11px;
    letter-spacing: .5px;
    padding-top: 2px;
    overflow: visible;
    text-align: center;
  }

  .main-nav a {
    padding: 8px 4px;
  }

  .hero {
    min-height: 610px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, .06) 0%, rgba(7, 7, 6, .56) 44%, #070706 100%),
      url("../IMG_1508.JPG") center top / auto 100% no-repeat;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 0 0 40px;
  }

  .hero-content::before {
    width: 54px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-lead,
  .content-page > .lead {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .actions-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .facts-grid,
  .info-grid,
  .contact-grid,
  .visit-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .section,
  .split-section,
  .contact-band,
  .content-page {
    width: calc(100% - 32px);
    padding: 52px 0;
  }

  .services-section {
    padding-left: 16px;
    padding-right: 16px;
    background-attachment: scroll;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: 178px;
  }

  .contact-band,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-hero {
    min-height: 340px;
  }

  .hero-statement {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .contact-page {
    width: calc(100% - 32px);
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-tile {
    min-height: auto;
    padding: 22px 22px 22px 26px;
  }

  .contact-tile strong {
    font-size: 23px;
    word-break: break-word;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 430px;
  }

  .map-copy {
    left: 14px;
    right: 14px;
    top: 14px;
    padding: 18px;
  }

  .map-copy strong {
    font-size: 24px;
  }
}
