:root {
  /* Old: #002842 */
  --text-primary: #3f434a;
  /* Old: #485c71 */
  --text-secondary: #5c6673;
  /* Old: #b7bec8 */
  --border-primary: #c9c3ba;
  /* Old: #b7bec83d */
  --border-secondary: #c9c3ba40;
  /* Old: #1a3c52 */
  --bg-primary: #3f434a;
  /* Old: #eef6ff */
  --bg-secondary: #dce9f4;
  /* Old: #e2eecd */
  --bg-tertiary: #b8c9b0;
  /* Old: #a0aab6 */
  --icon-primary: #8e98a4;
  /* Old: #738293 */
  --icon-secondary: #6d7783;
  /* Old: #ffd100 */
  --primary-color: #dce9f4;
  --hero-cta-color: #a9c6de;
  /* Old: #0c0c0c */
  --black-color: #3f434a;
  --white-color: #ffffff;
  --transition: all 0.3s;
  --primary-radius: 8px;
  --title-font: "Fredoka", sans-serif;
  --body-font: "Jost", sans-serif;
  /* Old: #e2eecd */
  --hero-bg-color: #e9f0f6;
}

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

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-primary);
  background-color: var(--white-color);
}

.site-header {
  background-color: var(--white-color);
}

.navbar {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  box-shadow:
    0 2px 8px rgba(0, 40, 66, 0.07),
    0 10px 32px rgba(0, 40, 66, 0.13);
}

.nav-left {
  justify-self: start;
}

.logo-placeholder {
  width: 130px;
  height: 42px;
  border: 1px dashed var(--border-primary);
  border-radius: var(--primary-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
}

.logo-placeholder::before {
  content: none;
}

.nav-center {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
}

.nav-center > li {
  position: relative;
}

.nav-center a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition);
}

.nav-item-services > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg) translateY(-1px);
  transition: var(--transition);
}

.nav-center a:hover {
  color: var(--bg-primary);
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 312px;
  margin: 0;
  padding: 18px 22px;
  list-style: none;
  border-radius: var(--primary-radius);
  border-left: 2px solid var(--primary-color);
  /* Old: #1f2430 */
  background-color: #3f434a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 10;
}

.services-dropdown li + li {
  margin-top: 14px;
}

.services-dropdown a {
  /* Old: #a2a9b4 */
  color: #d8dde3;
  font-size: 18px;
  font-weight: 500;
}

.nav-item-services:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-services:hover .nav-arrow {
  transform: rotate(225deg) translateY(-1px);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.icon-search::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-primary);
  border-radius: 50%;
  top: 4px;
  left: 5px;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--text-primary);
  transform: rotate(45deg);
  bottom: 7px;
  right: 5px;
}

.icon-cart::before {
  content: "🛒";
  font-size: 14px;
  color: var(--text-primary);
}

.cart-count {
  position: absolute;
  top: -1px;
  right: -2px;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 9px;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
}

.icon-menu {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary-color);
}

.icon-menu::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--text-primary);
  box-shadow: 0 4px 0 var(--text-primary), 0 8px 0 var(--text-primary);
}

.mobile-menu-overlay,
.mobile-menu {
  display: none;
}

#language-select {
  border: 1px solid transparent;
  background: var(--white-color);
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--body-font);
  cursor: pointer;
  padding: 8px 30px 8px 12px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--icon-secondary) 50%),
    linear-gradient(135deg, var(--icon-secondary) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: var(--transition);
}

#language-select:hover {
  border-color: var(--border-primary);
  box-shadow: 0 6px 18px rgba(0, 40, 66, 0.12);
}

#language-select:focus {
  outline: none;
  border-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 82, 0.12);
}

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

.hero {
  position: relative;
  background-color: var(--hero-bg-color);
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 530px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 42px 0 54px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin: 10px 0 14px;
  max-width: 650px;
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 4.9vw, 4.2rem);
  line-height: 1.08;
  color: var(--text-primary);
}

