:root {
  --bg: #fff8f8;
  --surface: #ffffff;
  --surface-alt: #f7f4f2;
  --border: #eadfdd;
  --text: #312b31;
  --muted: #6f6470;
  --primary: #ef5c75;
  --primary-dark: #cc3f59;
  --green: #1fbf75;
  --shadow: 0 20px 45px rgba(49, 43, 49, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffefe 0%, #fff8f8 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 42px 0;
}

.section-muted {
  background: var(--surface-alt);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 223, 221, 0.85);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff8a9d);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.main-nav a:hover,
.lang-switch a.active {
  color: var(--primary);
}

.lang-switch {
  display: inline-flex;
  gap: 10px;
  font-weight: 700;
}

.hero {
  padding: 28px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  border-radius: 40px;
}

.hero-media {
  overflow: hidden;
  display: none;
}

.hero-copy {
  padding: 52px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: visible;
}

.hero-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.hero-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff1f3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-media img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-search-bar {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e9e2e1;
  box-shadow: 0 14px 30px rgba(49, 43, 49, 0.08);
  overflow: visible;
}

.hero-search-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 58px;
}

.hero-search-field input {
  border: 0;
  outline: none;
  padding: 0;
  min-height: 58px;
  background: transparent;
}

.hero-search-field input::placeholder {
  color: var(--muted);
}

.hero-search-what {
  flex: 1 1 58%;
}

.hero-search-where {
  flex: 1 1 42%;
}

.hero-search-sep {
  display: grid;
  place-items: center;
  width: 42px;
  color: var(--muted);
  border-left: 1px solid #efe7e6;
  border-right: 1px solid #efe7e6;
  background: #fff;
  font-weight: 700;
}

.hero-search-submit {
  border: 0;
  min-height: 58px;
  padding: 0 26px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff7b8f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 160px;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-search-submit.disabled,
.hero-search-submit:disabled {
  opacity: 1;
  cursor: pointer;
}

.hero-search-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #f2eceb;
  flex: 0 0 18px;
}

.hero-search-icon.location {
  background: #fff0f3;
}

.hero-panel {
  width: min(920px, 100vw - 40px);
  padding: 0;
  right: auto;
}

.hero-panel-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--border);
}

.hero-panel-search {
  display: none;
}

.hero-panel-input {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 18px 0;
  padding: 0 14px;
  min-height: 54px;
  border: 1px solid #e9e2e1;
  border-radius: 12px;
  background: #fff;
}

.hero-panel-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  min-height: 52px;
  padding: 0;
  font-size: 1rem;
}

.hero-panel-close {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #f3eceb;
  cursor: pointer;
}

.hero-panel-close::before,
.hero-panel-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #3e2f39;
  transform-origin: center;
}

.hero-panel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-panel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-panel-default {
  padding: 16px 18px 18px;
}

.hero-panel-results {
  padding: 10px;
}

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

.hero-mega-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.hero-panel-results .suggestion-item {
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 12px;
}

.hero-panel-results .suggestion-group {
  grid-column: 2;
}

.hero-panel-results .suggestion-item strong {
  grid-column: 2;
}

.hero-mega-item:hover {
  border-color: #ffd2da;
  background: #fff6f7;
}

.hero-mega-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1f3;
  color: var(--primary);
  font-weight: 800;
  flex: 0 0 34px;
}

.hero-mega-icon svg {
  width: 20px;
  height: 20px;
}

.smart-search {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: #fff6f7;
  border: 1px solid #f6d6dc;
}

.field-group {
  position: relative;
  display: grid;
  gap: 8px;
}

.field-group label,
.filters-form span,
.quote-form span {
  font-size: 0.9rem;
  font-weight: 700;
}

.smart-search input,
.filters-form input,
.filters-form select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fff;
}

.smart-search button,
.filters-actions button,
.quote-form button,
.button-link,
.button-secondary,
.button-wa,
.button-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 700;
}

.smart-search button,
.filters-actions button,
.quote-form button,
.button-link {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff7b8f);
}

.button-secondary,
.button-call {
  background: #f3eceb;
}

.button-wa {
  color: #fff;
  background: var(--green);
}

.full {
  width: 100%;
}

.autocomplete-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 60;
}

.autocomplete-panel.hero-panel {
  left: 0;
  right: auto;
  padding: 0;
}

.autocomplete-panel.open {
  display: grid;
  gap: 8px;
}

.suggestion-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.suggestion-item:hover {
  border-color: #ffd2da;
  background: #fff6f7;
}

