@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #efefed;
  --bg-strong: #e7e7e3;
  --surface: rgba(255, 252, 248, 0.84);
  --surface-strong: #fffaf4;
  --surface-dark: #1d1d1a;
  --text: #171717;
  --text-soft: #5f584f;
  --text-inverse: #f7f3eb;
  --line: rgba(23, 23, 23, 0.08);
  --line-strong: rgba(23, 23, 23, 0.14);
  --accent: #8f6742;
  --accent-deep: #5f432b;
  --moss: #536155;
  --charcoal: #171717;
  --shadow: 0 28px 60px rgba(21, 17, 13, 0.1);
  --shadow-soft: 0 16px 40px rgba(21, 17, 13, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --max-width: 1220px;
  --transition: 220ms ease;
  --editorial-media-bg: #fff;
}

body[data-theme="dark"] {
  --bg: #11110f;
  --bg-strong: #181714;
  --surface: rgba(31, 30, 28, 0.88);
  --surface-strong: #20201d;
  --surface-dark: #f4efe8;
  --text: #f4efe8;
  --text-soft: #c6bfb6;
  --text-inverse: #171717;
  --line: rgba(255, 248, 239, 0.1);
  --line-strong: rgba(255, 248, 239, 0.16);
  --accent: #c7a178;
  --accent-deep: #e1b98f;
  --moss: #8fa18e;
  --charcoal: #f4efe8;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --editorial-media-bg: #111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 120, 112, 0.1), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 100%);
  font-family: "Inter", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.3;
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--surface-dark);
  color: var(--text-inverse);
  z-index: 1000;
  border-radius: 0.75rem;
}

.section-shell,
.site-header,
.site-footer {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 50;
  margin-top: 0.9rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.95rem 1.2rem;
  background: #f3efe7;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(28, 22, 17, 0.08);
  border-radius: 1.55rem;
  box-shadow: 0 16px 40px rgba(18, 14, 11, 0.12);
}

body[data-theme="dark"] .nav-shell {
  background: #f3efe7;
}

body[data-theme="dark"] .nav-links {
  background: #fbf9f5;
  box-shadow: inset 0 0 0 1px rgba(24, 20, 16, 0.06);
}

.brand-block {
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-right: 1.35rem;
  margin-right: 0.4rem;
}

.brand-block::after {
  content: "";
  position: absolute;
  right: -0.22rem;
  top: 50%;
  width: 1px;
  height: 2.2rem;
  background: rgba(34, 28, 22, 0.3);
  transform: translateY(-50%);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
}

.nav-links a,
.eyebrow,
.hero-overlay-label,
.timeline-step,
.filter-pill,
.search-label,
.project-meta,
.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.eyebrow,
.hero-overlay-label,
.timeline-step,
.filter-pill,
.search-label,
.footer-title {
  font-family: "Inter", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 600;
}

.brand-name {
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #231d18;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: 0;
  padding: 0.75rem 1.15rem;
  border-left: 0;
  border-radius: 1rem;
  background: #fbf9f5;
  box-shadow: inset 0 0 0 1px rgba(24, 20, 16, 0.06);
}

.nav-links a {
  text-decoration: none;
  color: #171717;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-shell.nav-shell-split {
  gap: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(19, 18, 17, 0.88);
  border: 1px solid rgba(255, 248, 239, 0.2);
}

.nav-shell.nav-shell-split .brand-block {
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 248, 239, 0.24);
}