.hero-content {
  text-align: left;
  flex: 0 1 640px;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-kicker-paw {
  display: inline-flex;
  width: 20px;
  height: 18px;
  color: var(--text-primary);
}

.hero-kicker-paw svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-copy {
  margin: 0 0 24px;
  max-width: 500px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-primary);
  /* Old: var(--primary-color) */
  background: var(--hero-cta-color);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 10px rgba(63, 67, 74, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: -1;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(63, 67, 74, 0.2);
}

.hero-cta:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.hero-cta:focus-visible {
  outline: 2px solid rgba(63, 67, 74, 0.45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta,
  .hero-cta::before,
  .contact-submit--touch,
  .contact-submit--touch::before {
    transition: none;
  }

  .hero-dog-frame {
    transition: none;
  }

  .hero-dog-frame:not(:first-of-type) {
    opacity: 0 !important;
    visibility: hidden;
  }

  .hero-dog-frame:first-of-type {
    opacity: 1 !important;
    pointer-events: auto;
    visibility: visible;
  }
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 1 auto;
  padding-left: 0;
}

.hero-dog-stack {
  display: grid;
  justify-items: end;
  width: min(72vw, 980px);
}

.hero-dog-frame {
  grid-area: 1 / 1;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  justify-self: end;
  align-self: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  transform: none;
}

.hero-dog-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-dog {
  transform: none;
}

.hero-splash {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-dshape {
  position: absolute;
  right: clamp(260px, 300vw, 430px);
  bottom: 250px;
  width: clamp(160px, 20vw, 300px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.hero-splash-left {
  top: -24px;
  left: 0;
  width: clamp(340px, 39vw, 620px);
}

.hero-splash-right {
  top: -26px;
  right: 0;
  width: clamp(432px, 50.4vw, 816px);
  transform: translate(10%, -10%);
}

.hero-paws {
  top: 74px;
  right: clamp(360px, 38vw, 560px);
  width: clamp(58px, 7vw, 90px);
}

.hero-bone-left {
  left: clamp(180px, 24vw, 340px);
  bottom: 70px;
  width: clamp(20px, 2.4vw, 30px);
  opacity: 0.45;
}

.hero-bone-right {
  left: clamp(210px, 24vw, 390px);
  bottom: 45px;
  width: clamp(92px, 11vw, 132px);
  opacity: 0.35;
}

@media (min-width: 961px) {
  .hero-inner {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.hero-bottom {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 2px;
}

/* About page — inner hero (background from aboutus-hero.png) */
.about-page-hero {
  --about-hero-text: #002c3e;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(320px, 44vw, 480px);
  padding: clamp(60px, 11vw, 120px) 24px clamp(56px, 8vw, 100px);
  background-color: #ffffff;
  background-image: url("../../aboutus-hero.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-page-hero__paws {
  position: absolute;
  right: clamp(6px, 2.5vw, 40px);
  top: clamp(4px, 1.5vw, 28px);
  width: clamp(96px, 20vw, 220px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}

.about-page-hero__paw {
  position: absolute;
  left: clamp(6px, 0.1vw, 40px);
  bottom: clamp(4px, .25vw, 28px);
  width: clamp(96px, 15vw, 220px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}

.about-page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.about-page-hero__title-row {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.about-page-hero__text-left-paw {
  position: absolute;
  top: 58%;
  right: 100%;
  margin-right: clamp(6px, 1.5vw, 20px);
  width: clamp(48px, 10vw, 104px);
  height: auto;
  pointer-events: none;
  object-fit: contain;
}

@media (max-width: 960px) {
  .about-page-hero__paws,
  .about-page-hero__paw {
    display: none;
  }
}

.about-page-hero__title {
  margin: 0;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--about-hero-text);
}

.about-breadcrumb {
  margin: 0;
}

.about-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--body-font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--about-hero-text);
}

.about-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about-breadcrumb__link:hover {
  opacity: 0.75;
}

.about-breadcrumb__home {
  margin-top: 1px;
}

.about-breadcrumb__home-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.about-breadcrumb__sep {
  font-weight: 500;
  user-select: none;
}

.about-breadcrumb__current {
  font-weight: 500;
}

.about-main {
  min-height: 24vh;
  background: var(--white-color);
}

.contact-main {
  min-height: 24vh;
  background: var(--white-color);
}

.contact-section {
  background: var(--white-color);
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 88px);
}

/* Contact page — "Get In Touch Today" block (matches reference layout) */
.contact-section--get-in-touch {
  --contact-touch-navy: #001f3f;
  --contact-touch-input-bg: #ebf4ff;
}

.contact-get-in-touch {
  box-sizing: border-box;
  width: min(920px, 100% - clamp(48px, 8vw, 80px));
  margin: 0 auto;
  padding: 0 clamp(28px, 7vw, 72px);
  text-align: center;
}

.contact-get-in-touch__title {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--contact-touch-navy);
}

.contact-get-in-touch__subtitle {
  margin: 0 auto clamp(28px, 4vw, 36px);
  max-width: 52rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #5a6d7e;
}

.contact-get-in-touch__rule {
  margin: 0 0 clamp(28px, 4vw, 40px);
  border: none;
  border-top: 1px solid #d8dde3;
  max-width: 100%;
}

.contact-get-in-touch__form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 26px);
}

.contact-get-in-touch__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}

.contact-field--touch label {
  display: block;
  margin: 0 0 10px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: var(--contact-touch-navy);
}

.contact-field--touch input,
.contact-field--touch textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--contact-touch-input-bg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-field--touch input {
  min-height: 52px;
}

.contact-field--touch input::placeholder,
.contact-field--touch textarea::placeholder {
  color: #7a8a99;
  opacity: 1;
}

.contact-field--touch input:focus,
.contact-field--touch textarea:focus {
  outline: none;
  border-color: rgba(0, 31, 63, 0.2);
  box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.08);
}

.contact-field--touch textarea {
  min-height: clamp(180px, 28vw, 220px);
  resize: vertical;
  line-height: 1.55;
}

.contact-submit--touch {
  width: 100%;
  margin-top: clamp(4px, 1vw, 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--hero-cta-color);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 10px rgba(63, 67, 74, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit--touch::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: -1;
}

.contact-submit--touch:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(63, 67, 74, 0.2);
}

.contact-submit--touch:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.contact-submit--touch:focus-visible {
  outline: 2px solid rgba(63, 67, 74, 0.45);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .contact-get-in-touch__grid2 {
    grid-template-columns: 1fr;
  }
}

.about-intro {
  background: var(--white-color);
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 88px);
}

.about-intro-wrap {
  width: min(1200px, 100% - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.08fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}

.about-intro-media {
  margin: 0;
  position: relative;
  min-width: 0;
  min-height: 0;
}

.about-intro-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: min(620px, 72vh);
  border-radius: 20px;
  background: linear-gradient(160deg, #e8f0f8 0%, #dce9f4 45%, #cfdce8 100%);
  border: 1px dashed var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-family: var(--body-font);
  font-size: 0.9375rem;
  text-align: center;
  padding: 24px;
}

.about-intro-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}

.about-intro-content {
  max-width: 640px;
  min-width: 0;
  align-self: start;
}

.about-intro-kicker {
  margin: 0 0 10px;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.about-intro-title {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #002c3e;
}

.about-intro-copy {
  margin: 0 0 14px;
  font-family: var(--body-font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-intro-content .about-intro-copy:last-of-type {
  margin-bottom: 22px;
}

.about-intro-quote {
  margin: 0 0 28px;
  padding: clamp(18px, 3vw, 26px) clamp(20px, 3vw, 30px);
  border-radius: 12px;
  background: #dce9f4;
  text-align: left;
}

.about-intro-quote-title {
  margin: 0 0 12px;
  font-family: var(--body-font);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #002c3e;
}

.about-intro-quote-copy {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: #002c3e;
}

.about-intro-quote-copy--follow {
  margin-top: 14px;
}

.about-intro-taglines {
  margin: 0 0 28px;
}

.about-intro-tagline {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  color: #002c3e;
}

.about-intro-tagline + .about-intro-tagline {
  margin-top: 6px;
}

.about-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 clamp(20px, 2.5vw, 26px) 0 clamp(24px, 3vw, 30px);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: #002c3e;
  box-shadow:
    0 1px 2px rgba(0, 44, 62, 0.14),
    0 4px 14px rgba(0, 44, 62, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.about-intro-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow:
    0 2px 6px rgba(0, 44, 62, 0.16),
    0 8px 22px rgba(0, 44, 62, 0.24);
}

.about-intro-cta:focus-visible {
  outline: 2px solid rgba(0, 44, 62, 0.45);
  outline-offset: 3px;
}

.about-intro-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transition: transform 0.22s ease;
}

.about-intro-cta:hover .about-intro-cta-icon,
.about-intro-cta:focus-visible .about-intro-cta-icon {
  transform: translateX(5px);
}

.about-intro-cta-icon svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .about-intro-cta-icon {
    transition: none;
  }

  .about-intro-cta:hover .about-intro-cta-icon,
  .about-intro-cta:focus-visible .about-intro-cta-icon {
    transform: none;
  }
}

.services-section {
  background: #ffffff;
  padding: 50px 0 54px;
}

.services-wrap {
  width: min(1280px, 100% - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 42px;
}

.services-media {
  position: relative;
  min-height: 510px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.services-blob {
  position: absolute;
  left: 58px;
  top: 56px;
  width: 508px;
  height: 616px;
  background: url("../icons/hero-bg-shape.svg") center / contain no-repeat;
  z-index: 1;
  transform: translateY(-10%);
}

.services-dog {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: auto;
  display: block;
}

.services-food {
  position: absolute;
  z-index: 3;
  width: 170px;
  left: 266px;
  bottom: 0;
}

.services-content {
  max-width: 680px;
}

.services-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--body-font);
}

.services-kicker-paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--text-primary);
}

