/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --bg: #f6f3eb;
  --bg-accent: #ece7dc;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.66);
  --text: #101010;
  --muted: #3f3a35;
  --line: rgba(16, 16, 16, 0.12);
  --chip: #7ad6ff;
  --chip-hover: #57c8f9;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 22px;
  --header-h: 65px;
}

.showcase-section {
  scroll-margin-top: 90px;
  padding-bottom: 60px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow-x: clip;
  /* background:
    radial-gradient(circle at top left, rgba(122, 214, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #f7f4ec 0%, #f2ede2 100%); */
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h2,
h3,
.chip-nav a,
.section-chip {
  font-family: "Libre Franklin", sans-serif;
}

h2 {
  color: rgb(0, 0, 0);
  line-height: 67px;
  letter-spacing: -0.055em;
  text-transform: none;
  list-style-type: none;
  font-size: 64px;
  font-style: normal;
  font-synthesis: none;
  font-weight: 500;
  font-kerning: normal;
}

h3 {
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

p {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  font-kerning: normal;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  color: rgb(0, 0, 0);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.site-header__inner,
.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0.9rem 0;
  backdrop-filter: blur(14px);
  background: rgba(246, 243, 235, 0.84);
  border-bottom: 1px solid rgba(16, 16, 16, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand img {
  width: min(220px, 34vw);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #101010;
  border-radius: 999px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  background: #101010;
  border-radius: 999px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 80;
}

/* ============================================================
   NAVIGATION (chip-nav / offcanvas)
   ============================================================ */

.chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-nav a {
  padding: 0.52rem 0.9rem;
  border: 1px solid rgba(16, 16, 16, 0.7);
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  background: var(--chip);
  box-shadow: inset 0 -2px 0 rgba(16, 16, 16, 0.12);
  transition: transform 160ms ease, background-color 160ms ease;
}

.chip-nav a:hover,
.chip-nav a:focus-visible {
  background: var(--chip-hover);
  transform: translateY(-1px);
}

.chip-nav__arrow {
  width: 2rem;
  text-align: center;
}

.offcanvas-close {
  display: none;
}

/* ============================================================
   SECTION (generic)
   ============================================================ */

.section {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section--split {
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: flex-start;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  padding-right: 0;
  width: 100%;
}

.section--split > .section-copy {
  flex: 0.9;
  min-width: 0;
}

.section--split > .section-art {
  flex: 1;
  min-width: 320px;
}

.section--split h2 span {
  display: block;
}

.section--badge {
  position: relative;
  align-items: center;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.7);
  background: var(--chip);
  box-shadow: inset 0 -2px 0 rgba(16, 16, 16, 0.12);
  font-size: 0.78rem;
}


.section-heading--compact {
  margin-bottom: 1.3rem;
}


.section-note {
  width: 100%;
  text-align: right;
  margin-top: 0.7rem;
  font-size: 0.86rem;
}

.section-copy {
  max-width: 36rem;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.6rem;
  padding: clamp(0.5rem, 1vw, 1rem) 0;
}


.section-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}

.section-art img {
  max-width: none;
  width: 100%;
  transform: translate(26%, 22%);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100dvh;
}

.hero__image-frame,
.story-card,
.logo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.hero__image-frame {
  position: relative;
  border-radius: 0;
  box-shadow: none;
}

.hero__image-frame > img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(1.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(1.25rem, 5vw, 3.5rem);
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.28) 45%,
    transparent 75%
  );
}

.hero__logo {
  width: min(520px, 58%);
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}

.hero__tagline {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  max-width: 38rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: var(--chip);
  color: #101010;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 0.18s;
  align-self: flex-start;
}

.hero__cta:hover {
  background: var(--chip-hover);
}

/* ============================================================
   SERVICES
   ============================================================ */

.section--services {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  padding-top: var(--header-h, 60px);
  padding-bottom: var(--header-h, 60px);
}

.service-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* ← changed from flex-start */
}

