:root {
  --orange: #F47B20;
  --orange-deep: #D95D0B;
  --yellow: #FFC928;
  --cream: #FFF9E8;
  --cream-2: #FFF4D6;
  --ink: #242424;
  --muted: #6E6E6E;
  --white: #FFFFFF;
  --line: rgba(36,36,36,.12);
  --shadow: 0 22px 70px rgba(31, 22, 11, .10);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

/* =========================
   SCROLL PROGRESS
========================= */

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(
      circle at center,
      var(--yellow) 0 25%,
      var(--orange) 26% 48%,
      transparent 49%
    );
}

.brand-mark::before,
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px dashed var(--orange);
  opacity: .8;
}

.brand-mark::after {
  inset: 8px;
  border: 0;
  background: var(--orange);
  clip-path: polygon(
    50% 0,
    60% 38%,
    100% 50%,
    60% 62%,
    50% 100%,
    40% 62%,
    0 50%,
    40% 38%
  );
  transform: rotate(10deg);
}

.brand-mark span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  position: relative;
  z-index: 2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: .08em;
}

.brand-copy strong {
  font: 800 16px/1 'Manrope', sans-serif;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--orange-deep);
}

.site-logo {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-links > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s;
}

.nav-links > a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 24px rgba(244,123,32,.23);
}

.nav-cta {
  padding: 12px 17px;
  border-radius: 100px;
  transition: transform .25s, background .25s;
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-deep);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
  transition: .25s;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 780px;
  padding: 145px 0 75px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #fff 55%,
      #fff9ec 100%
    );
}

/*
   Large soft sunshine glow
*/

.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .11;
  filter: blur(10px);
}

/*
   Decorative glows
*/

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  left: -130px;
  top: 180px;
  background: var(--yellow);
  opacity: .14;
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  right: 30%;
  top: 120px;
  background: var(--orange);
  opacity: .08;
}

/*
   Sunshine rays
*/

.sun-rays {
  position: absolute;
  right: 6%;
  top: 105px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  opacity: .08;
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--orange) 0 4deg,
      transparent 4deg 18deg
    );

  mask-image:
    radial-gradient(
      circle,
      transparent 0 47%,
      #000 48% 52%,
      transparent 53%
    );

  -webkit-mask-image:
    radial-gradient(
      circle,
      transparent 0 47%,
      #000 48% 52%,
      transparent 53%
    );

  animation: spin 45s linear infinite;
}

/*
   HERO GRID

   Text remains on the left.
   Image becomes a large right-side visual.
*/

.hero-grid {
  position: relative;
  z-index: 2;

  min-height: 580px;

  display: block;
}

/* =========================
   HERO CONTENT
========================= */

.eyebrow,
.section-kicker {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(244,123,32,.24);
  border-radius: 100px;
  background: rgba(255,249,232,.7);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,201,40,.15);
}

h1,
h2,
h3 {
  font-family: 'Manrope', sans-serif;
}

h1 {
  margin-top: 22px;
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}

h1 em,
h2 span {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  margin-top: 27px;
  max-width: 590px;
  font-size: 17px;
  color: #595959;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}

.btn span {
  font-size: 18px;
  transition: transform .25s;
}

.btn:hover span {
  transform: translateX(3px);
}

.btn-ghost {
  border-color: var(--line);
  background: white;
}

.btn-ghost:hover {
  border-color: rgba(244,123,32,.35);
  background: var(--cream);
  transform: translateY(-2px);
}

/* =========================
   HERO TRUST / STATS
========================= */

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font: 800 21px/1 'Manrope', sans-serif;
}

.hero-trust span {
  margin-top: 7px;
  font-size: 12px;
  color: var(--muted);
}

.hero-trust i {
  height: 28px;
  width: 1px;
  background: var(--line);
}

/* =========================================================
   HERO IMAGE — FINAL FULL-HERO FIX
   Only changes the instrument image positioning
========================================================= */

