:root {
  --green: #146b3a;
  --green-dark: #0b4e2a;
  --green-soft: #eaf6ef;
  --green-pale: #f5fbf7;
  --yellow: #e7b928;
  --ink: #10231a;
  --muted: #65756c;
  --white: #fff;
  --line: #dfe9e3;
  --shadow: 0 18px 50px rgba(16, 35, 26, .10);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  font: inherit
}

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

button {
  border: 0;
  background: none;
  cursor: pointer
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px
}

.skip-link:focus {
  top: 16px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 233, 227, .8)
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

/* Remove box around logo */
.brand,
.logo,
.brand-logo,
.logo-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Logo */
.brand img,
.logo img,
.navbar-logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 7px 20px rgba(20, 107, 58, .20)
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: .08em
}

.brand-text small {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 4px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #53645b;
  padding: 10px 13px;
  border-radius: 10px
}

.main-nav a:hover {
  color: var(--green);
  background: var(--green-pale)
}

.main-nav .nav-cta {
  background: var(--green);
  color: #fff;
  padding-inline: 19px
}

.main-nav .nav-cta:hover {
  background: var(--green-dark);
  color: #fff
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-pale);
  padding: 10px
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  border-radius: 2px
}

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

.hero {
  position: relative;
  min-height: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background-image: url("images/shop.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.60) 45%,
      rgba(0, 0, 0, 0.48) 100%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;

  width: min(900px, 90%);
  margin: 0 auto;

  text-align: center;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: #ffffff;
}

.hero-eyebrow span {
  width: 8px;
  height: 8px;
  display: inline-block;

  border-radius: 50%;
  background: #d9b51c;
}

/* Main Heading */
.hero h1 {
  margin: 0;

  font-size: clamp(55px, 7vw, 95px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -3px;

  color: #ffffff;
}

.hero h1 strong {
  display: block;
  color: #7ee08f;
  font-weight: 800;
}

/* Subtitle */
.hero h2 {
  margin: 28px 0 12px;

  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 700;

  color: #ffffff;
}

/* Description */
.hero p {
  max-width: 720px;

  margin: 0 auto;

  font-size: 17px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.90);
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;

  margin-top: 32px;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 52px;
  padding: 0 25px;

  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  transition: all 0.25s ease;
}

.hero .btn span {
  font-size: 20px;
  line-height: 1;
}

/* Primary Button */
.hero .btn-primary {
  background: #147a3e;
  color: #ffffff;
  border: 1px solid #147a3e;
}

.hero .btn-primary:hover {
  background: #0f6332;
  transform: translateY(-2px);
}

/* Secondary Button */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(5px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Bottom Information */
.hero-info {
  width: 100%;
  max-width: 720px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 38px;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-info div {
  display: flex;
  flex-direction: column;
  gap: 7px;

  padding: 0 18px;
}

.hero-info div+div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-info b {
  font-size: 13px;
  color: #ffffff;
}

.hero-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

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

@media (max-width: 768px) {

  .hero {
    min-height: 680px;
    padding: 80px 20px;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0.68));
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -2px;
  }

  .hero h2 {
    font-size: 20px;
    margin-top: 24px;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .hero-info div {
    padding: 0;
  }

  .hero-info div+div {
    border-left: 0;
  }
}

.image-frame img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
  border-radius: 21px
}

.image-badge {
  position: absolute;
  left: -25px;
  bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow)
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-soft);
  border-radius: 11px;
  display: grid;
  place-items: center
}

.image-badge span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}

.image-badge strong {
  font-size: 12px
}

.image-badge small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px
}

.quick-strip {
  background: var(--green);
  color: #fff
}

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

.quick-item {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.quick-item:first-child {
  padding-left: 0
}

.quick-item:last-child {
  border-right: 0
}

.quick-item>span {
  font-size: 11px;
  color: #b9dfc8;
  font-weight: 800
}

.quick-item div {
  display: flex;
  flex-direction: column
}

.quick-item strong {
  font-size: 13px
}

.quick-item small {
  font-size: 10px;
  color: #c7dfcf
}

.section {
  padding: 105px 0
}

.split-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 90px;
  align-items: center
}