.nav-shell.nav-shell-split .nav-links {
  margin-left: 0;
  padding: 0.82rem 1.1rem;
  border-left: 0;
  border-radius: 0.5rem;
  background: #fffdf9;
  box-shadow:
    inset 0 0 0 1px rgba(20, 16, 12, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell.nav-shell-split .nav-links a[aria-current="page"] {
  color: #9f6a21;
}

.nav-shell.nav-shell-masthead {
  gap: 1.15rem;
  padding: 0.8rem 1rem;
  border-radius: 0.4rem;
  background: rgba(250, 246, 239, 0.94);
  border: 1px solid rgba(39, 31, 22, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(39, 31, 22, 0.12);
}

.nav-shell.nav-shell-masthead .brand-block {
  padding-right: 1rem;
  border-right: 1px solid rgba(39, 31, 22, 0.18);
}

.nav-shell.nav-shell-masthead .brand-name {
  font-size: 2.18rem;
  letter-spacing: 0.065em;
}

.nav-shell.nav-shell-masthead .nav-links {
  margin-left: 0;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-shell.nav-shell-masthead .nav-links a {
  position: relative;
}

.nav-shell.nav-shell-masthead .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: #a36e24;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-shell.nav-shell-masthead .nav-links a:hover::after,
.nav-shell.nav-shell-masthead .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-shell.nav-shell-minimal {
  gap: 1.25rem;
  padding: 0.75rem 0.2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-shell.nav-shell-minimal .brand-block {
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 248, 239, 0.24);
}

.nav-shell.nav-shell-minimal .brand-mark {
  border-radius: 0.35rem;
}

.nav-shell.nav-shell-minimal .nav-links {
  margin-left: 0;
  padding: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-shell.nav-shell-minimal .nav-links a {
  color: rgba(255, 248, 239, 0.86);
}

.nav-shell.nav-shell-minimal .nav-links a:hover,
.nav-shell.nav-shell-minimal .nav-links a[aria-current="page"] {
  color: #fff5e7;
}

.nav-shell.nav-shell-minimal .nav-actions .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle {
  border: 1px solid rgba(24, 20, 16, 0.08);
  background: #f8f5ee;
  color: #2a241e;
  border-radius: 999px;
  min-height: 2.75rem;
  padding: 0 1rem;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover,
.theme-toggle:hover,
.filter-pill:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #171717;
  color: #fff9f2;
  border-color: #171717;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
}

.hero,
.page-hero {
  padding: 5rem 0 2.75rem;
}

.hero-grid,
.page-hero-grid,
.split-section,
.map-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: center;
}

.page-hero-grid-single {
  grid-template-columns: 1fr;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.content-card h2,
.quality-card h2,
.awards-card h2,
.cta-card h2,
.newsletter-card h2,
.service-detail-card h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7.8vw, 6rem);
  max-width: 14ch;
}

.hero-copy .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  align-self: center;
  transform: translateY(-2.25rem);
}

.page-hero h1,
.section-heading h2 {
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  max-width: 12ch;
}

.section-heading-map h2 {
  max-width: none;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

.section-heading-awards h2 {
  max-width: none;
  white-space: nowrap;
}

.section-heading.section-heading-awards {
  justify-content: center;
  text-align: center;
}

.section-heading-services h2 {
  max-width: none;
  white-space: nowrap;
  color: var(--text-inverse);
}

.section-heading.section-heading-services {
  justify-content: center;
  text-align: center;
}

.hero-text,
.page-hero p,
.intro-band p,
.content-card p,
.quality-card p,
.timeline-item p,
.testimonial-card p,
.service-card p,
.service-detail-card p,
.quote-text,
.newsletter-card p,
.cta-card p,
.contact-summary p,
.contact-note p,
.project-card p,
.project-detail-body p,
.map-project-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.eyebrow {
  color: var(--accent-deep);
  margin: 0 0 0.75rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-media,
.media-panel,
.awards-card,
.intro-band-grid,
.service-card,
.split-card,
.quote-panel,
.testimonial-card,
.newsletter-card,
.cta-card,
.quality-card,
.content-card,
.service-detail-card,
.project-card,
.map-project-card,
.contact-summary,
.contact-form,
.contact-map,
.timeline-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-media,
.media-panel,
.project-card,
.contact-map {
  overflow: hidden;
}

.hero-media img,
.media-panel img,
.project-card img,
.project-slide img,
.project-detail-hero img,
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  position: relative;
  min-height: 42rem;
  display: grid;
  align-items: stretch;
  background: transparent;
  border: 0;
  box-shadow: none;
  align-self: start;
  margin-top: -2rem;
}

.hero-media img {
  object-fit: contain;
  object-position: center top;
  width: 100%;
  height: 100%;
}

.hero-social-banner {
  position: relative;
  width: min(100%, 12.5rem);
  margin: -0.3rem auto 0;
  border-radius: 1rem;
  overflow: hidden;
}

.hero-social-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-social-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
}

.hero-social-hit-instagram {
  left: 0;
}

.hero-social-hit-facebook {
  right: 0;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.18);
  color: rgba(255, 248, 239, 0.92);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.hero-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 248, 239, 0.14);
  border-color: rgba(255, 248, 239, 0.34);
  color: #fffaf2;
}