.hero-grid {
  position: static !important;
  min-height: 580px;
}

/* Make the image relative to the entire hero,
   not the centered content container */
.hero-visual {
  position: absolute !important;

  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;

  width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;

  transform: translateX(-50%) !important;

  z-index: 0 !important;
}

.hero-image-wrap {
  position: absolute !important;

  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;

  overflow: hidden !important;

  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.hero-image-wrap img {
  width: 100% !important;
  height: 100% !important;

  max-width: none !important;
  max-height: none !important;

  object-fit: cover !important;

  /* Slightly favor the instrument side */
  object-position: center center !important;

  display: block !important;
}

/* Keep text and its controls above the image */
.hero-content {
  position: relative !important;
  z-index: 5 !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .hero-grid {
    position: static !important;
    min-height: 550px;
  }

  .hero-visual {
    position: absolute !important;

    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;

    width: 100vw !important;
    height: auto !important;

    transform: translateX(-50%) !important;
  }

  .hero-image-wrap {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
  }

  .hero-image-wrap img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* =========================================================
   MOBILE
   Keep the existing mobile behavior
========================================================= */

@media (max-width: 720px) {

  .hero-grid {
    position: relative !important;
    min-height: 0 !important;
  }

  .hero-visual {
    position: relative !important;

    top: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    height: auto !important;

    margin-top: 40px !important;

    transform: none !important;
  }

  .hero-image-wrap {
    position: relative !important;
    inset: auto !important;

    width: 100% !important;
    height: auto !important;

    aspect-ratio: 16 / 9 !important;
  }

  .hero-image-wrap img {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }
}

/* Keep navbar separate from the hero image */
@media (min-width: 721px) {
  .hero-visual {
    top: 82px !important;
    bottom: 0 !important;
    height: auto !important;
  }
}

@media (min-width: 721px) {
  .hero-image-wrap img {
    object-fit: cover !important;
    object-position: 72% center !important;
  }
}

/* =========================
   SCROLL HINT
========================= */

.scroll-hint {
  display: none;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 125px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
}

.section-intro h2,
.section-heading h2,
.brands-head h2,
.quote-copy h2,
.contact-main h2 {
  margin-top: 14px;
  font-size: clamp(38px,4.4vw,61px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.about-copy {
  max-width: 650px;
}

.about-copy p {
  color: #626262;
  font-size: 16px;
}

.about-copy .lead-copy {
  font: 600 23px/1.45 'Manrope', sans-serif;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.025em;
}

.about-copy p + p {
  margin-top: 13px;
}

.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange-deep);
}

.text-link span {
  font-size: 19px;
  transition: transform .2s;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* =========================
   STATS BAND
========================= */

.stats-band {
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-band::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -250px;
  top: -250px;
  box-shadow:
    0 0 0 55px rgba(255,255,255,.04),
    0 0 0 110px rgba(255,255,255,.025);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

.stat {
  padding: 0 25px;
  border-left: 1px solid rgba(255,255,255,.25);
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat strong {
  font: 800 38px/1 'Manrope', sans-serif;
  letter-spacing: -.04em;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  opacity: .78;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =========================
   PRODUCTS
========================= */

.products {
  background: var(--cream);
}

.section-heading,
.brands-head {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 50px;
  align-items: end;
}

.section-heading > p,
.brands-head > p {
  max-width: 430px;
  justify-self: end;
  color: #686868;
  font-size: 14px;
}

.product-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(36,36,36,.08);
  border-radius: 20px;
  padding: 30px;
  min-height: 290px;
  overflow: hidden;
  transition:
    transform .35s,
    box-shadow .35s,
    border-color .35s;
}

.product-card::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .13;
  right: -35px;
  top: -35px;
  transition: transform .4s;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(80,45,5,.10);
  border-color: rgba(244,123,32,.24);
}

.product-card:hover::before {
  transform: scale(1.8);
}

.product-number {
  position: absolute;
  top: 26px;
  right: 27px;
  font-size: 10px;
  color: #aaa;
  letter-spacing: .1em;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--orange);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 43px;
}

.product-card h3 {
  font-size: 21px;
  letter-spacing: -.025em;
}

.product-card p {
  font-size: 15px;
  color: #777;
  margin-top: 8px;
  max-width: 310px;
}

.product-card a {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-top: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  color: var(--orange-deep);
}

.product-card a span {
  font-size: 16px;
}

.product-note {
  margin-top: 25px;
  text-align: center;
  color: #777;
  font-size: 12px;
}

.product-note > span {
  color: var(--orange);
  font-size: 18px;
  margin-right: 5px;
}

.product-note a {
  color: var(--orange-deep);
  font-weight: 800;
}

/* =========================
   INSTRUMENT SHOWCASE
========================= */

.instrument-showcase {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.instrument-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 40%,
      rgba(244,123,32,.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(255,201,40,.08),
      transparent 25%
    );
}

.showcase-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 630px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.showcase-copy {
  padding: 80px 0;
}

.showcase-copy .section-kicker {
  color: var(--yellow);
}

.showcase-copy h2 {
  font-size: clamp(45px,5vw,72px);
  line-height: 1;
  letter-spacing: -.055em;
  margin-top: 14px;
}

.showcase-copy h2 span {
  color: var(--yellow);
}

.showcase-copy p {
  max-width: 520px;
  color: #bcbcbc;
  margin-top: 25px;
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  font-size: 14px;
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255,201,40,.15);
  color: var(--yellow);
  margin-right: 9px;
}

.instrument-art {
  height: 530px;
  position: relative;
  overflow: hidden;
}

.ring {
  position: absolute;
  border: 1px solid rgba(255,201,40,.22);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.ring-one {
  width: 440px;
  height: 440px;
  animation: spin 35s linear infinite;
}

.ring-two {
  width: 320px;
  height: 320px;
  border-color: rgba(244,123,32,.35);
  animation: spinReverse 26s linear infinite;
}

.instrument-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 35% 25%,
      #ffd86a,
      #f47b20 50%,
      #b74400
    );

  box-shadow:
    0 25px 80px rgba(244,123,32,.35),
    inset -18px -22px 35px rgba(110,30,0,.25);
}

.instrument-orb::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255,201,40,.35);
  border-radius: 50%;
}