.section-image {
  position: relative
}

.section-image img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.image-note {
  position: absolute;
  right: -18px;
  bottom: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: flex;
  gap: 8px;
  align-items: center
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
  margin: 12px 0 19px
}

.section-copy h2 em,
.section-heading h2 em {
  font-style: normal;
  color: var(--green)
}

.section-copy>p {
  color: var(--muted);
  font-size: 15px;
  max-width: 650px;
  margin-bottom: 13px
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 28px
}

.check-list div {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center
}

.check-list span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800
}

.products {
  background: var(--green-pale)
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px
}

.section-heading>p {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s ease
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.product-image {
  position: relative;
  background: #f7faf8;
  aspect-ratio: 2/1;
  overflow: hidden
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-number {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .09)
}

.product-content {
  padding: 23px
}

.card-label {
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--green);
  font-weight: 800
}

.product-content h3 {
  font-size: 22px;
  margin: 5px 0 7px
}

.product-content p {
  font-size: 13px;
  color: var(--muted)
}

.categories {
  background: #fff
}

.centered {
  display: block;
  text-align: center
}

.centered .section-kicker {
  justify-content: center
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 35px
}

.category-card {
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 26px 20px;
  background: #fff;
  transition: .25s ease
}

.category-card:hover {
  border-color: #b7d8c3;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 35, 26, .07)
}

.category-card>span {
  width: 45px;
  height: 45px;
  background: var(--green-soft);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 20px
}

.category-card h3 {
  font-size: 16px;
  margin: 17px 0 4px
}

.category-card p {
  font-size: 12px;
  color: var(--muted)
}

.why {
  background: #f4f8f5
}

.why-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 85px;
  align-items: center
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 17px;
  display: flex;
  gap: 17px
}

.feature>span {
  color: var(--green);
  font-weight: 800;
  font-size: 11px
}

.feature h3 {
  font-size: 15px;
  margin-bottom: 3px
}

.feature p {
  font-size: 12px;
  color: var(--muted)
}

.gallery {
  background: #fff
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 245px 245px;
  gap: 14px
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #edf4ef
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease
}

.gallery-item:hover img {
  transform: scale(1.045)
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, .93);
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  color: var(--ink)
}

.gallery-large {
  grid-row: 1 / 3
}

.gallery-item:nth-child(2) {
  grid-column: 2
}

.gallery-item:nth-child(3) {
  grid-column: 3
}

.gallery-item:nth-child(4) {
  grid-column: 2 / 4
}

.location {
  background: var(--green-pale)
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center
}

.map-card {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dfeee4;
  box-shadow: var(--shadow)
}

.map-placeholder {
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px;
  background:
    linear-gradient(rgba(234, 246, 239, .82), rgba(234, 246, 239, .92)),
    radial-gradient(circle at 20% 25%, #b8d9c4 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, #b8d9c4 0 1px, transparent 2px);
  background-size: auto, 34px 34px, 44px 44px
}

.map-pin {
  font-size: 44px;
  margin-bottom: 10px
}

.map-placeholder>span {
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 800;
  color: var(--green)
}

.map-placeholder>strong {
  font-size: 30px;
  line-height: 1.1;
  margin: 8px 0
}

.map-placeholder>small {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 23px
}

.address-box {
  display: flex;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 15px;
  margin: 26px 0
}

.address-box>span {
  font-size: 22px
}

.address-box strong {
  font-size: 14px
}

.address-box p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px
}

.text-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  border-bottom: 1px solid #b8d7c3;
  padding-bottom: 4px
}

.contact-cta {
  padding: 75px 0;
  background: var(--green-dark);
  color: #fff
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px
}

.light-kicker {
  color: #bce0c8
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 10px 0
}

.cta-inner p {
  color: #c5dbcc;
  max-width: 650px;
  font-size: 14px
}

.cta-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  flex-shrink: 0
}

.footer {
  background: #08150e;
  color: #fff;
  padding-top: 65px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  gap: 60px;
  padding-bottom: 55px
}

.footer-brand-link {
  margin-bottom: 18px
}

.footer-brand p {
  color: #a9b9b0;
  font-size: 12px;
  max-width: 320px
}

.footer h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px
}