.service-columns > .service-intro {
  flex: 1.35 0 240px;
}

.service-columns > .service-group {
  flex: 1 0 180px;
  min-width: 180px;
}

.service-group:nth-child(3) {
  min-width: 300px!important;
}

.service-group:nth-child(4) {
  max-width: 180px!important;
}


.service-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.service-group h3 {
  margin-bottom: 1.5rem;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16rem;
}

.service-group ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: service;
}

.service-group li {
  counter-increment: service;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 24px;
}

.service-group li::before {
  content: counter(service);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 1.65rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.7);
  background: var(--chip);
  font-size: 0.8rem;
}

/* ============================================================
   STORY / ABOUT
   ============================================================ */

.story-grid {
  display: flex;
  gap: 0;
  align-items: center;
}

.story-grid > * {
  flex: 1 0 50%;
  min-width: 0;
}

.story-card {
  min-height: 100%;
}

.story-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.story-card--text h2 {
  margin-bottom: 1.5rem;
}

.story-card--text p {
  margin-bottom: 1.5rem;
}

.story-card--image {
  display: flex;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.story-card--image img {
  width: 100%;
  max-width: 600px;
  max-height: 600px;
  min-height: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 26px;
  flex: 1;
}


/* ============================================================
   LOGO GRID
   ============================================================ */

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo-grid > * {
  flex: 0 0 calc((100% - 3rem) / 7);
}

.logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 0.5rem 0.6rem;
  background: transparent;
  box-shadow: none;
}

.logo-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* ============================================================
   SHOWCASE
   ============================================================ */

.showcase-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.showcase-grid--four > *,
.showcase-grid--six > *,
.showcase-grid--eight > * {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
}

.showcase-grid--three > * {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}

.showcase-card {
  padding: 0.45rem;
}

.showcase-card__media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.showcase-card h3 {
  padding: 0.7rem 0.25rem 0.35rem;
  text-align: center;
}

.showcase-card--wide .showcase-card__media img {
  aspect-ratio: 16 / 9;
}