.instrument-orb span {
  font: 800 32px 'Manrope';
  letter-spacing: -.08em;
}

.instrument-line {
  position: absolute;
  width: 350px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--yellow),
      transparent
    );
  left: 50%;
  top: 50%;
  transform-origin: left center;
}

.line-one {
  transform: rotate(27deg);
}

.line-two {
  transform: rotate(-33deg);
  opacity: .5;
}

.art-label {
  position: absolute;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: .17em;
  color: #888;
}

.art-label b {
  color: #eee;
}

.label-one {
  left: 7%;
  top: 22%;
}

.label-two {
  right: 3%;
  bottom: 21%;
  text-align: right;
}

/* =========================
   BRANDS
========================= */

.brands {
  background: #fff;
}

.brand-list {
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(7,1fr);
}

.brand-list div {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 15px;
  border-right: 1px solid var(--line);
  font: 800 13px 'Manrope';
  letter-spacing: .04em;
  color: #5b5b5b;
  text-align: center;
}

.brand-list div:last-child {
  border-right: 0;
  color: var(--orange-deep);
  background: var(--cream);
}

/* =========================
   WHY CHOOSE US
========================= */

.why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  margin-top: 65px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  min-height: 315px;
  position: relative;
  border: 1px solid rgba(36,36,36,.07);
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(50,30,0,.08);
}

.why-card > span {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 10px;
  color: #aaa;
}

.why-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 62px;
}

.why-card h3 {
  font-size: 20px;
}

