:root {
  --radius: 0.5rem;
  --background: oklch(0.985 0.008 85);
  --foreground: oklch(0.22 0.02 230);
  --card: oklch(1 0 0);
  --secondary: oklch(0.95 0.015 85);
  --muted: oklch(0.95 0.012 85);
  --muted-foreground: oklch(0.48 0.02 230);
  --accent: oklch(0.72 0.13 50);
  --border: oklch(0.9 0.012 85);
  --ring: oklch(0.48 0.09 210);
  --sand: oklch(0.93 0.025 80);
  --ocean: oklch(0.48 0.09 210);
  --sunset: oklch(0.72 0.13 50);
  --palm: oklch(0.5 0.08 155);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --container: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  max-width: 56rem;
}

/* Icons */
.icon--ocean {
  color: var(--ocean);
}

.icon--palm {
  color: var(--palm);
}

.icon--sand {
  color: var(--sand);
}

.icon--sunset {
  color: var(--sunset);
}

.icon--muted {
  color: var(--muted-foreground);
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  color: var(--border);
}

.star--filled {
  color: var(--accent);
  fill: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--background) 80%, transparent);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__suffix {
  color: var(--muted-foreground);
  font-weight: 400;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.site-nav a:hover {
  color: var(--foreground);
  transition: color 0.15s;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  transition: background 0.15s;
}

.btn:hover {
  background: var(--secondary);
}

.btn--outline {
  white-space: nowrap;
}

/* Hero */
.hero {
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem 3rem;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 6rem 5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.eyebrow--inline {
  margin-bottom: 0.75rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero__highlight {
  color: var(--ocean);
  font-style: normal;
  font-weight: 600;
}

.hero__lead {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.hero__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero__rating-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
}

.hero__rating-meta {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.hero__updated-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__updated-date {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -40px rgba(0, 40, 80, 0.35);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__quote-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  max-width: 220px;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -20px rgba(0, 40, 80, 0.2);
}

.hero__quote-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero__quote-badge {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero__quote-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
}

.hero__quote-author {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Disclosure */
.disclosure {
  border-block: 1px solid var(--border);
  background: color-mix(in oklch, var(--secondary) 50%, transparent);
}

.disclosure__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .disclosure__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.disclosure__label {
  font-weight: 500;
  color: var(--foreground);
}

/* Stats */
.stats {
  padding-block: 5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item {
  background: var(--card);
  padding: 1.5rem;
}

.stats__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stats__label {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Section shared */
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
}

.search-field {
  position: relative;
  display: block;
}

.search-field svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-field__input {
  width: 18rem;
  max-width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
}

.search-field__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--ring) 30%, transparent);
}

/* Reviews */
.reviews {
  padding-bottom: 6rem;
}

.reviews__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  position: relative;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.15s;
}

.review-card:hover {
  border-color: color-mix(in oklch, var(--ocean) 40%, transparent);
}

.review-card > .icon--sand {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.review-card__text {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in oklch, var(--foreground) 90%, transparent);
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-card__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.review-card__location,
.review-card__date {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.reviews__more {
  margin-top: 2.5rem;
  text-align: center;
}

/* Videos */
.videos {
  background: color-mix(in oklch, var(--secondary) 40%, transparent);
  border-block: 1px solid var(--border);
  padding-block: 6rem;
}

.videos__intro {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.videos__lead {
  margin: 1rem 0 0;
  color: var(--muted-foreground);
}

.videos__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .videos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.video-card:hover {
  box-shadow: 0 10px 30px -15px rgba(0, 40, 80, 0.2);
}

.video-card__embed {
  aspect-ratio: 16 / 9;
  background: var(--muted);
}

.video-card__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  padding: 1.25rem;
}

.video-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.video-card__meta a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.video-card__meta a:hover {
  color: var(--foreground);
}

/* About */
.about {
  padding-block: 6rem;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.about__emphasis {
  color: var(--foreground);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.brand--footer .brand__name {
  font-size: inherit;
}

.site-footer__tagline {
  margin-left: 0.25rem;
}

.site-footer__copy {
  margin: 0;
}
