:root {
  --bg: #f7f4ef;
  --surface: #fffaf3;
  --ink: #10222c;
  --muted: #4f6773;
  --brand: #0f8b8d;
  --brand-2: #f25f5c;
  --accent: #f7b267;
  --ring: rgba(15, 139, 141, 0.25);
  --shadow: 0 18px 60px rgba(16, 34, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 95, 92, 0.12), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(247, 178, 103, 0.2), transparent 30%),
    linear-gradient(160deg, #fffaf3 0%, #f4fbfb 50%, #eef8fa 100%);
  min-height: 100vh;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", serif;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

.ambient--one {
  width: 320px;
  height: 320px;
  background: rgba(15, 139, 141, 0.14);
  top: -60px;
  left: -70px;
}

.ambient--two {
  width: 420px;
  height: 420px;
  background: rgba(242, 95, 92, 0.12);
  right: -140px;
  top: 30%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 243, 0.75);
  border-bottom: 1px solid rgba(16, 34, 44, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #14b8a6);
  color: #ffffff;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #11a4a6);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 139, 141, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(15, 139, 141, 0.32);
}

.btn--small {
  padding: 0.62rem 0.95rem;
  font-size: 0.92rem;
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  border: 1px solid rgba(15, 139, 141, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 5rem 0 3rem;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.9rem);
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-metrics {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-metrics li {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(16, 34, 44, 0.08);
  border-radius: 16px;
  padding: 0.85rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
}

.hero-metrics span {
  font-size: 0.82rem;
  color: var(--muted);
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.glass-card img {
  border-radius: 18px;
  margin-top: 0.9rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-label {
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.82rem;
}

.price-row {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row span {
  font-weight: 700;
}

.price-row a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}

.section-head {
  margin-bottom: 1.4rem;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.listing-item {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 44, 0.1);
  box-shadow: 0 8px 26px rgba(16, 34, 44, 0.1);
}

.listing-item img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.listing-content {
  padding: 1rem;
}

.listing-content p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.listing-content span {
  display: block;
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--brand);
}

.listing-detail-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: gap 0.18s ease, opacity 0.18s ease;
  gap: 0.2rem;
}

.listing-detail-link:hover {
  opacity: 0.75;
  gap: 0.45rem;
}

/* ── Skeleton loader ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.listing-skeleton {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 44, 0.08);
}

.skel-img {
  height: 220px;
  width: 100%;
  background: linear-gradient(90deg, #e8e2d9 25%, #f2ede6 50%, #e8e2d9 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skel-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.skel-line {
  border-radius: 6px;
  background: linear-gradient(90deg, #e8e2d9 25%, #f2ede6 50%, #e8e2d9 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skel-line--title { height: 18px; width: 75%; }
.skel-line--sub   { height: 14px; width: 55%; }
.skel-line--price { height: 16px; width: 40%; margin-top: 0.2rem; }

/* ── API error states ── */
.listing-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
  font-size: 0.95rem;
}

.api-error {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Gallery Carousel ── */
.gallery-carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(16, 34, 44, 0.12);
}

.gallery-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-slide img:hover {
  transform: scale(1.04);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 34, 44, 0.15);
  z-index: 2;
  transition: background 0.2s;
}

.gallery-btn:hover {
  background: #fff;
}

.gallery-btn--prev { left: 10px; }
.gallery-btn--next { right: 10px; }

.video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: brightness 0.3s;
}

.video-thumb:hover img {
  brightness: 0.85;
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 72px;
  height: 52px;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Video Feature ── */
.video-feature {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.video-feature__text {
  flex: 1;
}

.video-feature__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.video-feature__text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.video-feature__player {
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(16, 34, 44, 0.15);
}

.video-feature__player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

}

/* ── Reviews ── */
.reviews .section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.reviews-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.reviews-stars {
  font-size: 1.3rem;
  color: #f5a623;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--muted);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  background: var(--surface);
  border: 1px solid rgba(16, 34, 44, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 22px rgba(16, 34, 44, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.review-card:hover {
  box-shadow: 0 12px 36px rgba(16, 34, 44, 0.13);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-header strong {
  display: block;
  font-size: 0.95rem;
}

.review-stars {
  font-size: 0.85rem;
  color: #f5a623;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.review-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.services {
  background:
    linear-gradient(130deg, rgba(15, 139, 141, 0.08), rgba(242, 95, 92, 0.06)),
    #fffdf8;
  border-top: 1px solid rgba(16, 34, 44, 0.08);
  border-bottom: 1px solid rgba(16, 34, 44, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  background: #ffffff;
  border: 1px solid rgba(16, 34, 44, 0.1);
  border-radius: 18px;
  padding: 1.15rem;
}

.service-grid p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.contact-panel {
  background: linear-gradient(145deg, #fffdf8, #f8ffff);
  border: 1px solid rgba(16, 34, 44, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(16, 34, 44, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  margin-bottom: 0.45rem;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid var(--ring);
  border-color: rgba(15, 139, 141, 0.4);
}

.site-footer {
  padding: 1.2rem 0 1.8rem;
}

.footer-wrap {
  border-top: 1px solid rgba(16, 34, 44, 0.12);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
  }

  .glass-card {
    max-width: 520px;
    margin: 0 auto;
    transform: none;
  }

  .listing-grid,
  .service-grid,
  .contact-panel,
  .review-card {
    flex: 0 0 85%;
  }

  .video-feature {
    flex-direction: column;
  }

  .video-feature__player {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