.why-card p {
  font-size: 15px;
  color: #777;
  margin-top: 10px;
}

/* =========================
   AUDIENCE
========================= */

.audience {
  padding-top: 85px;
  padding-bottom: 85px;
  background: #fff;
}

.audience-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 55px 60px;
  border-radius: 28px;
  background:
    linear-gradient(
      120deg,
      #fff8e6,
      #fff
    );

  border: 1px solid rgba(244,123,32,.13);
  position: relative;
  overflow: hidden;
}

.audience-wrap::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(255,201,40,.10);
}

.audience-title {
  position: relative;
  z-index: 2;
}

.audience-title h2 {
  font-size: clamp(34px,4vw,53px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-top: 12px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.audience-tags span {
  padding: 11px 15px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(36,36,36,.1);
  font-size: 11px;
  font-weight: 700;
  transition: .25s;
}

.audience-tags span:hover {
  border-color: rgba(244,123,32,.4);
  color: var(--orange-deep);
  transform: translateY(-2px);
}

/* =========================
   QUOTE
========================= */

.quote {
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  right: -290px;
  top: -210px;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.04),
    0 0 0 140px rgba(255,255,255,.025);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.quote-copy .section-kicker {
  color: var(--yellow);
}

.quote-copy h2 {
  font-size: clamp(45px,5vw,70px);
  margin-top: 15px;
}

.quote-copy h2 span {
  color: var(--yellow);
}

.quote-copy > p {
  max-width: 500px;
  color: rgba(255,255,255,.78);
  margin-top: 25px;
}

.direct-contact {
  display: flex;
  gap: 45px;
  margin-top: 40px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
}

.direct-contact small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .65;
}

.direct-contact strong {
  font-size: 13px;
  margin-top: 4px;
}

.quote-form {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 23px;
  box-shadow: 0 28px 70px rgba(95,35,0,.18);
}

.quote-form label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 18px;
}

.quote-form input,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: 0;
  background: #fff;
  font-size: 13px;
  transition: .2s;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(244,123,32,.6);
  box-shadow: 0 0 0 4px rgba(244,123,32,.08);
}

.btn-full {
  width: 100%;
  border: 0;
}

.form-note {
  font-size: 9px;
  color: #999;
  text-align: center;
  margin-top: 11px;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
}

.contact-main p {
  margin-top: 25px;
  color: #666;
  font-size: 14px;
}

.map-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 25px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
}

.contact-side {
  border-top: 1px solid var(--line);
  align-self: end;
}

