:root {
  --ink: #14251f;
  --muted: #667067;
  --green: #173128;
  --green-2: #294735;
  --olive: #708351;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --line: rgba(20, 37, 31, .12);
  --shadow: 0 14px 40px rgba(38, 31, 19, .09);
  --radius: 24px;
  --orb: #f2ab43;
}

* { box-sizing: border-box; }

html { color-scheme: light; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.9), transparent 34rem),
    var(--cream);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  height: 78px;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(20,37,31,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -.035em;
}

.brand img { width: 48px; height: 48px; object-fit: contain; }

.login {
  padding: 11px 18px 12px;
  color: #fffdf8;
  background: var(--green);
  border-radius: 13px;
  font-weight: 650;
  box-shadow: 0 5px 14px rgba(23,49,40,.18);
}

.hero {
  position: relative;
  min-height: clamp(430px, 56vw, 650px);
  max-height: 690px;
  overflow: hidden;
  background: #1d2620;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,15,12,.78) 0%, rgba(9,15,12,.50) 34%, rgba(9,15,12,.08) 65%, rgba(9,15,12,.02) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: clamp(120px, 16vw, 190px);
  color: white;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 580px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  max-width: 510px;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0,0,0,.36);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: 18px;
}

.now-card,
.weather-card,
.events-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.now-card {
  min-height: 300px;
  padding: 26px;
  color: #f9f5e9;
  background:
    radial-gradient(circle at 18% 55%, rgba(240,170,67,.12), transparent 28%),
    linear-gradient(145deg, #213d2e, #142b23);
}

.section-kicker,
.eyebrow {
  text-transform: lowercase;
  letter-spacing: .02em;
  font-size: .92rem;
  font-weight: 700;
}

.section-kicker { display: flex; gap: 9px; align-items: center; color: #dbe3cf; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #9fc368; box-shadow: 0 0 12px rgba(159,195,104,.5); }

.now-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 16px;
}

.orb-wrap { display: grid; place-items: center; min-height: 210px; }
.orb {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255,255,255,.95) 0 2%, rgba(255,244,196,.55) 10%, transparent 26%),
    radial-gradient(circle at 48% 46%, #ffd673 0%, var(--orb) 51%, #c87025 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.22) inset,
    0 0 30px color-mix(in srgb, var(--orb) 58%, transparent),
    0 22px 38px rgba(0,0,0,.18);
  transition: background .4s ease, box-shadow .4s ease;
}

.message-bubble {
  position: relative;
  padding: 26px 28px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}

.message-bubble::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #244233;
  border-left: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.message-bubble p { margin: 0; }

.weather-card {
  min-height: 300px;
  padding: 28px;
  background: rgba(255,253,248,.94);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.weather-main { display: flex; align-items: center; gap: 22px; }
.temperature {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 4.8rem);
  line-height: .9;
}
.temperature sup { font-size: .34em; vertical-align: top; margin-left: 3px; }
.weather-main p { margin: 12px 0 0; color: var(--muted); font-size: 1.05rem; }
.weather-icon { position: relative; width: 108px; height: 92px; flex: 0 0 108px; }
.sun { position: absolute; width: 48px; height: 48px; border-radius: 50%; right: 9px; top: 7px; background: #f8bb43; box-shadow: 0 0 20px rgba(248,187,67,.24); }
.cloud { position: absolute; border-radius: 999px; background: #e9e7de; box-shadow: inset 0 -3px 0 rgba(100,100,90,.08); }
.cloud-a { width: 84px; height: 36px; left: 4px; bottom: 13px; }
.cloud-b { width: 52px; height: 52px; left: 30px; bottom: 22px; border-radius: 50%; }
.weather-meta { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 20px; }
.weather-meta p { margin: 7px 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.weather-meta span { display: inline-block; width: 24px; color: var(--olive); }

.events-card {
  grid-column: 1 / -1;
  padding: 30px;
  background: rgba(255,253,248,.8);
}
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.eyebrow { margin: 0 0 5px; color: var(--olive); }
.section-head h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.events { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.event { padding: 22px 24px 10px 0; }
.event + .event { border-left: 1px solid var(--line); padding-left: 24px; }
.event-date { margin: 0 0 9px; color: var(--olive); text-transform: uppercase; letter-spacing: .05em; font-size: .77rem; font-weight: 800; }
.event-title { margin: 0 0 6px; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.event-detail { margin: 0; color: var(--muted); line-height: 1.45; }

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 26px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #6f746e;
  font-size: .9rem;
}
.footer-links { display: flex; gap: 12px; }

@media (max-width: 780px) {
  .site-header { height: 70px; padding: 0 18px; }
  .brand { font-size: 2rem; }
  .brand img { width: 42px; height: 42px; }
  .login { padding: 10px 15px; }

  .hero { min-height: 520px; }
  .hero-image { object-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,14,11,.77), rgba(8,14,11,.28) 74%, rgba(8,14,11,.08)); }
  .hero-copy { width: calc(100% - 40px); padding-top: 135px; }
  .hero-copy h1 { max-width: 330px; font-size: clamp(3.25rem, 15vw, 4.7rem); }
  .hero-copy p { max-width: 300px; font-size: 1.16rem; }

  .page-shell { width: calc(100% - 22px); margin-top: -20px; grid-template-columns: 1fr; gap: 12px; }
  .now-card, .weather-card, .events-card { border-radius: 20px; }
  .now-card { padding: 22px 18px 20px; min-height: auto; }
  .now-body { grid-template-columns: 110px minmax(0,1fr); gap: 16px; }
  .orb-wrap { min-height: 145px; }
  .orb { width: 100px; }
  .message-bubble { padding: 20px 18px; border-radius: 19px; font-size: 1.15rem; }
  .message-bubble::before { width: 18px; height: 18px; left: -10px; }

  .weather-card { min-height: 0; padding: 22px; flex-direction: row; align-items: center; gap: 18px; }
  .weather-main { gap: 14px; }
  .weather-icon { width: 82px; height: 70px; flex-basis: 82px; }
  .sun { width: 38px; height: 38px; }
  .cloud-a { width: 66px; height: 30px; }
  .cloud-b { width: 42px; height: 42px; left: 24px; bottom: 18px; }
  .temperature { font-size: 3.25rem; }
  .weather-main p { font-size: .93rem; margin-top: 8px; }
  .weather-meta { border-top: 0; border-left: 1px solid var(--line); margin: 0; padding: 0 0 0 18px; flex: 1; }
  .weather-meta p { font-size: 1rem; }

  .events-card { padding: 24px 20px 12px; }
  .events { grid-template-columns: 1fr; }
  .event { padding: 17px 0; }
  .event + .event { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }

  footer { width: calc(100% - 36px); margin-top: 24px; padding-bottom: calc(30px + env(safe-area-inset-bottom)); flex-direction: column; }
}

@media (max-width: 460px) {
  .hero { min-height: 500px; }
  .hero-image { object-position: 60% center; }
  .hero-copy { padding-top: 120px; }
  .hero-copy h1 { font-size: 3.5rem; }

  .now-body { grid-template-columns: 1fr; }
  .orb-wrap { min-height: 124px; }
  .message-bubble::before { left: 42px; top: -10px; transform: rotate(135deg); }

  .weather-card { display: grid; grid-template-columns: 1fr; }
  .weather-meta { border-left: 0; border-top: 1px solid var(--line); padding: 15px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
