:root {
  --charcoal: #264653;
  --verdigris: #2a9d8f;
  --jasmine: #e9c46a;
  --sandy: #f4a261;
  --peach: #e76f51;
  --cream: #fff9ec;
  --cream-2: #f8efd9;
  --paper: #fffdf7;
  --ink: #264653;
  --ink-strong: #111827;
  --muted: #5f746f;
  --link: #1d6f67;
  --sidebar: 256px;
  --shadow: 0 18px 50px rgba(38, 70, 83, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--link);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--charcoal);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--charcoal);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  min-height: 100vh;
}

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  background:
    radial-gradient(circle at 24% 12%, rgba(42, 157, 143, 0.2), transparent 38%),
    linear-gradient(180deg, #264653 0%, #1f3944 100%);
  color: #fffaf0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fffaf0;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.05;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.14rem;
}

.brand-kicker {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 250, 240, 0.26);
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  margin-top: 2rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.site-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.62rem 0.75rem;
  color: rgba(255, 250, 240, 0.86);
  text-decoration: none;
  border-left: 4px solid transparent;
  border-radius: 7px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(233, 196, 106, 0.12);
  color: #fffaf0;
}

.site-nav a[aria-current="page"] {
  background: rgba(42, 157, 143, 0.22);
  border-left-color: var(--verdigris);
  color: #fffaf0;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.36);
}

.site-nav a[aria-current="page"] .nav-dot {
  background: var(--jasmine);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.85rem;
}

.sidebar-footer p {
  margin: 0.4rem 0 0;
}

.main-content {
  margin-left: var(--sidebar);
  min-height: 100vh;
}

.content-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 70, 83, 0.82) 0%, rgba(38, 70, 83, 0.52) 42%, rgba(231, 111, 81, 0.13) 100%),
    linear-gradient(0deg, rgba(38, 70, 83, 0.78) 0%, transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 4rem 0 4.5rem;
  color: #fffaf0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--jasmine);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jasmine), var(--peach));
}

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 650;
}

.hero h1 {
  color: #fffaf0;
  text-shadow: 0 2px 24px rgba(17, 24, 39, 0.28);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 650;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 670;
}

p {
  margin: 0 0 1rem;
}

.lede {
  max-width: 65ch;
  margin-top: 1.1rem;
  font-size: 1.1rem;
  color: rgba(255, 250, 240, 0.92);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--peach);
  color: var(--ink-strong);
  box-shadow: 0 12px 30px rgba(231, 111, 81, 0.32);
}

.button.primary:hover {
  background: var(--sandy);
  color: var(--ink-strong);
}

.button.secondary {
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.68);
  color: #fffaf0;
}

.button.secondary:hover {
  background: #fffaf0;
  color: var(--charcoal);
}

.section {
  padding: 4.5rem 0;
}

.section.tight {
  padding-top: 3rem;
}

.section.tint {
  background: linear-gradient(180deg, rgba(233, 196, 106, 0.19), rgba(244, 162, 97, 0.12));
}

.section-heading {
  max-width: 65ch;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-card,
.tip-card,
.quote-card {
  background: var(--paper);
  border: 1px solid rgba(38, 70, 83, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem;
}

.card-body p,
.tip-card p {
  color: var(--muted);
}

.tip-card {
  padding: 1.25rem;
}

.tip-card.accent {
  border-top: 5px solid var(--verdigris);
}

.tip-card.sun {
  border-top: 5px solid var(--jasmine);
}

.tip-card.warm {
  border-top: 5px solid var(--sandy);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.feature-split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.prose {
  max-width: 65ch;
}

.prose ul,
.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.prose li,
.checklist li {
  position: relative;
  padding-left: 1.55rem;
  margin: 0 0 0.75rem;
}

.prose li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--verdigris);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.13);
}

.callout {
  padding: 1.3rem;
  background: linear-gradient(135deg, rgba(233, 196, 106, 0.3), rgba(244, 162, 97, 0.18), rgba(231, 111, 81, 0.12));
  border: 1px solid rgba(231, 111, 81, 0.22);
  border-radius: 8px;
}

.callout strong {
  color: var(--ink-strong);
}

.mini-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mini-list div {
  padding: 0.9rem 1rem;
  background: rgba(255, 253, 247, 0.78);
  border-left: 4px solid var(--sandy);
  border-radius: 7px;
}

.page-intro {
  padding: 4.5rem 0 2rem;
}

.page-intro .eyebrow {
  color: var(--link);
}

.page-intro .lede {
  color: var(--muted);
}

.page-hero-image {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-box {
  padding: 1.3rem;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid rgba(38, 70, 83, 0.12);
  box-shadow: var(--shadow);
}

.contact-box a {
  font-weight: 760;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--charcoal);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 70, 83, 0.22);
  border-radius: 7px;
  padding: 0.78rem 0.85rem;
  background: #fffdf7;
  color: var(--ink-strong);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-cta {
  padding: 3rem 0 4.5rem;
}

.footer-cta-inner {
  padding: 1.55rem;
  background: var(--charcoal);
  color: #fffaf0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-cta h2,
.footer-cta p {
  color: #fffaf0;
  margin-bottom: 0.25rem;
}

.footer-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .grid.three,
  .grid.two,
  .feature-split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-split img {
    order: -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 0;
    padding: 0.85rem 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    margin-top: 0.85rem;
  }

  .site-nav:not(.is-open) {
    display: none;
  }

  .site-nav a {
    min-height: 42px;
  }

  .sidebar-footer {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .content-wrap,
  .hero-inner,
  .page-hero-image {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    min-height: 520px;
  }

  .hero-inner {
    padding: 3rem 0 3.5rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .page-intro {
    padding: 3rem 0 1.5rem;
  }

  .footer-cta-inner {
    display: grid;
  }
}
