/* ============================================================
   HOME PAGE — VISUAL SYSTEM
============================================================ */
body.home-page {
  background:
    radial-gradient(900px 420px at 88% 3%, rgba(201, 160, 112, 0.16), transparent 72%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 100%);
}

.home-page .header {
  height: 78px;
}

.home-page .header.hero-mode {
  background: rgba(17, 35, 28, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.home-page .header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90, 31, 51, 0.08);
}

.home-page .header.hero-mode .nav a,
.home-page .header.hero-mode .lang-btn,
.home-page .header.hero-mode .user-btn {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .header.hero-mode .nav a:hover,
.home-page .header.hero-mode .lang-btn:hover,
.home-page .header.hero-mode .user-btn:hover {
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7.8rem, 12vw, 11rem) 0 clamp(4.2rem, 6vw, 6rem);
  overflow: hidden;
}

.home-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateY(var(--hero-offset, 0px));
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.32s ease-out;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero::before {
  background:
    radial-gradient(1100px 700px at 16% 18%, rgba(24, 64, 50, 0.36), transparent 62%),
    linear-gradient(110deg, rgba(16, 34, 28, 0.92) 6%, rgba(18, 43, 35, 0.68) 52%, rgba(18, 43, 35, 0.15) 82%);
}

.home-hero::after {
  background:
    linear-gradient(to top, rgba(18, 27, 23, 0.62), transparent 36%),
    radial-gradient(360px 180px at 80% 84%, rgba(201, 160, 112, 0.2), transparent 78%);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  align-items: start;
  gap: clamp(2.4rem, 5vw, 5.2rem);
}

.home-hero-copy {
  position: relative;
  z-index: 4;
  padding-top: clamp(.9rem, 2.2vw, 2rem);
  max-width: 700px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.95rem;
}

.home-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.home-title {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(2.35rem, 5.1vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  max-width: 12ch;
}

.home-subtitle {
  margin-top: 1.1rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.home-search {
  position: relative;
  z-index: 5;
  margin-top: 1.75rem;
  max-width: 700px;
  display: grid;
  grid-template-areas:
    "q do type"
    "near pet cta";
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(8, 16, 13, 0.26);
  overflow: hidden;
}

.home-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 92px;
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 14px;
  padding: 13px 15px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.home-search .home-field:nth-of-type(1) { grid-area: q; }
.home-search .home-field:nth-of-type(2) { grid-area: do; }
.home-search .home-field:nth-of-type(3) { grid-area: type; }

.home-field:focus-within {
  border-color: rgba(90, 31, 51, 0.4);
  box-shadow: 0 0 0 3px rgba(90, 31, 51, 0.08);
  transform: translateY(-1px);
}

.home-field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6f5b65;
  text-transform: none;
}

.home-field input,
.home-field select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #2a151e;
  font-size: 1rem;
  font-family: var(--sans);
}

.home-field input::placeholder {
  color: #9f8a95;
}

.home-search-submit {
  grid-area: cta;
  min-width: 0;
  width: 100%;
  min-height: 58px;
  align-self: stretch;
  border-radius: 15px;
  padding: 0 1.2rem;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #7a2d45, #5a1f33);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.home-search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(90, 31, 51, 0.35);
  filter: brightness(1.05);
}

.home-pet-toggle {
  grid-area: pet;
  width: 100%;
  min-height: 58px;
  align-self: stretch;
  border-radius: 15px;
  border: 1px solid #dbd1ca;
  background: #fff;
  color: #4f3a44;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 0.95rem;
  transition: all var(--ease);
}

.home-nearby-toggle {
  grid-area: near;
  width: 100%;
  min-height: 58px;
  align-self: stretch;
  border-radius: 15px;
  border: 1px solid #dbd1ca;
  background: #fff;
  color: #4f3a44;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 0.95rem;
  transition: all var(--ease);
}