.hero-socials svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-socials .hero-social-dot {
  fill: currentColor;
  stroke: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.hero-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

.intro-band {
  padding-bottom: 1rem;
}

.intro-band-grid,
.awards-card,
.cta-card,
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured-projects,
.editorial-shell,
.services-overview,
.testimony-shell,
.awards-shell,
.cta-shell,
.newsletter-shell,
.timeline-shell,
.service-list-shell {
  padding: 2rem 0 1rem;
}

.project-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(20rem, 34rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.project-slide,
.project-card {
  position: relative;
  min-height: 21rem;
}

.project-slide {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 15rem auto;
}

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 15rem auto;
}

.project-slide-copy,
.project-card-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 252, 248, 0.82);
  backdrop-filter: blur(16px);
}

.project-slide-copy {
  position: static;
  width: auto;
  border-radius: 0;
  background: var(--surface-strong);
  backdrop-filter: none;
  padding: 1.2rem 1.1rem 1.35rem;
}

.project-card-copy {
  position: static;
  width: auto;
  border-radius: 0;
  background: var(--surface-strong);
  backdrop-filter: none;
  padding: 1.2rem 1.1rem 1.35rem;
}

body[data-theme="dark"] .project-slide-copy {
  background: var(--surface-strong);
}

body[data-theme="dark"] .project-slide-copy,
body[data-theme="dark"] .project-card-copy {
  background: rgba(20, 20, 18, 0.84);
}

.project-slide-copy h3,
.project-card-copy h3,
.timeline-item h3,
.service-card h3 {
  margin: 0;
  font-family: "Inter", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.project-meta {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: #171717;
  margin-bottom: 0.35rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}

.editorial-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 1.2rem;
  box-shadow: 0 24px 44px rgba(21, 17, 13, 0.2);
  display: grid;
  grid-template-rows: 22.5rem auto;
  height: 31.5rem;
}

.editorial-media {
  height: 22.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  box-shadow: inset 0 0 0 2px #000000;
}

.editorial-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.editorial-card-home .editorial-media img {
  max-height: 97%;
}

.editorial-card-revisited .editorial-media img {
  max-height: 88%;
}

.editorial-card-another-side .editorial-media img {
  max-height: 100%;
}

.editorial-card-another-side .editorial-media {
  align-items: flex-end;
}

.editorial-card-awards .editorial-media img {
  max-height: 95%;
}

.editorial-copy {
  background: #ffffff;
  color: #171717;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  box-shadow: inset 0 0 0 2px #000000;
  padding: 1.05rem 1.25rem 1.15rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.editorial-copy .project-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
}

.editorial-copy h3 {
  margin: 0.2rem 0 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  min-height: 3.2rem;
  text-align: center;
}

.editorial-card-home .cover-title-home {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  font-style: normal;
  text-transform: none;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  color: #a17a2e !important;
  white-space: nowrap;
}

.editorial-card-home .editorial-copy {
  padding: 0.95rem 1rem 1rem;
}

.editorial-card-home .editorial-copy h3 {
  margin: 0.14rem 0 0.2rem;
  min-height: 0;
}

