:root {
  --bg: #fcfcfb;
  --card: #fff;
  --text: #0f1720;
  --muted: #5e6b75;
  --primary: #0c6b6f;
  --primary-strong: #085457;
  --accent: #f8b65b;
  --line: rgba(15, 23, 32, 0.08);
  --overlay: rgba(12, 107, 111, 0.07);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.dark {
  --bg: #0f1720;
  --card: #16222f;
  --text: #f5f7fb;
  --muted: #a5b6c8;
  --primary: #5dd6c4;
  --primary-strong: #44b5a4;
  --accent: #f3c46b;
  --line: rgba(255, 255, 255, 0.12);
  --overlay: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  line-height: 1.5;
}

.app-shell {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  padding: 1.25rem 1.1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mini-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.banner-header {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.banner-logo {
  width: 100%;
  height: 90px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}

.header-actions {
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mode-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mode-label {
  font-size: 0.7rem;
  opacity: 0.9;
}

.banner-header .pill,
.banner-header .theme-toggle {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

body.dark .banner-logo {
  opacity: 0.98;
}

.theme-toggle {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: var(--card);
  font-size: 0.9rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: box-shadow 0.2s ease;
}

.theme-toggle:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pill {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: var(--accent);
  font-weight: 600;
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(248, 182, 91, 0.35);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(248, 182, 91, 0.45);
}

main {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero {
  background: var(--card);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-image {
  border-radius: 18px;
  border: 1px dashed var(--line);
  height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background-size: 160%;
  background-position: center;
}

.hero-image.has-image {
  border-style: solid;
  border-color: transparent;
}

.hero-image.has-image span {
  display: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.hero-badges span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 107, 111, 0.12);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: 2.15rem;
  line-height: 1.1;
  margin: 0 0 0.6rem;
}

.lead {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(12, 107, 111, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(12, 107, 111, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 12px 26px rgba(12, 107, 111, 0.35);
  transform: translateY(-1px);
  background: var(--primary-strong);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.text-link {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: underline;
  display: block;
  margin-top: 0.5rem;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h2 {
  margin-top: 0;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.about-section {
  background: linear-gradient(135deg, rgba(12, 107, 111, 0.9), rgba(12, 107, 111, 0.7));
  color: #fff;
}

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-hosts h2,
.about-owner h3 {
  color: #fff;
  margin-top: 0;
}

.why-hosts p,
.about-owner p {
  line-height: 1.6;
}

.host-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.host-benefits li {
  padding-left: 1.5rem;
  position: relative;
}

.host-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.about-photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.about-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-contact {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.95;
}

.services {
  background: linear-gradient(135deg, var(--card), rgba(230, 250, 248, 1));
}

body.dark .services {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent);
}

.services-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-message {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 1rem;
  background: rgba(12, 107, 111, 0.08);
  border-radius: 12px;
  margin: 0;
}

body.dark .value-message {
  background: rgba(255, 255, 255, 0.05);
}

.service-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.service-carousel article {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

body.dark .service-carousel article {
  background: rgba(22, 34, 47, 0.95);
}

.service-carousel h3 {
  margin-top: 0;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.price-range {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-left: 0.25rem;
}

.service-note {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-style: italic;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.tag-row span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 107, 111, 0.12);
  font-size: 0.8rem;
}

.addons-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-row span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 107, 111, 0.12);
  font-size: 0.8rem;
}

.trust-strip .pill-row span {
  background: rgba(12, 107, 111, 0.15);
  color: var(--text);
}

.booking {
  gap: 0.75rem;
  padding: 1.1rem;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--overlay);
  border-radius: 12px;
  font-size: 0.9rem;
}

.booking-details p {
  margin: 0;
  color: var(--muted);
}

.trust-line {
  font-weight: 500;
  color: var(--text) !important;
}

.booking-frame {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--overlay);
  overflow: visible;
}

.booking-frame iframe {
  width: 100%;
  min-height: 2600px;
  display: block;
}

footer {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .app-shell {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .app-shell {
    max-width: 720px;
    padding: 1.5rem 1.5rem 3rem;
    gap: 2rem;
  }

  .banner-logo {
    height: 110px;
    border-radius: 0 0 24px 24px;
  }

  .header-actions {
    top: 0.6rem;
    left: 1rem;
    right: 1rem;
  }

  .mode-label {
    font-size: 0.75rem;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .pill {
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
  }

  main {
    gap: 1.5rem;
  }

  .hero {
    padding: 2rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 280px;
    border-radius: 20px;
  }

  .cta-row {
    flex-direction: row;
  }

  .btn {
    width: auto;
    padding: 0.9rem 2rem;
  }

  .card {
    padding: 1.75rem;
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-photo img {
    height: 240px;
  }

  .service-carousel {
    gap: 1.25rem;
  }

  .service-carousel article {
    flex: 0 0 48%;
    padding: 1.5rem;
  }

  .booking {
    padding: 1.75rem;
  }

  .booking-frame iframe {
    min-height: 2400px;
  }
}

@media (min-width: 1024px) {
  .app-shell {
    max-width: 960px;
    padding: 2rem 2rem 4rem;
    gap: 2.5rem;
  }

  .banner-logo {
    height: 130px;
  }

  .hero {
    padding: 2.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-text {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-image {
    height: 100%;
    min-height: 320px;
  }

  .cta-row {
    justify-content: flex-start;
  }

  .card {
    padding: 2.25rem;
  }

  .card h2 {
    font-size: 1.65rem;
  }

  .service-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    gap: 1.5rem;
  }

  .service-carousel article {
    flex: none;
  }

  .about-photo img {
    height: 280px;
  }
}

@media (min-width: 1200px) {
  .app-shell {
    max-width: 1140px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}