.home-nearby-toggle:hover {
  border-color: #c9a070;
  color: #5a1f33;
}

.home-nearby-toggle.is-active {
  border-color: #1b4332;
  background: #1b4332;
  color: #fff;
}

.home-nearby-toggle.is-error {
  border-color: #7a2d45;
  color: #7a2d45;
}

.home-pet-toggle:hover {
  border-color: #c9a070;
  color: #5a1f33;
}

.home-pet-toggle.is-active {
  border-color: #5a1f33;
  background: #5a1f33;
  color: #fff;
}

.home-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  backdrop-filter: blur(3px);
}

.home-trust-item strong {
  color: #fff;
  font-size: 0.92rem;
}

.home-hero-proof {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
}

.home-hero-proof span::before {
  content: "•";
  color: #e8d0a8;
}

.home-hero-link {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.home-hero-link a {
  color: #f0d6a9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-hero-media {
  position: relative;
  display: block;
  min-height: clamp(470px, 46vw, 640px);
  z-index: 1;
  width: min(100%, 700px);
  justify-self: end;
  margin-left: 0;
  margin-top: clamp(1rem, 2.8vw, 2.4rem);
  pointer-events: none;
}

.home-media-card {
  --card-rotate: 0deg;
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  width: 62%;
  height: clamp(420px, 32vw, 560px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 12, 10, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #13251e;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(var(--card-rotate));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 14, 0.52), rgba(10, 16, 14, 0.08) 46%, transparent 74%);
}

.home-media-card > div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.home-media-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.home-media-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.home-media-card-main {
  right: 2%;
  top: 0;
  --card-rotate: 2.8deg;
  z-index: 1;
}

.home-media-card-secondary {
  left: 8%;
  bottom: 20px;
  width: 60%;
  height: clamp(390px, 29vw, 500px);
  --card-rotate: -7.2deg;
  z-index: 2;
}

.home-usp {
  position: relative;
  padding-top: clamp(50px, 8vw, 90px);
  padding-bottom: clamp(52px, 8vw, 100px);
  background:
    radial-gradient(440px 260px at 85% 15%, rgba(201, 160, 112, 0.2), transparent 70%),
    #f7f3ec;
}

.home-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.home-usp-card {
  padding: clamp(1.25rem, 2vw, 1.7rem);
  border: 1px solid #eadfd4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(35, 16, 23, 0.08);
}

.home-usp-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #2f141f;
  margin-bottom: 0.55rem;
}

.home-usp-card p {
  color: #6b4e5c;
  line-height: 1.7;
  font-size: 0.92rem;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.4rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.home-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.18;
  color: #25121b;
}

.home-regions {
  background: #fff;
}

.home-region-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(240px, 1fr));
}

.home-region-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24, 8, 14, 0.14);
  min-height: 240px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.home-region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24, 8, 14, 0.2);
}

.home-region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 16, 0.78), transparent 55%);
}

.home-region-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.home-region-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.home-region-content h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.home-region-content span {
  color: #e8d0a8;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-region-card-main {
  grid-column: span 6;
  grid-row: span 2;
}

.home-region-card:not(.home-region-card-main) {
  grid-column: span 3;
}

.home-experiences {
  background:
    radial-gradient(420px 260px at 15% 20%, rgba(201, 160, 112, 0.18), transparent 75%),
    #f7f3ec;
}

.home-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-exp-card {
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 8, 14, 0.1);
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 228px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.home-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(27, 8, 14, 0.16);
}

.home-exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-exp-body {
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-exp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.home-exp-body p {
  color: #7a2d45;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-exp-score {
  white-space: nowrap;
  font-size: 0.73rem;
  font-weight: 700;
  color: #3f2430;
  background: #f3ebe4;
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
}

.home-exp-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.3;
  color: #25121b;
  margin: 0.45rem 0 0.95rem;
}