.editorial-card-revisited .cover-title-freewheelin {
  font-family: "Arial Black", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  text-transform: uppercase;
  font-size: 1.34rem !important;
  line-height: 1.12 !important;
}

.cover-line {
  display: block;
}

.editorial-card-revisited .cover-title-freewheelin .cover-line {
  white-space: nowrap;
}

.editorial-card-revisited .cover-line-gold {
  color: #d5ab2f !important;
}

.editorial-card-revisited .cover-line-navy {
  color: #1a2370 !important;
}

.editorial-card-awards .cover-title-conbeth {
  font-family: "Avenir Next", "Franklin Gothic Medium", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  text-transform: uppercase;
  font-size: 1.62rem !important;
  line-height: 0.92 !important;
  color: #8f6742 !important;
}

.editorial-card-another-side .cover-title-another-side {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  font-size: 1.4rem !important;
  line-height: 0.98 !important;
  max-width: 22ch !important;
}

.editorial-copy p:last-child {
  color: #5f584f;
  line-height: 1.7;
  margin-bottom: 0;
}

.service-grid,
.quality-grid,
.narrative-grid,
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card,
.testimonial-card,
.quality-card,
.content-card,
.service-detail-card {
  padding: 1.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.testimonial-card span {
  color: var(--text-base);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-section {
  padding: 2rem 0 1rem;
}

.split-card,
.quote-panel {
  padding: 1.75rem;
  min-height: 100%;
}

.quote-panel {
  background: linear-gradient(135deg, rgba(95, 67, 43, 0.92), rgba(23, 23, 23, 0.92));
  color: var(--text-inverse);
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  margin: 0;
}

.quote-panel .quote-text {
  color: rgba(247, 243, 235, 0.82);
  font-size: 1.25rem;
}

.award-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: start;
}

.awards-copy {
  display: grid;
  align-content: start;
}

.awards-visual {
  display: grid;
  gap: 1rem;
}

.awards-visual img {
  width: 100%;
  min-height: 24rem;
  object-fit: contain;
  border-radius: 1.4rem;
  background: #111;
}

.award-tags span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--line);
}

.newsletter-form,
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input,
.search-input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.newsletter-form input {
  min-width: 15rem;
}

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.filter-pill {
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  cursor: pointer;
}

.filter-pill.is-active {
  background: var(--charcoal);
  color: var(--text-inverse);
  border-color: var(--charcoal);
}

.project-gallery .project-card {
  min-height: 24rem;
  cursor: pointer;
}

.project-card-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.project-card-actions a,
.project-card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.map-shell {
  padding-top: 6.5rem;
  padding-bottom: 2rem;
}

.map-layout {
  align-items: stretch;
}

.map-title {
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  max-width: 10ch;
}