.footer>.container>div:not(.footer-brand) a,
.footer-grid>div:not(.footer-brand) a {
  display: block;
  color: #a9b9b0;
  font-size: 12px;
  margin: 8px 0
}

.footer-grid>div:last-child p {
  color: #a9b9b0;
  font-size: 12px;
  margin: 8px 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #73847b;
  font-size: 10px
}

.footer-bottom a {
  color: #b9cec1
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 7, .92);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px
}

.lightbox-close {
  position: absolute;
  right: 22px;
  top: 16px;
  color: #fff;
  font-size: 42px;
  line-height: 1
}

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

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

:focus-visible {
  outline: 3px solid rgba(231, 185, 40, .9);
  outline-offset: 3px
}

@media(max-width:1050px) {
  .hero-grid {
    gap: 45px
  }

  .split-grid,
  .why-grid,
  .location-grid {
    gap: 50px
  }

  .main-nav a {
    padding-inline: 9px
  }
}

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

  .menu-toggle {
    display: block
  }

  .main-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 72px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 9px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow)
  }

  .main-nav.open {
    display: flex
  }

  .main-nav a {
    padding: 12px
  }

  .main-nav .nav-cta {
    text-align: center
  }

  .hero {
    padding: 55px 0 65px
  }

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

  .hero-copy {
    text-align: center
  }

  .eyebrow {
    justify-content: center
  }

  .hero-text {
    margin-inline: auto
  }

  .hero-actions,
  .hero-trust {
    justify-content: center
  }

  .hero-image-wrap {
    max-width: 650px;
    width: 100%;
    margin: auto
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr
  }

  .quick-item:nth-child(2) {
    border-right: 0
  }

  .quick-item:nth-child(3) {
    padding-left: 0
  }

  .split-grid,
  .why-grid,
  .location-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 78px 0
  }

  .section-image img {
    height: 520px
  }

  .product-grid {
    grid-template-columns: 1fr 1fr
  }

  .category-grid {
    grid-template-columns: 1fr 1fr
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 0
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 190px 190px
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1
  }

  .gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2
  }

  .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

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

@media(max-width:560px) {
  .container {
    width: min(var(--container), calc(100% - 24px))
  }

  .nav-wrap {
    height: 70px
  }

  .hero {
    padding-top: 45px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero-lead {
    font-size: 18px
  }

  .hero-trust {
    gap: 12px;
    flex-wrap: wrap
  }

  .hero-trust div {
    min-width: 95px
  }

  .image-frame {
    padding: 6px;
    border-radius: 20px
  }

  .image-frame img {
    height: 440px;
    border-radius: 15px
  }

  .image-badge {
    left: 8px;
    bottom: 12px
  }

  .quick-grid {
    grid-template-columns: 1fr
  }

  .quick-item,
  .quick-item:nth-child(3) {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
  }

  .quick-item:last-child {
    border-bottom: 0
  }

  .split-grid,
  .why-grid,
  .location-grid {
    gap: 35px
  }

  .section {
    padding: 65px 0
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 34px
  }

  .section-image img {
    height: 430px
  }

  .image-note {
    right: 8px;
    bottom: 10px;
    max-width: calc(100% - 16px)
  }

  .check-list {
    grid-template-columns: 1fr
  }

  .product-grid,
  .category-grid,
  .feature-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-rows: 220px 165px 165px
  }

  .map-card,
  .map-placeholder {
    min-height: 390px
  }

  .cta-inner h2 {
    font-size: 35px
  }

  .cta-actions {
    width: 100%
  }

  .cta-actions .btn {
    width: 100%
  }

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

  .footer-bottom .container {
    flex-direction: column
  }
}
/* FOOTER LOGO - REMOVE BOX */
.footer-brand,
.footer-brand-link,
.footer-brand img,
footer .brand,
footer .brand img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Footer logo size */
.footer-brand img,
.footer-brand-link img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 0 !important;
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

.brand-logo {
  object-fit: cover;
  background: #fff;
  padding: 0
}

.map-embed {
  display: block;
  width: 100%;
  height: 480px;
  border: 0
}

@media(max-width:850px) {
  .map-embed {
    height: 390px
  }
}