.hero-beach {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-surface-primary);
}

.hero-beach__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-beach__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.95);
}

.hero-beach__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(249, 249, 247, 0.45) 0%, transparent 100%);
}

.hero-beach__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 var(--space-6);
  max-width: 1920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-beach__content {
    padding: 0 var(--space-9);
  }
}

.hero-beach__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero-beach__eyebrow {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-brand-secondary);
  font-weight: var(--font-weight-bold);
}

.hero-beach__headline {
  font-family: var(--font-family-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-beach__headline em {
  font-style: italic;
  font-weight: 400;
}

.hero-beach__subheadline {
  font-family: var(--font-family-body);
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 480px;
  line-height: var(--line-height-loose);
  margin: 0;
}

.hero-beach__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-5);
}

.hero-beach__btn {
  border: none;
  padding: var(--space-4) var(--space-7);
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-beach__btn--primary {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
}

.hero-beach__btn--primary:hover {
  filter: brightness(0.9);
}

.hero-beach__btn--secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-default);
}

.hero-beach__btn--secondary:hover {
  background-color: rgba(242, 244, 242, 0.8);
}