.services-kicker-paw img {
  width: 20px;
  height: 18px;
  display: block;
}

.services-content h2 {
  margin: 0 0 18px;
  color: var(--text-primary);
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  font-weight: 700;
  font-family: var(--title-font);
}

.services-copy {
  margin: 0 0 22px;
  color: #667a8f;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
}

.services-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 12px;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  min-height: 3.5rem;
  flex: 1 1 100%;
  min-width: 0;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--body-font);
}

.service-pill-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  color: #f6c300;
}

.service-pill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-pill > span:last-child {
  display: block;
}

.pill-blue {
  background: #cfeaf6;
}

.services-grid .service-pill:first-child {
  background: #dff5fa;
}

.services-grid .service-pill:nth-child(2) {
  background: #ffe5d6;
}

.pill-peach {
  background: #f8e2d5;
}

.pill-green {
  background: #e4edcf;
}

.pill-lilac {
  background: #e6d6ef;
}

@media (max-width: 960px) {
  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .logo-placeholder {
    width: 112px;
    height: 38px;
  }

  .nav-center,
  #language-select {
    display: none;
  }

  .nav-actions {
    display: inline-flex;
  }

  .icon-search {
    display: none;
  }

  .icon-cart {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background: rgba(8, 12, 24, 0.42);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 30;
  }

  .mobile-menu-overlay[hidden] {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(84vw, 320px);
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    /* Old: linear-gradient(180deg, #140f2f 0%, #1a1440 100%) */
    background: linear-gradient(180deg, #3f434a 0%, #353940 100%);
    color: #fff;
    z-index: 40;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px)) 16px;
    box-shadow: -12px 0 26px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu .logo-placeholder {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
  }

  .mobile-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-nav li + li {
    margin-top: 8px;
  }

  .mobile-menu-nav a {
    display: block;
    padding: 9px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
  }

  .mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 6px;
  }

  .mobile-accordion-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 2px 4px 2px 2px;
    border-radius: 8px;
  }

  .mobile-accordion-row > a {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 8px;
    color: #dce9f4;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-accordion-row > a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-accordion-expand {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: #dce9f4;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-accordion-expand:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-accordion-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /* Old border: rgba(255, 209, 0, 0.45), old color: #ffd100 */
    border: 1px solid rgba(220, 233, 244, 0.55);
    color: #dce9f4;
    font-size: 12px;
    line-height: 1;
  }

  .mobile-submenu {
    list-style: none;
    margin: 4px 0 0;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
  }

  .mobile-submenu li + li {
    margin-top: 2px;
  }

  .mobile-submenu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 8px;
  }

  .mobile-menu-meta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-meta-title {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-language {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 16px;
  }

  .mobile-language-trigger {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.08);
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.82) 50%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.82) 50%, transparent 50%);
    background-position:
      calc(100% - 16px) calc(50% - 2px),
      calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    color: #fff;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 1rem;
    cursor: pointer;
    padding: 9px 34px 9px 12px;
    border-radius: 10px;
    text-align: left;
    color-scheme: dark;
  }

  .mobile-language-trigger:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-language-trigger:focus {
    outline: none;
    border-color: rgba(220, 233, 244, 0.7);
  }

  .mobile-language-current {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-language-panel {
    list-style: none;
    margin: 8px 0 0;
    padding: 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
  }

  .mobile-language-panel li {
    margin: 0;
    padding: 0;
  }

  .mobile-language-panel li + li {
    margin-top: 2px;
  }

  .mobile-language-option {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
  }

  .mobile-language-option:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-language-option.is-selected {
    background: rgba(220, 233, 244, 0.35);
    color: #1a1d22;
  }

  .mobile-language-option:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(220, 233, 244, 0.65);
  }

  .mobile-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
  }

  .mobile-social-links a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .mobile-contact-list {
    display: grid;
    gap: 10px;
  }

  .mobile-contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
  }

  .mobile-contact-card:first-child span:last-child {
    /* Old: #ffd100 */
    color: #dce9f4;
  }

  .mobile-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 10, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 8px 10px 22px;
    gap: 12px;
  }

  .hero-splash-left,
  .hero-splash-right {
    display: none;
  }

  .hero-media {
    justify-content: center;
    order: -1;
  }

  .hero-dog-stack {
    width: 100%;
    max-width: 340px;
  }

  .hero-content h1 {
    margin: 6px 0 10px;
    font-size: clamp(2rem, 10.8vw, 3rem);
    line-height: 1.06;
  }

  .hero-copy {
    margin: 0 0 16px;
    font-size: 0.96rem;
    line-height: 1.55;
    color: #5f7181;
  }

  .hero-cta {
    min-height: 44px;
    padding: 0 24px;
    font-size: 1rem;
  }

  .contact-submit--touch {
    min-height: 44px;
    font-size: 1rem;
  }

  .hero-content .hero-cta {
    display: inline-flex;
    position: relative;
  }

  .hero-content .hero-cta::after {
    content: "";
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) rotate(-38deg);
    width: 54px;
    height: 54px;
    background: url("../icons/dog-bone.svg") center / contain no-repeat;
    opacity: 0.45;
    pointer-events: none;
  }

  .hero-paws {
    display: none;
  }

  .hero-bg-dshape {
    right: 46px;
    bottom: 88px;
    width: 126px;
    filter: brightness(0.68) saturate(0.9);
    opacity: 0.55;
  }

  .hero-bone-left {
    display: none;
  }

  .hero-bone-right {
    display: none;
  }

  .services-section {
    padding: 34px 0 40px;
  }

  .services-wrap {
    width: min(1280px, 100% - 20px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-media {
    min-height: auto;
  }

  .services-blob {
    left: 50%;
    top: 18px;
    width: min(83.3vw, 372px);
    height: min(101.15vw, 476px);
    transform: translate(-50%, -10%);
  }

  .services-dog {
    width: min(90vw, 450px);
  }

  .services-food {
    width: min(28vw, 132px);
    left: 50%;
    bottom: 4px;
    transform: translateX(18%);
  }

  .services-content h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
    margin-bottom: 12px;
  }

  .services-kicker {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .services-copy {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    letter-spacing: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-pill {
    min-height: 52px;
    font-size: 1rem;
    border-radius: 10px;
    padding: 0 14px;
  }

  .about-intro {
    padding: 32px 0 40px;
  }

  .about-intro-wrap {
    width: min(1200px, 100% - 20px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-get-in-touch {
    width: min(920px, 100% - clamp(24px, 6vw, 40px));
    padding-left: clamp(16px, 5vw, 28px);
    padding-right: clamp(16px, 5vw, 28px);
  }

  .about-intro-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: min(340px, 48vh);
  }

  .about-intro-content {
    max-width: none;
    width: 100%;
  }

  .about-intro-placeholder {
    max-height: min(340px, 48vh);
    aspect-ratio: 4 / 3;
  }

  .about-intro-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .about-intro-title {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .facility-carousel-section {
    padding: 44px 0 52px;
  }

  .facility-carousel-inner {
    width: min(1120px, 100% - 24px);
  }

  .facility-carousel-header {
    margin-bottom: 28px;
  }

  .facility-carousel-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .facility-carousel-lead {
    font-size: 1rem;
  }

  .facility-carousel-slide {
    width: clamp(180px, 42vw, 248px);
    border-radius: 22px;
  }
}

/* ——— Facility carousel (landing): carouselbg like hero assets (<img>, not CSS bg) ——— */
.facility-carousel-section {
  position: relative;
  padding: 72px 0 88px;
  background-color: #e8dff4;
  overflow: hidden;
}

.facility-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.facility-carousel-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
}

.facility-carousel-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.facility-carousel-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--body-font);
}

.facility-carousel-kicker-paw img {
  width: 20px;
  height: 18px;
  display: block;
}

.facility-carousel-header h2 {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.4px;
  font-weight: 700;
  font-family: var(--title-font);
}

.facility-carousel-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
}

