:root {
  --ink: #172026;
  --muted: #5d6a73;
  --panel: #ffffff;
  --line: #d8e0e4;
  --mist: #eef4f5;
  --sea: #0f6f78;
  --sea-dark: #0a4850;
  --sun: #d88b22;
  --leaf: #5d7a3d;
  --rose: #9e4f45;
  --shadow: 0 18px 45px rgba(21, 35, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7faf9;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 20, 24, 0.72) 0%, rgba(8, 20, 24, 0.46) 43%, rgba(8, 20, 24, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 20, 24, 0.58) 0%, rgba(8, 20, 24, 0) 38%);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: #fff;
}

.topbar a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand {
  margin-right: auto;
  font-size: 1.06rem;
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  padding: 0 0 clamp(56px, 11vh, 110px) clamp(18px, 5vw, 64px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.destination-picker {
  margin-top: 28px;
  width: min(460px, 100%);
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: rgba(8, 20, 24, 0.58);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

select {
  margin-top: 10px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  padding: 52px 0 30px;
}

.profile-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stats-grid article,
.weather-panel,
.clock-panel,
.reservations,
.cam-card,
.thing-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(21, 35, 42, 0.06);
}

.stats-grid article {
  min-height: 108px;
  padding: 18px;
}

.stats-grid span,
.cam-card span,
.thing-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
}

.clock-panel {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 18px;
  background: var(--sea-dark);
  color: #fff;
}

.clock-panel span {
  color: #b9dfe3;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.clock-panel strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.clock-panel small {
  color: #dcebed;
  font-size: 0.95rem;
}

.weather-panel {
  padding: 22px;
}

.weather-panel h3 {
  margin: 0 0 16px;
}

.weather-list {
  display: grid;
  gap: 10px;
}

.season {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.season:last-child {
  border-bottom: 0;
}

.season strong {
  color: var(--sea-dark);
}

.rain-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.link-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.reservations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
  margin: 8px 0 18px;
  padding: 22px;
}

.reservations h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
}

.reservations p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.reservation-actions {
  display: grid;
  gap: 10px;
}

.reservation-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sea);
  text-decoration: none;
  font-weight: 800;
}

.reservation-actions a:nth-child(2) {
  background: var(--rose);
}

.link-band a,
.cam-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sea);
  text-decoration: none;
  font-weight: 800;
}

.link-band a:nth-child(2) {
  background: var(--rose);
}

.link-band a:nth-child(3) {
  background: var(--leaf);
}

.cams,
.things {
  padding: 54px 0 10px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cam-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.cam-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sea-dark);
  font-weight: 900;
}

.cam-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.cam-card p {
  margin: 0;
  color: var(--muted);
}

.cam-card a {
  margin-top: auto;
}

.things-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.thing-item {
  min-height: 116px;
  padding: 18px;
}

.thing-item h3 {
  margin: 6px 0;
  font-size: 1.08rem;
}

.thing-item p {
  margin: 0;
  color: var(--muted);
}

.sources {
  margin: 38px 0 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: 760px;
  }

  .topbar {
    gap: 14px;
    flex-wrap: wrap;
  }

  .overview,
  .reservations,
  .card-grid,
  .things-list,
  .link-band {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 520px) {
  .topbar a:not(.brand) {
    display: none;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-left: 12px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}