.showcase-section--golf .showcase-card {
  padding: 0.55rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-link {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  margin: 60px 0px;
}


/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */

@media (max-width: 1100px) {
  .chip-nav {
    justify-content: flex-start;
  }

  .logo-grid > * {
    flex: 0 0 calc((100% - 2rem) / 5);
  }

  .showcase-grid--four > *,
  .showcase-grid--six > *,
  .showcase-grid--eight > * {
    flex: 0 0 calc(33.333% - 0.667rem);
  }
}

/* ============================================================
   RESPONSIVE — 991px
   ============================================================ */

@media (max-width: 991px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(246, 243, 235, 0.96);
  }

  .site-header__inner {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 72;
  }

  .chip-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    height: 100vh;
    max-height: 100vh;
    padding: 5rem 1rem 1.2rem;
    background: #ffffff;
    border-left: 1px solid rgba(16, 16, 16, 0.15);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
    will-change: transform;
    z-index: 70;
  }

  .offcanvas-close {
    display: inline-flex;
    align-self: flex-end;
    margin: -3.8rem 0 0.75rem;
    padding: 0.42rem 0.75rem;
    border: 1px solid #101010;
    border-radius: 999px;
    background: #ffffff;
    color: #101010;
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
  }

  .offcanvas-close:hover,
  .offcanvas-close:focus-visible {
    background: #101010;
    color: #ffffff;
  }

  .chip-nav a {
    text-align: left;
    width: 100%;
    color: #101010;
    background: transparent;
    border-color: #101010;
    box-shadow: none;
  }

  .chip-nav a:hover,
  .chip-nav a:focus-visible {
    background: #101010;
    color: #ffffff;
    transform: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .chip-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .section--split {
    flex-wrap: wrap;
  }

  .section--split > .section-copy,
  .section--split > .section-art {
    flex: 1 0 calc(50% - 1rem);
    min-width: 0;
  }

  .story-grid > * {
    flex: 1 0 50%;
  }

  .service-columns > .service-intro {
    flex: 0 0 100%;
  }

  .service-columns > .service-group {
    flex: 1 0 calc(50% - 1.4rem);
  }

  .logo-grid > * {
    flex: 0 0 calc(25% - 0.375rem);
  }

  .showcase-grid--three > *,
  .showcase-grid--four > *,
  .showcase-grid--six > *,
  .showcase-grid--eight > * {
    flex: 0 0 calc(33.333% - 0.667rem);
  }

  .service-intro {
    width: 100%;
  }

  .service-intro h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .section-copy {
    gap: 2.1rem;
  }

  .section-art {
    justify-content: flex-start;
  }

  .section-art img {
    transform: translate(30%, 12%);
  }

  .showcase-card__media img {
    aspect-ratio: 4 / 5;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */

@media (max-width: 640px) {
  .site-header {
    padding: 0.7rem 0;
  }

  .site-header__inner,
  .page-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .site-header__brand img {
    width: 100%;
    max-width: 220px;
  }

  .hero__logo {
    width: min(280px, 52%);
  }

  .hero__tagline {
    font-size: 0.82rem;
  }

  .section--split > .section-copy,
  .section--split > .section-art,
  .story-grid > *,
  .service-columns > .service-intro,
  .service-columns > .service-group {
    flex: 0 0 100%;
  }

  .logo-grid > * {
    flex: 0 0 calc(50% - 0.25rem);
  }

  .showcase-grid--three > *,
  .showcase-grid--four > *,
  .showcase-grid--six > *,
  .showcase-grid--eight > * {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .service-group {
    margin-bottom: 20px;
  }

  .service-group h3 {
    font-size: 1.75rem;
  }

  .service-intro h2 {
    white-space: nowrap;
  }

  .service-intro h2 br {
    display: none;
  }

  .section-copy {
    gap: 1.55rem;
  }

  .section-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section-note {
    text-align: left;
  }

  .story-grid {
    flex-wrap: wrap;
  }

  .story-card--image {
    min-height: 55vw;
  }

  .section-art img {
    transform: translate(34%, 16%);
  }
}

/* ============================================================
   RESPONSIVE FIXES — MOBILE & TABLET
   ============================================================ */

/* Disable mandatory scroll-snap on mobile/tablet — sections
   taller than the viewport cause janky forced snapping       */
@media (max-width: 991px) {
  html {
    scroll-snap-type: none;
  }
  .section {
    scroll-snap-align: none;
    scroll-snap-stop: unset;
  }
}

/* ============================================================
   TABLET — ≤991px (extends existing breakpoint)
============================================================ */

@media (max-width: 991px) {

  /* --- Typography scale-down ----------------------------- */
  h2 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1.1;
  }

  p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }

  /* --- Section split: stack fully at tablet -------------- */
  .section--split {
    flex-direction: column;
    padding-left: max(1rem, calc((100% - 1180px) / 2));
    padding-right: max(1rem, calc((100% - 1180px) / 2));
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .section--split > .section-copy,
  .section--split > .section-art {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
  }

  /* Hide the decorative badge art on tablet and below */
  .section--badge .section-art {
    display: none;
  }

  /* Prevent heading from scrolling under sticky navbar */
  #about {
    scroll-margin-top: calc(var(--header-h, 65px) + 1rem);
  }

  /* --- Services section ---------------------------------- */
  .section--services {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .service-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .service-columns > .service-intro,
  .service-columns > .service-group {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }

  .service-group:nth-child(3) {
    min-width: 0 !important;
  }

  .service-group:nth-child(4) {
    max-width: 100% !important;
  }

  .service-intro h2 {
    white-space: normal;
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .service-group h3 {
    font-size: 1.5rem;
  }

  .service-group li {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  }

  .service-group ol {
    gap: 1rem;
  }

  /* --- Story grid (mission / vision) --------------------- */
  .story-grid {
    flex-direction: column;
    min-height: auto;
  }

  .story-grid > * {
    flex: 0 0 100%;
    width: 100%;
  }

  .story-card--image {
    min-height: auto;
    max-height: 60vw;
    overflow: hidden;
  }

  .story-card--image img {
    max-height: 60vw;
  }

  /* --- Contact section ----------------------------------- */
  #contact .section-copy {
    max-width: 100%;
    width: 100%;
    gap: 1.5rem;
  }

  #contact p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .contact-link {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 24px 0;
  }

  /* --- All sections: remove forced full-height ----------- */
  .section {
    min-height: auto;
  }

  .showcase-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ============================================================
   MOBILE — ≤640px (extends existing breakpoint)
============================================================ */

@media (max-width: 640px) {

  /* --- Global container padding -------------------------- */
  .page-shell,
  .site-header__inner {
    width: calc(100% - 2rem);
    padding-left: 0;
    padding-right: 0;
  }

  /* --- Typography ---------------------------------------- */
  h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* --- Hero --------------------------------------------- */
  .hero__logo {
    width: min(260px, 55vw);
    margin-bottom: 0.5rem;
  }

  .hero__tagline {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  /* --- About section ------------------------------------- */
  #about {
    scroll-margin-top: calc(var(--header-h, 65px) + 1rem);
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  /* --- Services ----------------------------------------- */
  .section--services {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .service-intro h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    white-space: normal !important;
    overflow: visible;
  }

  .service-intro h2 br {
    display: none;
  }

  .service-group h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .service-group li {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .service-group ol {
    gap: 0.85rem;
  }

  .service-group {
    margin-bottom: 1.5rem;
  }

  /* --- Story / Mission / Vision -------------------------- */
  .story-card--mission-copy { order: 2; }
  .story-card--mission      { order: 1; }

  .story-grid {
    flex-wrap: wrap;
    flex-direction: column;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .story-card--text {
    padding: 1.5rem 0;
  }

  .story-card--text h2 {
    margin-bottom: 1rem;
  }

  .story-card--text p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .story-card--image {
    min-height: auto;
    padding: 0;
  }

  .story-card--image img {
    min-height: auto;
    max-height: 260px;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  /* --- Clients logos ------------------------------------- */
  .logo-grid > * {
    flex: 0 0 calc(33.333% - 0.333rem);
  }

  /* --- Showcase grids ------------------------------------ */
  .showcase-grid--three > *,
  .showcase-grid--four > *,
  .showcase-grid--six > *,
  .showcase-grid--eight > * {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .showcase-card h3 {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .showcase-section {
    scroll-margin-top: calc(var(--header-h, 65px) + 0.5rem);
  }

  /* --- Section chip label -------------------------------- */
  .section-chip {
    font-size: 0.72rem;
    max-width: calc(100vw - 2rem);
    white-space: normal;
    text-align: left;
    line-height: 1.3;
  }

  /* --- Contact ------------------------------------------ */
  #contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  #contact h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.05;
  }

  #contact .section-copy {
    max-width: 100%;
    width: 100%;
    gap: 1.25rem;
  }

  #contact p {
    font-size: 0.9rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.7;
  }

  .contact-link {
    font-size: 1.1rem;
    margin: 20px 0;
  }

  /* --- Prevent badge art overflow on mobile -------------- */
  .section--split {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
  }

  .section-art img {
    transform: none !important;
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================================
   EXTRA SMALL — ≤390px
============================================================ */

@media (max-width: 390px) {

  h2 {
    font-size: clamp(1.5rem, 8.5vw, 2rem);
  }

  .showcase-grid--three > *,
  .showcase-grid--four > *,
  .showcase-grid--six > *,
  .showcase-grid--eight > * {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .logo-grid > * {
    flex: 0 0 calc(50% - 0.25rem);
  }

  .service-group li {
    font-size: 0.9rem;
  }

  #contact h2 {
    font-size: clamp(1.6rem, 10vw, 2rem);
  }
}