.home-exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.home-exp-meta > span {
  display: inline-flex;
  align-items: center;
  background: rgba(90, 31, 51, 0.07);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #5a1f33;
}

.home-exp-body a {
  color: #5a1f33;
  font-size: 0.86rem;
  font-weight: 700;
}

.home-exp-body a:hover {
  color: #7a2d45;
}

.home-discovery {
  background: #fff;
}

.home-discovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-chip-card {
  background: linear-gradient(145deg, #1d3d30, #152920);
  border-radius: 18px;
  padding: 1.2rem;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
  box-shadow: 0 14px 34px rgba(11, 22, 18, 0.35);
}

.home-chip-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.06);
}

.home-chip-card span {
  color: rgba(232, 208, 168, 0.92);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.home-chip-card strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.25;
}

.home-pro {
  background: #f7f3ec;
}

.home-gift {
  background: #fff;
  padding-top: clamp(2.6rem, 5vw, 4.1rem);
  padding-bottom: clamp(2.9rem, 5vw, 4.2rem);
}

.home-gift-shell {
  border-radius: 28px;
  border: 1px solid rgba(201, 160, 112, 0.32);
  background:
    radial-gradient(420px 220px at 88% 30%, rgba(201, 160, 112, 0.24), transparent 75%),
    linear-gradient(130deg, #fff 0%, #f8f1e7 100%);
  box-shadow: 0 16px 38px rgba(33, 15, 24, 0.1);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
  align-items: center;
}

.home-gift-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: #2b1520;
}

.home-gift-copy p {
  margin-top: 0.8rem;
  color: #6b4e5c;
  line-height: 1.72;
  max-width: 62ch;
}

