.beach-profile-main {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.beach-profile-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 520px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--sea-deep);
  box-shadow: var(--shadow);
}
.beach-profile-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 64px);
  color: #fff;
}
.beach-profile-hero-copy::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -110px;
  z-index: -1;
  width: 260px;
  aspect-ratio: 1;
  border: 38px solid color-mix(in srgb, var(--sun) 78%, transparent);
  border-radius: 50%;
}
.beach-profile-hero .section-kicker { color: var(--sun); }
.beach-profile-hero h1 {
  max-width: 8ch;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  letter-spacing: -.075em;
  line-height: .82;
}
.beach-profile-lead {
  max-width: 520px;
  margin-bottom: 0;
  color: color-mix(in srgb, #fff 82%, transparent);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}
.beach-profile-hero-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, #fff 25%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, #fff 78%, transparent);
  font-size: .74rem;
  font-weight: 780;
}
.beach-profile-hero-image { position: relative; min-height: 520px; }
.beach-profile-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--sea-deep) 26%, transparent), transparent 35%);
  pointer-events: none;
}
.beach-profile-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.beach-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}
.beach-profile-stat { padding: 25px 24px; border-right: 1px solid var(--line); }
.beach-profile-stat:last-child { border-right: 0; }
.beach-profile-stat dt { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.beach-profile-stat dd { margin: 10px 0 0; color: var(--sea-deep); font-size: clamp(1.45rem, 2.5vw, 2.2rem); font-weight: 850; letter-spacing: -.05em; line-height: 1; }

.beach-profile-section { margin-bottom: 82px; }
.beach-profile-section-heading {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(30px, 7vw, 78px);
  align-items: end;
  margin-bottom: 30px;
}
.beach-profile-section-heading h2 { max-width: 12ch; font-size: clamp(2.5rem, 5.8vw, 5.3rem); letter-spacing: -.07em; line-height: .88; }
.beach-profile-section-heading > p { max-width: 610px; margin-bottom: 4px; color: var(--muted); }

.beach-profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.beach-profile-fact {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.beach-profile-fact:nth-child(2), .beach-profile-fact:nth-child(5) { background: color-mix(in srgb, var(--sea) 9%, var(--surface)); }
.beach-profile-fact-index { color: var(--sea); font-size: .76rem; font-weight: 900; }
.beach-profile-fact h3 { margin: 42px 0 9px; font-size: 1.24rem; line-height: 1.06; }
.beach-profile-fact p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.beach-profile-service-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.beach-profile-service-group {
  padding: 28px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.beach-profile-service-group.is-blue { border-color: transparent; background: var(--sea-deep); color: #fff; }
.beach-profile-service-group.is-yellow { border-color: transparent; background: var(--sun); color: var(--text); }
.beach-profile-service-group h3 { margin: 0 0 20px; font-size: 1.35rem; }
.beach-profile-service-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.beach-profile-service-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: .78rem;
  font-weight: 720;
}
.is-blue .beach-profile-service-list li { border-color: color-mix(in srgb, #fff 23%, transparent); background: color-mix(in srgb, #fff 9%, transparent); }
.is-yellow .beach-profile-service-list li { border-color: color-mix(in srgb, var(--text) 16%, transparent); background: color-mix(in srgb, #fff 28%, transparent); }
.beach-profile-season-note { margin: 19px 0 0; color: var(--muted); font-size: .76rem; }
.is-blue .beach-profile-season-note { color: color-mix(in srgb, #fff 70%, transparent); }
.is-yellow .beach-profile-season-note { color: color-mix(in srgb, var(--text) 68%, transparent); }

.beach-profile-access {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(30px, 7vw, 82px);
  padding: clamp(32px, 6vw, 62px);
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--sea) 16%, var(--surface)), var(--surface));
}
.beach-profile-access::after {
  content: "↘";
  position: absolute;
  right: 6%;
  bottom: -12%;
  color: color-mix(in srgb, var(--sun) 74%, transparent);
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 900;
  line-height: 1;
}
.beach-profile-access h2 { max-width: 9ch; font-size: clamp(2.6rem, 5vw, 4.8rem); letter-spacing: -.07em; line-height: .9; }
.beach-profile-access-copy { position: relative; z-index: 1; align-self: end; }
.beach-profile-access-copy p { max-width: 610px; color: var(--muted); }
.beach-profile-access-copy p:last-child { margin-bottom: 0; font-size: .78rem; }

.beach-profile-plan {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}
.beach-profile-plan-card { padding: clamp(28px, 5vw, 46px); border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.beach-profile-plan-card h2 { max-width: 10ch; margin-bottom: 24px; font-size: clamp(2.25rem, 4.5vw, 4rem); letter-spacing: -.065em; line-height: .9; }
.beach-profile-plan-card p { color: var(--muted); }
.beach-profile-plan-card.is-photo {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 0;
  background: var(--sea-deep);
  color: #fff;
}
.beach-profile-plan-card.is-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beach-profile-plan-card.is-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 35, 62, .82), transparent 68%); }
.beach-profile-plan-card.is-photo > div { position: relative; z-index: 1; }
.beach-profile-plan-card.is-photo p { margin-bottom: 0; color: color-mix(in srgb, #fff 80%, transparent); }
.beach-profile-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.beach-profile-action { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: var(--sea-deep); color: #fff; font-weight: 800; text-decoration: none; }
.beach-profile-action.is-secondary { border: 1px solid var(--line); background: transparent; color: var(--sea-deep); }

.beach-profile-sources {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(28px, 7vw, 76px);
  margin-bottom: 76px;
  padding: clamp(30px, 6vw, 56px);
  border-radius: 28px;
  background: var(--sea-deep);
  color: #fff;
}
.beach-profile-sources .section-kicker { color: var(--sun); }
.beach-profile-sources h2 { color: #fff; }
.beach-profile-sources p { color: color-mix(in srgb, #fff 76%, transparent); }
.beach-profile-sources ul { display: grid; gap: 10px; margin: 24px 0 0; padding-left: 20px; }
.beach-profile-sources a { color: #fff; text-underline-offset: 4px; }
.beach-profile-source-note { padding-top: 18px; border-top: 1px solid color-mix(in srgb, #fff 18%, transparent); font-size: .8rem; }

@media (max-width: 800px) {
  .beach-profile-hero { grid-template-columns: 1fr; }
  .beach-profile-hero-image { min-height: 360px; }
  .beach-profile-stats { grid-template-columns: 1fr 1fr; }
  .beach-profile-stat:nth-child(2) { border-right: 0; }
  .beach-profile-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .beach-profile-section-heading, .beach-profile-access, .beach-profile-plan, .beach-profile-sources { grid-template-columns: 1fr; }
  .beach-profile-facts, .beach-profile-service-groups { grid-template-columns: 1fr 1fr; }
  .beach-profile-service-group:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .beach-profile-main { width: min(100% - 24px, 1120px); }
  .beach-profile-hero { border-radius: 24px; }
  .beach-profile-hero-copy { min-height: 430px; padding: 30px 24px; }
  .beach-profile-hero h1 { font-size: clamp(3.15rem, 18vw, 4.8rem); }
  .beach-profile-hero-image { min-height: 280px; }
  .beach-profile-stats, .beach-profile-facts, .beach-profile-service-groups { grid-template-columns: 1fr; }
  .beach-profile-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .beach-profile-stat:nth-child(3) { border-bottom: 1px solid var(--line); }
  .beach-profile-stat:last-child { border-bottom: 0; }
  .beach-profile-service-group:last-child { grid-column: auto; }
  .beach-profile-section { margin-bottom: 60px; }
  .beach-profile-fact { min-height: 0; }
  .beach-profile-fact h3 { margin-top: 26px; }
}