.contact-side > a,
.contact-hours {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-side small {
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-side strong {
  font: 600 18px 'Manrope';
  margin-top: 5px;
}

.contact-side a strong {
  transition: .2s;
}

.contact-side a:hover strong {
  color: var(--orange-deep);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--ink);
  color: #fff;
  padding: 55px 0 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand .brand-copy small {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  color: #aaa;
}

.footer-links a:hover {
  color: #fff;
}

.footer-cta {
  justify-self: end;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* =========================
   FLOATING BUTTONS
========================= */

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c96b;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  font-size: 25px;
  transition: .25s;
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.back-top {
  position: fixed;
  z-index: 79;
  right: 24px;
  bottom: 90px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .28s;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70%,100% {
    transform: translateY(9px);
    opacity: 0;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

  .nav-links {
    gap: 17px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /*
     On tablet the image becomes a normal
     large full-width image below the text.
  */

  .hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .hero-image-wrap {
    width: 100%;
    min-height: auto;
  }

  .hero-image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .split-grid,
  .showcase-grid,
  .quote-grid,
  .contact-grid,
  .audience-wrap {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .brand-list {
    grid-template-columns: repeat(4,1fr);
  }

  .brand-list div:nth-child(4) {
    border-right: 0;
  }

  .brand-list div:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .showcase-grid {
    padding-top: 50px;
  }

  .instrument-art {
    height: 440px;
  }

  .audience-wrap {
    padding: 45px;
  }

  .quote-grid {
    gap: 50px;
  }

  .contact-side {
    max-width: 600px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

  .container {
    width: min(calc(100% - 30px),var(--max));
  }

  .nav {
    height: 72px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .3s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-cta {
    font-size: 13px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 115px;
  }

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

  .hero h1 {
    font-size: 55px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-trust strong {
    font-size: 18px;
  }

  .hero-trust span {
    font-size: 10px;
  }

  /*
     Mobile image:
     keep the entire generated 16:9 image visible.
  */

  .hero-visual {
    min-height: auto;
  }

  .hero-image-wrap {
    width: 100%;
    min-height: auto;
  }

  .hero-image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .section {
    padding: 90px 0;
  }

  .split-grid,
  .section-heading,
  .brands-head,
  .showcase-grid,
  .quote-grid,
  .contact-grid,
  .audience-wrap {
    gap: 35px;
  }

  .section-heading > p,
  .brands-head > p {
    justify-self: start;
  }

  .product-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 260px;
  }

  .brand-list {
    grid-template-columns: repeat(2,1fr);
  }

  .brand-list div {
    min-height: 85px;
    border-bottom: 1px solid var(--line);
  }

  .brand-list div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .brand-list div:nth-child(even) {
    border-right: 0;
  }

  .brand-list div:last-child {
    grid-column: 1/-1;
    border-right: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }

  .stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .instrument-art {
    height: 350px;
  }

  .ring-one {
    width: 300px;
    height: 300px;
  }

  .ring-two {
    width: 220px;
    height: 220px;
  }

  .instrument-orb {
    width: 125px;
    height: 125px;
  }

  .instrument-line {
    width: 250px;
  }

  .art-label {
    font-size: 7px;
  }

  .audience-wrap {
    padding: 35px 25px;
  }

  .audience-tags span {
    padding: 9px 12px;
  }

  .direct-contact {
    flex-direction: column;
    gap: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .back-top {
    right: 17px;
    bottom: 80px;
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-card,
  .sun-rays,
  .ring {
    animation: none !important;
  }

  .btn,
  .product-card,
  .why-card {
    transition: none;
  }
}
/* =========================================================
   RESPONSIVE POLISH — Sunshine Surgicals
   Added after the existing styles so the current design
   remains unchanged on desktop while improving smaller
   screens.
========================================================= */

img, svg, video, canvas { max-width: 100%; }
input, textarea, button, a { max-width: 100%; }
h1, h2, h3, p, a, strong, span { overflow-wrap: break-word; }

@media (min-width: 1441px) {
  .container { width: min(calc(100% - 80px), 1320px); }
  .hero { min-height: 820px; }
  .hero-content { max-width: 760px; }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .container { width: min(calc(100% - 40px), 1120px); }
  .nav { gap: 18px; }
  .nav-links { gap: 20px; }
  .nav-cta { padding-inline: 14px; }
  .split-grid, .quote-grid, .contact-grid { gap: 65px; }
  .showcase-grid { gap: 35px; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .nav { gap: 20px; }
  .site-logo { width: 145px; }
  .hero { min-height: auto; padding-top: 125px; padding-bottom: 70px; }
  .hero-content { max-width: 720px; }
  .hero h1 { font-size: clamp(48px, 8vw, 72px); }
  .hero-lead { max-width: 650px; }
  .hero-trust { flex-wrap: wrap; }
  .section-heading, .brands-head { grid-template-columns: 1fr; gap: 25px; align-items: start; }
  .section-heading > p, .brands-head > p { justify-self: start; max-width: 650px; }
  .product-grid { gap: 18px; }
  .product-card { padding: 27px; }
  .why-grid { gap: 18px; }
  .why-card { padding: 27px; }
  .audience-wrap { gap: 40px; }
  .quote-grid, .contact-grid { gap: 45px; }
  .quote-form { width: 100%; }
  .footer-top { gap: 22px; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 30px); }
  .nav { height: 70px; }
  .site-logo { width: 135px; }
  .brand-copy { display: none; }
  .nav-toggle { width: 40px; height: 40px; padding: 5px; display: grid; place-content: center; flex: 0 0 auto; }
  .nav-toggle span { width: 24px; margin: 4px; }
  .nav-links { padding: 90px 25px 35px; gap: 22px; overflow-y: auto; overscroll-behavior: contain; }
  .nav-links > a:not(.nav-cta) { padding: 6px 0; }
  .nav-cta { margin-top: 5px; padding: 13px 20px; }
  .hero { padding-top: 105px; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: .99; }
  .eyebrow { font-size: 9px; letter-spacing: .12em; padding: 7px 10px; }
  .hero-lead { font-size: 15px; line-height: 1.65; margin-top: 22px; }
  .hero-actions { width: 100%; gap: 10px; margin-top: 27px; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; padding-inline: 15px; gap: 9px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: 100%; margin-top: 32px; }
  .hero-trust i { display: none; }
  .hero-trust div { min-width: 0; }
  .hero-trust strong { font-size: clamp(15px, 4.5vw, 19px); }
  .hero-trust span { font-size: 9px; line-height: 1.35; }
  .hero-visual { margin-top: 32px !important; }
  .hero-image-wrap { aspect-ratio: 16 / 9 !important; }
  .section { padding: 80px 0; }
  .section-intro h2, .section-heading h2, .brands-head h2, .quote-copy h2, .contact-main h2 { font-size: clamp(36px, 10.5vw, 50px); }
  .about-copy p { font-size: 15px; }
  .about-copy .lead-copy { font-size: 20px; }
  .stats-grid { padding: 38px 0; gap: 26px 18px; }
  .stat { padding: 0 12px; }
  .stat strong { font-size: clamp(25px, 7vw, 35px); }
  .stat span { font-size: 9px; line-height: 1.4; }
  .product-grid { margin-top: 45px; gap: 14px; }
  .product-card { min-height: 0; padding: 25px; }
  .product-icon { margin-bottom: 35px; }
  .product-card h3 { font-size: 20px; }
  .product-card p { font-size: 14px; }
  .showcase-grid { min-height: 0; padding-top: 0; padding-bottom: 0; }
  .showcase-copy { padding: 70px 0 20px; }
  .showcase-copy h2 { font-size: clamp(43px, 12vw, 58px); }
  .showcase-copy p { font-size: 14px; }
  .instrument-art { height: 310px; margin-bottom: 55px; }
  .ring-one { width: min(78vw, 300px); height: min(78vw, 300px); }
  .ring-two { width: min(58vw, 220px); height: min(58vw, 220px); }
  .instrument-orb { width: min(32vw, 125px); height: min(32vw, 125px); }
  .instrument-orb span { font-size: 25px; }
  .instrument-line { width: min(62vw, 250px); }
  .label-one { left: 1%; top: 20%; }
  .label-two { right: 0; bottom: 18%; }
  .brands { padding-top: 75px; }
  .brand-list { margin-top: 40px; }
  .brand-list div { min-height: 78px; padding: 12px 8px; font-size: 11px; }
  .why-grid { margin-top: 45px; }
  .why-card { min-height: 0; padding: 25px; }
  .why-icon { margin-bottom: 45px; }
  .why-card p { font-size: 14px; }
  .audience { padding-top: 65px; padding-bottom: 65px; }
  .audience-wrap { padding: 35px 22px; border-radius: 22px; }
  .audience-title h2 { font-size: clamp(35px, 10vw, 48px); }
  .audience-tags { gap: 8px; }
  .audience-tags span { padding: 8px 11px; font-size: 10px; }
  .quote-copy h2 { font-size: clamp(42px, 11vw, 56px); }
  .quote-copy > p { font-size: 14px; }
  .direct-contact { gap: 16px; margin-top: 30px; }
  .quote-form { padding: 23px; border-radius: 20px; }
  .quote-form label { margin-bottom: 15px; }
  .quote-form input, .quote-form textarea { font-size: 16px; }
  .quote-form textarea { min-height: 125px; }
  .contact { padding-bottom: 80px; }
  .contact-main p { font-size: 14px; }
  .contact-side strong { font-size: 17px; overflow-wrap: anywhere; }
  .footer { padding-top: 45px; }
  .footer-top { gap: 25px; }
  .footer-links { gap: 14px 22px; font-size: 11px; }
  .footer-bottom { line-height: 1.5; }
  .whatsapp-float { width: 50px; height: 50px; right: 15px; bottom: 15px; }
  .back-top { width: 40px; height: 40px; right: 20px; bottom: 78px; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .nav { height: 64px; }
  .site-logo { width: 118px; }
  .nav-links { padding-inline: 20px; gap: 19px; }
  .hero { padding-top: 94px; padding-bottom: 52px; }
  .eyebrow { max-width: 100%; font-size: 8px; }
  .hero h1 { font-size: clamp(38px, 12.5vw, 48px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; flex: none; }
  .hero-trust { gap: 8px; }
  .hero-trust strong { font-size: 14px; }
  .hero-trust span { font-size: 8px; }
  .section { padding: 68px 0; }
  .section-intro h2, .section-heading h2, .brands-head h2, .contact-main h2 { font-size: clamp(34px, 10.5vw, 44px); }
  .about-copy .lead-copy { font-size: 18px; }
  .stats-grid { gap: 24px 10px; }
  .stat { padding: 0 6px; }
  .stat strong { font-size: 24px; }
  .stat span { font-size: 8px; }
  .product-card { padding: 22px; }
  .product-icon { margin-bottom: 30px; }
  .instrument-art { height: 270px; }
  .art-label { font-size: 6px; letter-spacing: .12em; }
  .audience-wrap { padding: 30px 18px; }
  .audience-tags span { font-size: 9px; }
  .quote-form { padding: 20px; }
  .direct-contact strong { font-size: 12px; }
  .footer-links { gap: 12px 18px; }
}

@media (max-width: 340px) {
  .container { width: calc(100% - 20px); }
  .site-logo { width: 108px; }
  .nav-toggle { width: 36px; }
  .hero h1 { font-size: 36px; }
  .hero-trust { grid-template-columns: 1fr; gap: 14px; }
  .hero-trust div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: 7px; }
  .hero-trust span { margin-top: 0; }
  .stat strong { font-size: 21px; }
  .brand-list div { font-size: 10px; }
  .instrument-art { height: 245px; }
  .ring-one { width: 220px; height: 220px; }
  .ring-two { width: 165px; height: 165px; }
  .instrument-orb { width: 95px; height: 95px; }
  .instrument-line { width: 190px; }
  .audience-tags span { max-width: 100%; }
}

/* =========================================
   MOBILE HERO — BLURRED IMAGE + TEXT PANEL
   Desktop remains completely unchanged
   ========================================= */

@media (max-width: 1562px) {

  /* -----------------------------------------
     HERO
     ----------------------------------------- */

  .hero {
    position: relative !important;
    min-height: 780px !important;
    overflow: hidden !important;
    isolation: isolate;
  }


  /* -----------------------------------------
     FULL HERO IMAGE
     ----------------------------------------- */

  .hero-grid {
    position: static !important;
    min-height: 0 !important;
  }

  .hero-visual {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin-top: 0 !important;
    transform: none !important;

    z-index: 0 !important;
  }

  .hero-image-wrap {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    min-height: 0 !important;
    aspect-ratio: auto !important;

    overflow: hidden !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .hero-image-wrap img {
    position: absolute !important;
    inset: -12px !important;

    width: calc(100% + 24px) !important;
    height: calc(100% + 24px) !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;

    /* Mobile crop */
    object-position: 82% center !important;

    /* Slight blur */
    filter: blur(5px) !important;

    display: block !important;
  }


  /* -----------------------------------------
     DARK/WHITE SOFTENING OVER IMAGE
     ----------------------------------------- */

  .hero-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.25) 0%,
        rgba(255,255,255,.12) 35%,
        rgba(255,255,255,.20) 100%
      );

    pointer-events: none;
  }


  /* -----------------------------------------
     HERO CONTENT
     ----------------------------------------- */

  .hero-content {
    position: relative !important;
    z-index: 5 !important;

    /*
      Frosted glass panel behind the text.
      This is what makes the content readable.
    */
    background: rgba(255,255,255,.72) !important;

    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    border: 1px solid rgba(255,255,255,.82) !important;

    border-radius: 24px !important;

    padding: 25px 18px 23px !important;

    box-shadow:
      0 18px 50px rgba(50,30,0,.10),
      inset 0 1px 0 rgba(255,255,255,.75) !important;
  }


  /* -----------------------------------------
     EYEBROW
     ----------------------------------------- */

  .hero-content .eyebrow {
    background: rgba(255,255,255,.82) !important;

    border-color: rgba(244,123,32,.25) !important;

    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }


  /* -----------------------------------------
     HEADING
     ----------------------------------------- */

  .hero-content h1 {
    text-shadow: 0 1px 2px rgba(255,255,255,.45);

    margin-top: 20px !important;
  }


  /* -----------------------------------------
     DESCRIPTION
     ----------------------------------------- */

  .hero-content .hero-lead {
    color: #4f4f4f !important;

    text-shadow: 0 1px 2px rgba(255,255,255,.65);

    max-width: 100% !important;
  }


  /* -----------------------------------------
     BUTTONS
     ----------------------------------------- */

  .hero-content .hero-actions {
    position: relative;
    z-index: 2;
  }


  /* -----------------------------------------
     STATS
     ----------------------------------------- */

  .hero-content .hero-trust {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(36,36,36,.10);

    padding-top: 20px;
  }


  /* -----------------------------------------
     REMOVE OLD HERO OVERLAY/GLOW
     ----------------------------------------- */

  .hero::after {
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    opacity: 0 !important;
    filter: none !important;
  }
}

/* Business Hours */
.business-hours {
  margin-top: 38px;
  padding-top: 24px;

  border-top: 1px solid rgba(36,36,36,.12);

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-hours small {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #999;
}

.business-hours strong {
  font-size: 16px;
  line-height: 1.4;
  color: #242424;
}

.business-hours span {
  font-size: 14px;
  line-height: 1.5;
  color: #6E6E6E;
}

/* =========================================================
   FREE MAP PREVIEW CARD
   Click anywhere on the card → Google Maps
========================================================= */

.map-card {
  display: block;
  width: 100%;
  margin-top: 28px;
  text-decoration: none;
  color: inherit;
}

.map-card-preview {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
  border: 1px solid rgba(36, 36, 36, .10);
  box-shadow: 0 12px 35px rgba(31, 22, 11, .08);
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.map-card-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.map-card:hover .map-card-preview {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(31, 22, 11, .13);
}

.map-card-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 14px;

  border-radius: 10px;

  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: var(--ink);

  font-size: 12px;
  font-weight: 700;

  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.map-card-overlay b {
  color: var(--orange);
  font-size: 14px;
}

.map-pin {
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
}


/* =========================
   MAP — MOBILE
========================= */

@media (max-width: 720px) {

  .map-card {
    margin-top: 24px;
  }

  .map-card-preview {
    height: 180px;
    border-radius: 16px;
  }

  .map-card-overlay {
    left: 11px;
    bottom: 11px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .map-card-overlay b {
    font-size: 13px;
  }
}