.facility-carousel {
  --facility-marquee-gap: 18px;
  --facility-marquee-duration: 50s;
  position: relative;
}

.facility-carousel-viewport {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.facility-marquee-inner {
  display: flex;
  flex-direction: row;
  width: max-content;
  will-change: transform;
  animation: facility-marquee var(--facility-marquee-duration) linear infinite;
}

.facility-marquee-segment {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--facility-marquee-gap);
  margin: 0;
  padding: 0 var(--facility-marquee-gap) 0 0;
  list-style: none;
}

@keyframes facility-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.facility-carousel-slide {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 272px);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  background: #e8eef5;
}

.facility-carousel-figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}

.facility-carousel-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .facility-marquee-inner {
    animation: none;
  }
}

/* ——— Site footer (reference layout) ——— */
.site-footer {
  --footer-bg: #002133;
  --footer-accent: #ffcc00;
  --footer-social-bg: #001a2e;
  position: relative;
  font-family: "Poppins", var(--body-font), sans-serif;
  color: #fff;
  background: var(--footer-bg);
  overflow: hidden;
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  background: url("../../hero-img-right.png") center 25% / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.site-footer-main {
  position: relative;
  z-index: 1;
  padding: 72px 32px 60px;
}

.site-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.footer-col-tagline {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 36px;
}

.footer-tagline {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 26px;
}

.footer-col-brand .logo-placeholder {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-social-heading {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--footer-social-bg);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  background: #002a44;
  color: var(--footer-accent);
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-pin {
  flex-shrink: 0;
  display: flex;
  line-height: 0;
  margin-top: 2px;
}

.footer-contact-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact-text a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-text a:hover {
  text-decoration: underline;
}

.footer-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 22px 32px 28px;
}

.footer-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--bg-primary) 14%, transparent);
  color: var(--bg-primary);
  background: color-mix(in srgb, var(--primary-color) 58%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(63, 67, 74, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-to-top:hover {
  background: color-mix(in srgb, var(--primary-color) 78%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(63, 67, 74, 0.16);
}

.footer-to-top:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bg-primary) 45%, transparent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .footer-to-top {
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-to-top:hover {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-tagline {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 32px;
    margin-bottom: 8px;
  }

  .footer-col-brand {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 720px) {
  .site-footer-main {
    padding: 48px 20px 40px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 28px;
  }

  .footer-col-contact {
    padding-bottom: 8px;
  }

  .footer-bar {
    padding: 20px 20px 24px;
  }

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

  .footer-legal {
    gap: 14px 20px;
  }
}