.map-intro {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.map-sidebar {
  padding: 1.2rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.map-editor-note {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.map-card-list {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.7rem;
}

.map-project-card {
  padding: 0.65rem 0.9rem;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.map-project-card h3 {
  margin: 0.15rem 0 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.map-project-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.map-project-link:hover,
.map-project-link:focus-visible {
  color: var(--accent-deep);
  transform: translateX(0.12rem);
  opacity: 0.96;
  outline: none;
}

.map-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.map-project-card .project-meta {
  color: var(--text-soft);
}

.map-project-card .project-meta span:last-child {
  display: none;
}

.map-preview-shell {
  padding: 2rem 0 1rem;
}

.map-preview-layout {
  display: block;
}

.map-preview-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(39, 31, 22, 0.2);
  box-shadow:
    0 30px 70px rgba(16, 12, 9, 0.22),
    inset 0 0 0 1px rgba(255, 248, 239, 0.28);
  min-height: 30rem;
  background:
    radial-gradient(circle at top left, rgba(255, 240, 214, 0.3), transparent 30%),
    linear-gradient(180deg, #d7d0c4 0%, #c6beb2 100%);
  width: 100%;
}

.map-preview-frame iframe,
.map-preview-image {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
  display: block;
  object-fit: cover;
}

.map-preview-image {
  transform: scale(1.04);
  filter: saturate(0.72) contrast(1.08) brightness(0.94) sepia(0.12);
}

.map-preview-chrome {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  z-index: 4;
  display: grid;
  gap: 0.45rem;
  pointer-events: none;
  justify-items: center;
}

.map-preview-kicker,
.map-preview-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(15, 14, 13, 0.68);
  border: 1px solid rgba(255, 244, 230, 0.2);
  color: #fbf4ea;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(12, 10, 9, 0.22);
}

.map-preview-kicker {
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.78rem;
  line-height: 0.92;
}

.map-preview-badge {
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.94rem;
  line-height: 1;
}

.map-preview-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 247, 235, 0) 46%, rgba(18, 15, 12, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 14, 12, 0.26) 0%, rgba(16, 14, 12, 0.02) 19%, rgba(16, 14, 12, 0.06) 72%, rgba(16, 14, 12, 0.3) 100%),
    linear-gradient(90deg, rgba(16, 14, 12, 0.24) 0%, rgba(16, 14, 12, 0.03) 16%, rgba(16, 14, 12, 0.03) 84%, rgba(16, 14, 12, 0.24) 100%);
}

.map-preview-list {
  display: grid;
  gap: 1rem;
}

.map-preview-pin-layer {
  z-index: 3;
}

.map-pin-preview {
  width: 1.86rem;
  height: 1.86rem;
  text-decoration: none;
}

.map-pin-preview .map-pin-number {
  min-width: 0.98rem;
  height: 0.98rem;
  font-size: 0.55rem;
  right: -0.02rem;
  bottom: -0.02rem;
}


.map-preview-card {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.map-preview-card h3 {
  margin: 0 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
}

.map-frame {
  overflow: hidden;
  min-height: 38rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.map-image-stage {
  position: relative;
  min-height: 0;
  background: #d8d2c8;
}

.map-image-stage img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
}

.map-pin-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  box-shadow: none;
  cursor: pointer;
  z-index: 3;
  pointer-events: auto;
}

.map-pin-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(23, 23, 23, 0.28));
}

.map-pin-number {
  position: absolute;
  right: -0.08rem;
  bottom: -0.08rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.16rem;
  border-radius: 999px;
  background: #b7b1a7;
  color: #171717;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(23, 23, 23, 0.22);
}

.map-pin.is-active {
  transform: translate(-50%, -50%) scale(1.1);
}

.map-pin.is-active .map-pin-art {
  filter: drop-shadow(0 10px 22px rgba(23, 23, 23, 0.38));
}

.map-pin.is-active .map-pin-number {
  background: #9a9388;
  color: #171717;
}

.map-selected-card {
  padding: 1.2rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.map-selected-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.65rem;
}

.map-selected-card h3 {
  margin: 0.3rem 0;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  border: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem;
}

.timeline-step {
  min-width: 3.2rem;
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(143, 103, 66, 0.12);
  color: var(--accent-deep);
}

.contact-layout {
  align-items: start;
  padding-bottom: 2rem;
}

.contact-summary,
.contact-form,
.contact-map {
  padding: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.5rem;
  color: var(--text-soft);
}

.span-2 {
  grid-column: span 2;
}

.contact-note {
  padding-top: 1rem;
}

.project-detail-shell {
  padding-top: 4.5rem;
}

.project-detail-grid {
  display: grid;
  gap: 1rem;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.project-detail-hero .project-slide {
  min-height: 100%;
  grid-template-rows: 1fr;
}

.project-detail-hero .project-slide img {
  min-height: 100%;
}

.project-detail-copy,
.project-detail-body,
.before-after-card,
.detail-stats,
.detail-gallery {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.project-detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  font-weight: 500;
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.detail-stat-grid article {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--line);
}

.before-after-media {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-top: 1rem;
}

.before-after-media img {
  width: 100%;
  height: auto;
}

.before-after-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
}

