*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #008489; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #FF5A5F; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: .75rem 1rem; background: #FF5A5F; color: #fff;
}
.skip:focus { left: 0; }

.as-wrap { width: min(1160px, 92vw); margin-inline: auto; }

/* Header */
.as-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.as-head-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.as-logo {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1.15rem; color: #FF5A5F; text-decoration: none;
}
.as-logo img { border-radius: 8px; }
.as-logo span { color: #222; font-weight: 700; }

.as-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: #fff; border: 1px solid #ddd; border-radius: 12px; cursor: pointer;
}
.as-burger span { display: block; height: 2px; width: 100%; background: #484848; border-radius: 2px; }

.as-drawer { display: flex; align-items: center; gap: 1.35rem; }
.as-drawer a {
  color: #484848; text-decoration: none; font-size: .93rem; font-weight: 500;
}
.as-drawer a:hover, .as-drawer a[aria-current="page"] { color: #FF5A5F; }

.as-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1.3rem; border-radius: 8px;
  font-weight: 600; font-size: .93rem; text-decoration: none;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.as-btn:active { transform: scale(.98); }
.as-btn-coral {
  background: linear-gradient(135deg, #FF5A5F, #ff7e82);
  color: #fff; box-shadow: 0 2px 12px rgba(255, 90, 95, .35);
}
.as-btn-coral:hover { color: #fff; box-shadow: 0 4px 18px rgba(255, 90, 95, .45); }
.as-btn-outline {
  background: #fff; color: #222;
  border: 1px solid #222;
}
.as-btn-outline:hover { background: #f7f7f7; color: #222; }
.as-btn-teal {
  background: #008489; color: #fff;
}
.as-btn-teal:hover { background: #006f73; color: #fff; }
.as-btn-block { width: 100%; }
.as-head-cta { display: none; }

/* Hero */
.as-hero {
  padding: 2.8rem 0 3.2rem;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}
.as-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.as-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  line-height: 1.12; margin: 0 0 1rem; color: #222; font-weight: 800;
}
.as-hero-lead { font-size: 1.08rem; color: #717171; margin: 0 0 1.4rem; max-width: 36ch; }
.as-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1rem; }
.as-hero-note { font-size: .84rem; color: #999; }
.as-hero-visual {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.as-hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.as-hero-visual--portrait img { aspect-ratio: 300/520; max-height: 520px; object-fit: cover; }

/* Listings grid */
.as-listings { padding: 3rem 0; background: #f7f7f7; }
.as-listings h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 0 0 .5rem; color: #222; }
.as-listings-intro { color: #717171; margin: 0 0 1.75rem; max-width: 58ch; }
.as-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.as-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #ebebeb; text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .15s;
}
.as-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.as-card-img { position: relative; }
.as-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.as-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: #fff; color: #222; font-size: .72rem; font-weight: 700;
  padding: .25rem .5rem; border-radius: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.as-card-body { padding: .85rem 1rem 1rem; }
.as-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  margin-bottom: .25rem;
}
.as-card-host { display: flex; align-items: center; gap: .45rem; }
.as-card-avatar {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
  border: 2px solid #FF5A5F;
}
.as-card-name { font-weight: 600; font-size: .9rem; color: #222; }
.as-card-rating { font-size: .82rem; color: #222; font-weight: 600; }
.as-card-rating::before { content: "★ "; color: #FF5A5F; }
.as-card-meta { font-size: .82rem; color: #717171; }
.as-card-price { margin-top: .35rem; font-size: .88rem; color: #222; }
.as-card-price strong { font-weight: 700; }

/* Sections */
.as-section { padding: 3.2rem 0; }
.as-section-dark { background: #222; color: #f7f7f7; }
.as-section-dark h2 { color: #fff; }
.as-section-dark p { color: #bbb; }
.as-section h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); margin: 0 0 .7rem; }
.as-section-intro { color: #717171; margin: 0 0 1.75rem; max-width: 58ch; }

.as-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.as-feat {
  background: #f7f7f7; border-radius: 14px; padding: 1.4rem;
  border: 1px solid #ebebeb;
}
.as-section-dark .as-feat { background: #333; border-color: #444; }
.as-feat h3 { margin: 0 0 .45rem; font-size: 1.05rem; }
.as-feat p { margin: 0; font-size: .93rem; color: #717171; }
.as-section-dark .as-feat p { color: #aaa; }

.as-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.as-split img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.as-faq { max-width: 720px; }
.as-faq details {
  border-bottom: 1px solid #ebebeb; padding: 1rem 0;
}
.as-section-dark .as-faq details { border-color: #444; }
.as-faq summary {
  cursor: pointer; font-weight: 600; color: #222; list-style: none;
}
.as-section-dark .as-faq summary { color: #fff; }
.as-faq summary::-webkit-details-marker { display: none; }
.as-faq summary::after { content: "+"; float: right; color: #FF5A5F; }
.as-faq details[open] summary::after { content: "−"; }
.as-faq p { margin: .7rem 0 0; color: #717171; font-size: .93rem; }
.as-section-dark .as-faq p { color: #aaa; }

.as-cta-band {
  text-align: center; padding: 2.8rem 1.5rem;
  background: #fff; border-radius: 16px;
  border: 1px solid #ebebeb; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.as-cta-band p { color: #717171; margin-bottom: 1.2rem; }

/* Forms */
.as-form-wrap {
  max-width: 420px; margin: 0 auto;
  background: #fff; border: 1px solid #ebebeb;
  border-radius: 16px; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.as-form-wrap h1 { margin: 0 0 .35rem; font-size: 1.6rem; text-align: center; }
.as-form label { display: block; font-size: .84rem; color: #484848; margin-bottom: .3rem; font-weight: 500; }
.as-form input, .as-form select {
  width: 100%; padding: .68rem .85rem; border-radius: 8px; margin-bottom: .9rem;
  border: 1px solid #ddd; background: #fff; color: #222; font-size: 1rem;
}
.as-form input:focus { outline: 2px solid #FF5A5F; outline-offset: 1px; border-color: #FF5A5F; }
.as-form-foot { margin-top: 1.1rem; font-size: .88rem; color: #717171; text-align: center; }

/* Legal */
.as-prose { max-width: 720px; margin: 0 auto; padding: 2.5rem 0 4rem; }
.as-prose h1 { font-size: 1.8rem; margin-bottom: .5rem; }
.as-prose h2 { font-size: 1.2rem; margin: 1.8rem 0 .65rem; }
.as-prose p, .as-prose li { color: #484848; }
.as-prose ul { padding-left: 1.2rem; }

/* App stores */
.as-store-row { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.4rem 0; }
.as-store {
  display: inline-flex; flex-direction: column; padding: .7rem 1.3rem;
  border-radius: 10px; background: #222; color: #fff; text-decoration: none;
}
.as-store:hover { background: #333; color: #fff; }
.as-store-label { font-size: .72rem; color: #aaa; }
.as-store-name { font-size: 1.05rem; font-weight: 700; }

/* Footer */
.as-foot {
  border-top: 1px solid #ebebeb; padding: 2.4rem 0 1.4rem;
  margin-top: 2rem; background: #f7f7f7;
}
.as-foot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-bottom: 1.8rem;
}
.as-foot h4 {
  margin: 0 0 .7rem; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .06em; color: #717171;
}
.as-foot ul { list-style: none; margin: 0; padding: 0; }
.as-foot li { margin-bottom: .35rem; }
.as-foot a { color: #484848; text-decoration: none; font-size: .88rem; }
.as-foot a:hover { color: #FF5A5F; }
.as-foot-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.4rem; border-top: 1px solid #ebebeb;
  font-size: .84rem; color: #999;
}

/* Cookie */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem; background: #fff; border-top: 1px solid #ebebeb;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  transform: translateY(110%); transition: transform .3s;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: 1160px; margin: 0 auto;
}
.cookie-inner p { margin: 0; font-size: .88rem; color: #484848; }
.cookie-btns { display: flex; gap: .5rem; }

/* Mobile */
@media (max-width: 900px) {
  .as-hero-grid, .as-split, .as-features { grid-template-columns: 1fr; }
  .as-hero-visual { order: -1; }
  .as-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .as-burger { display: flex; }
  .as-head-cta { display: none !important; }
  .as-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(280px, 85vw);
    flex-direction: column; align-items: flex-start; padding: 5rem 1.5rem 2rem;
    background: #fff; border-left: 1px solid #ebebeb;
    transform: translateX(100%); transition: transform .25s ease; z-index: 99;
    box-shadow: -4px 0 20px rgba(0,0,0,.08);
  }
  .as-drawer.is-open { transform: translateX(0); }
  .as-drawer a { font-size: 1.02rem; padding: .3rem 0; }
  .as-features { grid-template-columns: 1fr; }
  .as-foot-grid { grid-template-columns: 1fr; }
  .as-grid { grid-template-columns: 1fr; }
  .as-hero { padding: 1.8rem 0 2.4rem; }
}