.suggestion-group {
  color: var(--muted);
  font-size: 0.78rem;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.popular-searches a {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head.stacked {
  align-items: flex-end;
}

.section-head.stacked p {
  margin-top: 8px;
  max-width: 70ch;
}

.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.scroll-card {
  position: relative;
  flex: 0 0 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  scroll-snap-align: start;
}

.scroll-card img {
  height: 160px;
  object-fit: cover;
}

.scroll-card span {
  display: block;
  padding: 12px 14px;
  font-weight: 800;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 44px 6px 6px;
  scroll-snap-type: x mandatory;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px rgba(49, 43, 49, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel-btn.prev {
  left: -8px;
}

.carousel-btn.next {
  right: -8px;
}

.carousel-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #3e2f39;
  border-bottom: 2px solid #3e2f39;
  transform: rotate(135deg);
}

.carousel-btn.next::before {
  transform: rotate(-45deg);
}

.vendor-card {
  flex: 0 0 280px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.vendor-media {
  position: relative;
  display: block;
}

.vendor-media img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.vendor-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
}

.vendor-body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.vendor-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.vendor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vendor-muted {
  color: var(--muted);
}

.vendor-rating {
  font-weight: 900;
  color: #e3a100;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.chip:hover {
  border-color: #ffd2da;
  background: #fff6f7;
}

.section-head.left {
  display: grid;
  justify-content: stretch;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.category-grid,
.city-grid,
.card-grid,
.reassurance-grid,
.stats-grid,
.packs-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reassurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.reassurance-card,
.listing-card,
.filters-card,
.content-card,
.sticky-card,
.seo-block,
.empty-state,
.result-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--primary);
  background: #fff1f3;
  font-weight: 800;
}

.category-card small,
.card-meta,
.result-meta,
.contact-list,
.listing-card p,
.reassurance-card p,
.seo-block p {
  color: var(--muted);
}

.listing-card {
  overflow: hidden;
}

.compact-card img {
  height: 240px;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.card-body h3,
.result-body h2,
.pack-card h3 {
  margin: 0;
}

.card-body p,
.result-body p,
.content-card p {
  margin: 0;
}

.card-footer,
.result-side,
.filters-actions,
.date-grid {
  display: grid;
  gap: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  background: #fff0f3;
}

.badge-dark {
  color: #fff;
  background: #3e2f39;
}

.city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
}

.city-card img {
  height: 100%;
  object-fit: cover;
}

.city-card span {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(49, 43, 49, 0.66);
  font-weight: 700;
}

.search-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
}

.filters-card,
.content-card,
.sticky-card {
  padding: 22px;
}

.filters-form {
  display: grid;
  gap: 14px;
}

.results-column {
  display: grid;
  gap: 16px;
}

.results-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-card {
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 18px;
  padding: 14px;
}

.result-image img {
  height: 100%;
  min-height: 220px;
  border-radius: 20px;
  object-fit: cover;
}

.result-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 8px 0;
}

.result-side {
  align-content: start;
  padding: 10px 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.profile-main {
  display: grid;
  gap: 18px;
}

.profile-hero {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-cover {
  height: 360px;
  object-fit: cover;
}

.profile-overview {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
}

.profile-overview h1 {
  margin: 8px 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.rating-box {
  min-width: 140px;
  padding: 18px;
  border-radius: 18px;
  background: #fff4f6;
  text-align: center;
}

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

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.stats-grid div,
.pack-card {
  padding: 18px;
  border-radius: 20px;
  background: #fff7f8;
}

.stats-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4edef;
}

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

.pack-card ul {
  margin: 14px 0 0;
  padding-inline-start: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.profile-sidebar {
  position: sticky;
  top: 96px;
}

.sticky-card {
  display: grid;
  gap: 16px;
}

.price-box {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: #fff4f6;
}

.price-box strong {
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form h2 {
  margin: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 42px 0 24px;
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer a,
.site-footer p,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  padding: 0 0 28px;
}

.empty-state,
.seo-block {
  padding: 26px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .search-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .category-grid,
  .card-grid,
  .city-grid,
  .reassurance-grid,
  .footer-grid,
  .result-card,
  .packs-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    padding: 18px;
  }

  .result-image img {
    min-height: 260px;
  }

  .hero-search-bar {
    flex-direction: column;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-search-sep {
    display: none;
  }

  .hero-search-field {
    border: 1px solid #e9e2e1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(49, 43, 49, 0.06);
  }

  .hero-search-submit {
    width: 100%;
    min-width: 0;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(49, 43, 49, 0.06);
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero-copy {
    padding: 30px 22px;
  }

  .smart-search {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    overflow: auto;
    z-index: 200;
    background: #fff;
    box-shadow: none;
  }

  .hero-panel-head {
    display: flex;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .hero-panel-search {
    display: block;
    background: #fff;
    padding-bottom: 6px;
  }

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

  .hero-panel-default {
    padding: 8px 0 12px;
  }

  .hero-mega-col {
    gap: 0;
  }

  .hero-mega-item {
    border-radius: 0;
    padding: 16px 18px;
    border-bottom: 1px solid #f0e7e6;
  }

  .hero-panel-results {
    padding: 8px 0 12px;
  }

  .hero-panel-results .suggestion-item {
    border-radius: 0;
    padding: 16px 18px;
    border-bottom: 1px solid #f0e7e6;
  }

  .hero-media img {
    min-height: 320px;
  }

  .profile-overview {
    display: grid;
  }

  .gallery-grid,
  .stats-grid,
  .date-grid {
    grid-template-columns: 1fr;
  }
}