.before-after-range {
  width: 100%;
  margin-top: 1rem;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.detail-gallery-grid button {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 100;
}

.lightbox.is-hidden {
  display: none;
}

.lightbox-inner {
  position: relative;
  width: min(1100px, 100%);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.site-footer {
  padding: 2rem 0 2.4rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(23, 23, 23, 0.95);
  color: rgba(247, 243, 235, 0.84);
  border-radius: var(--radius-xl);
}

.footer-shell a {
  color: rgba(247, 243, 235, 0.84);
  text-decoration: none;
}

.footer-logo {
  width: 5rem;
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  background: #0f0f0f;
}

.footer-feature-art {
  width: min(100%, 24rem);
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-feature-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-feature-address {
  margin: 0;
  color: rgba(247, 243, 235, 0.92);
  font-size: 1.22rem;
  line-height: 1.45;
}

.footer-shell p,
.footer-shell li {
  margin: 0;
  line-height: 1.7;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-section,
  .map-layout,
  .map-preview-layout,
  .contact-layout,
  .project-detail-hero,
  .intro-band-grid,
  .awards-card,
  .cta-card,
  .newsletter-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .editorial-grid,
  .service-grid,
  .testimonial-grid,
  .quality-grid,
  .narrative-grid,
  .project-slider,
  .project-gallery,
  .detail-gallery-grid,
  .detail-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    min-height: 30rem;
  }

  .map-frame {
    order: -1;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 0;
    margin-top: 0;
    width: 100%;
  }

  .nav-shell {
    width: min(var(--max-width), calc(100vw - 1.1rem));
    margin: 0.55rem auto 0;
    padding: 0.15rem 0 0;
    border-radius: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-block {
    padding-right: 0.85rem;
    margin-right: 0;
  }

  .brand-block::after {
    right: 0.1rem;
    height: 1.55rem;
    background: rgba(255, 248, 239, 0.28);
  }

  .brand-name {
    font-size: 1.45rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: var(--text-inverse);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-height: 2.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 248, 239, 0.28);
    border-radius: 999px;
    background: rgba(243, 239, 231, 0.96);
    color: #171717;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(10, 8, 7, 0.16);
    cursor: pointer;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 0.7rem;
    padding: 0.7rem;
    border-left: 0;
    border-radius: 0.9rem;
    gap: 0.5rem;
    background: #f3efe7;
    box-shadow:
      inset 0 0 0 1px rgba(24, 20, 16, 0.06),
      0 12px 26px rgba(18, 14, 11, 0.12);
  }

  .nav-shell.is-open .nav-links {
    display: flex;
  }

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

  .nav-links a {
    flex: 1 1 auto;
    width: 100%;
    font-size: 0.76rem;
    line-height: 1;
    padding: 0.8rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: inset 0 0 0 1px rgba(24, 20, 16, 0.08);
    text-align: center;
  }

  .nav-links a[aria-current="page"] {
    background: #171717;
    color: #fff9f2;
    box-shadow: none;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 3.55rem;
    padding-bottom: 1.8rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split-section,
  .map-preview-layout,
  .contact-layout,
  .project-detail-hero {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .hero-grid {
    gap: 0.9rem;
  }

  .hero-copy {
    transform: none;
    text-align: center;
    order: 2;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.45rem);
    max-width: none;
    text-align: center;
    margin-inline: auto;
    line-height: 0.94;
  }

  .hero-actions {
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 10.5rem;
    max-width: 12.5rem;
    min-height: 2.95rem;
    padding: 0 1rem;
  }

  .hero-media {
    min-height: 13.5rem;
    margin-top: 0;
    width: min(100%, 15.5rem);
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }

  .hero-social-banner {
    width: min(100%, 7.25rem);
    margin: -0.4rem auto 0;
  }

  .page-hero h1,
  .section-heading h2,
  .project-detail-copy h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    max-width: 100%;
  }

  .section-shell,
  .site-footer {
    width: min(var(--max-width), calc(100vw - 1.1rem));
  }

  .section-heading {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
  }

  .section-heading h2,
  .section-heading-map h2,
  .section-heading-awards h2,
  .section-heading-services h2 {
    white-space: normal;
    text-align: center;
  }

  .section-heading .text-link {
    justify-content: center;
  }

  .hero-stats,
  .quality-grid,
  .narrative-grid,
  .project-gallery,
  .detail-gallery-grid,
  .detail-stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

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

  .project-slider {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(16.75rem, 84vw);
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
  }

  .project-slide,
  .project-card {
    min-height: 19.5rem;
  }

  .editorial-card {
    grid-template-rows: minmax(14rem, 16.5rem) auto;
    height: auto;
  }

  .editorial-media {
    min-height: 14rem;
    height: auto;
    padding: 0.7rem;
  }

  .editorial-copy {
    padding: 0.9rem 0.8rem 1rem;
    min-height: 7.5rem;
  }

  .editorial-copy h3 {
    font-size: 1.2rem;
    min-height: 0;
  }

  .editorial-card-home .cover-title-home,
  .editorial-card-revisited .cover-title-freewheelin,
  .editorial-card-awards .cover-title-conbeth,
  .editorial-card-another-side .cover-title-another-side {
    white-space: normal;
    max-width: none !important;
    font-size: 1.15rem !important;
  }

  .map-preview-frame,
  .map-preview-frame iframe,
  .map-preview-image {
    min-height: 24rem;
  }

  .map-preview-kicker {
    font-size: 1.4rem;
  }

  .map-preview-badge {
    font-size: 0.8rem;
  }

  .map-preview-caption {
    min-height: 4rem;
    padding: 0.8rem 1rem 0.95rem;
  }

  .map-preview-caption span {
    font-size: 1.05rem;
    text-align: center;
  }

  .service-card,
  .split-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .split-card {
    text-align: center;
  }

  .split-card .text-link {
    justify-content: center;
  }

  .stacked-mobile .button,
  .newsletter-form .button,
  .newsletter-form input,
  .cta-actions .button {
    width: 100%;
  }

  .span-2 {
    grid-column: span 1;
  }

  .map-frame iframe,
  .contact-map iframe {
    min-height: 24rem;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding: 0.62rem 0.7rem 0.72rem;
    gap: 0.65rem;
  }

  .brand-block {
    padding-right: 0.72rem;
  }

  .brand-name {
    font-size: 1.24rem;
    letter-spacing: 0.035em;
  }

  .nav-links {
    gap: 0.8rem;
    padding: 0.68rem 0.7rem;
    margin-top: 0.6rem;
  }

  .nav-links a {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    padding: 0.48rem 0.62rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 9.8vw, 3rem);
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 9.4rem;
    max-width: 11.25rem;
    min-height: 2.8rem;
    font-size: 0.95rem;
  }

  .hero-media {
    min-height: 11.5rem;
    width: min(100%, 13rem);
  }

  .project-slider {
    grid-auto-columns: minmax(15rem, 88vw);
  }

  .editorial-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .map-preview-frame,
  .map-preview-frame iframe,
  .map-preview-image {
    min-height: 21rem;
  }

  .map-preview-kicker {
    font-size: 1.15rem;
  }

  .map-preview-badge {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .section-heading h2,
  .section-heading-map h2,
  .section-heading-awards h2,
  .section-heading-services h2,
  .project-detail-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
}
.map-preview-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 1rem 1.5rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.88) 0%, rgba(247, 241, 233, 0.96) 100%);
  border-top: 1px solid rgba(48, 36, 24, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.map-preview-caption span {
  color: #171717;
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  max-width: 42rem;
  width: 100%;
  text-transform: uppercase;
}