.home-gift-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.home-gift-ticket {
  border-radius: 20px;
  border: 1px solid rgba(90, 31, 51, 0.2);
  background:
    linear-gradient(145deg, rgba(31, 70, 55, 0.96), rgba(26, 42, 58, 0.96));
  box-shadow: 0 18px 40px rgba(18, 25, 22, 0.32);
  padding: 1.2rem 1.15rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-gift-ticket span {
  color: rgba(232, 208, 168, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-gift-ticket strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.home-gift-ticket p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.home-pro-inner {
  border-radius: 26px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(20, 43, 34, 0.96), rgba(36, 15, 24, 0.9)),
    radial-gradient(520px 290px at 0% 0%, rgba(201, 160, 112, 0.2), transparent 75%);
  box-shadow: 0 18px 50px rgba(14, 18, 17, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.home-pro-inner .home-kicker {
  margin-bottom: 0.7rem;
}

.home-pro-inner h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  max-width: 18ch;
}

.home-pro-inner p {
  color: rgba(255, 255, 255, 0.77);
  margin-top: 0.95rem;
  max-width: 56ch;
  line-height: 1.74;
  font-size: 0.95rem;
}

.home-pro-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.home-reviews {
  background: #fff;
}

.home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-review-card {
  background: #fff;
  border: 1px solid #eadfd4;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 8px 25px rgba(22, 9, 15, 0.08);
}

.home-review-card h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: #2d1520;
  margin-bottom: 0.55rem;
}

.home-review-card p {
  color: #6b4e5c;
  line-height: 1.72;
  font-size: 0.9rem;
}

.home-faq {
  background:
    radial-gradient(440px 260px at 86% 16%, rgba(201, 160, 112, 0.18), transparent 72%),
    #f7f3ec;
  padding-top: clamp(2.8rem, 6vw, 4.8rem);
}

.home-faq-list {
  display: grid;
  gap: 0.8rem;
}

.home-faq-item {
  border: 1px solid #eadfd4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 9, 15, 0.08);
  overflow: clip;
}

.home-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.8rem 1rem 1rem;
  font-weight: 700;
  color: #2d1520;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.28rem;
  line-height: 1;
  color: #7a2d45;
  transition: transform var(--ease);
}

.home-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.home-faq-item p {
  padding: 0 1rem 1rem;
  color: #6b4e5c;
  line-height: 1.72;
  font-size: 0.92rem;
}

.home-cta {
  background: #f7f3ec;
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.home-cta-box {
  border-radius: 22px;
  background: #fff;
  border: 1px solid #eadfd4;
  box-shadow: 0 14px 34px rgba(27, 8, 14, 0.1);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  text-align: center;
}

.home-cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  color: #28141d;
}

.home-cta-box p {
  margin: 0.75rem auto 0;
  color: #6b4e5c;
  max-width: 60ch;
  line-height: 1.7;
}

.home-cta-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-cta-group .btn {
  justify-content: center;
}

.home-mobile-cta-bar {
  display: none;
}

@media (max-width: 1180px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-media {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(210px, 1fr);
    gap: 18px;
    align-items: end;
    min-height: 420px;
    width: min(100%, 760px);
    margin-top: .8rem;
  }

  .home-media-card {
    position: relative;
    width: 100%;
    height: 420px;
    --card-rotate: 0deg;
  }

  .home-media-card-main,
  .home-media-card-secondary {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: auto;
  }

  .home-region-card-main {
    grid-column: span 12;
    grid-row: span 1;
  }

  .home-region-card:not(.home-region-card-main) {
    grid-column: span 6;
  }

  .home-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-pro-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-gift-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .home-search {
    grid-template-areas:
      "q do"
      "type type"
      "near pet"
      "cta cta";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    max-width: 100%;
  }

  .home-search-submit,
  .home-pet-toggle,
  .home-nearby-toggle {
    min-height: 52px;
  }

  .home-field {
    min-height: 86px;
  }

  .home-exp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .header {
    height: 70px;
  }

  .home-search {
    grid-template-areas:
      "q"
      "do"
      "type"
      "near"
      "pet"
      "cta";
    grid-template-columns: 1fr;
    padding: 12px;
    max-width: 100%;
  }

  .home-hero {
    min-height: auto;
    padding-top: 6.6rem;
  }

  .home-title {
    max-width: 13ch;
  }

  .home-hero-media {
    min-height: auto;
    grid-template-columns: 1fr;
    width: min(100%, 460px);
    margin-top: .85rem;
    justify-self: start;
  }

  .home-media-card-main {
    height: 320px;
    --card-rotate: -.35deg;
  }

  .home-media-card-secondary {
    height: 290px;
    margin-bottom: 0;
    --card-rotate: .4deg;
  }

  .home-region-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-region-card,
  .home-region-card-main,
  .home-region-card:not(.home-region-card-main) {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .home-discovery-grid,
  .home-review-grid,
  .home-usp-grid {
    grid-template-columns: 1fr;
  }

  .home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-exp-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .home-exp-card img {
    min-height: 220px;
  }

  .home-pro-actions {
    flex-direction: column;
  }

  .home-pro-actions .btn {
    width: 100%;
  }

  .home-gift-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-field {
    min-height: 84px;
  }

  .home-mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 960;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.7rem 0.8rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(90, 31, 51, 0.14);
    backdrop-filter: blur(12px);
  }

  .home-mobile-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .home-mobile-cta-link-primary {
    background: linear-gradient(135deg, #7a2d45, #5a1f33);
    color: #fff;
  }

  .home-mobile-cta-link-secondary {
    border: 1px solid #d8cbc2;
    color: #4f3a44;
    background: #fff;
  }

  body.home-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .home-hero-media {
    width: 100%;
    min-height: auto;
  }

  .home-media-card-main {
    height: 280px;
  }

  .home-media-card-secondary {
    height: 250px;
  }

  .home-cta-actions .btn,
  .footer-cta-group .btn {
    width: 100%;
  }

  .home-trust-item {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-media-card,
  .home-region-card,
  .home-exp-card,
  .home-chip-card,
  .home-search-submit,
  .home-field {
    transition: none !important;
  }
}
