:root {
  --bg: #f6f4ee;
  --surface: #ffffff;
  --text: #223034;
  --brand: #1d4f2b;
  --accent: #cb565c;
  --line: #d7d8d2;
  --max-width: 1040px;
  --chrome-bg: linear-gradient(
    90deg,
    #a9c184 0%,
    #86a860 42%,
    #6f8b4c 72%,
    #5c743d 100%
  );
  --chrome-text: #eaf2ea;
  --chrome-shadow: 0 4px 18px rgba(28, 50, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 120%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -5%, #ffffff, transparent 70%),
    radial-gradient(800px 400px at 90% 0%, #fce9ea, transparent 70%), var(--bg);
}

.site-shell {
  max-width: var(--max-width);
  margin: 1.5rem auto 2rem;
  padding: 0;
  box-shadow: var(--chrome-shadow);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: clip;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.page,
.footer-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 0.75rem;
  padding-inline: 1rem;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
}

.hamburger span {
  width: 1.125rem;
  height: 2px;
  margin-inline: auto;
  background: var(--brand);
}

.menu {
  display: none;
  position: absolute;
  inset: 4.25rem 1rem auto 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
}

.menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 0.45rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover {
  background: #edf3ef;
}

.menu.is-open {
  display: block;
}

.page {
  padding-block: 2.25rem 2.75rem;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 1.75rem;
  color: #415057;
  font-size: 1.19rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-sites,
.footer-contact,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-style: normal;
}

.footer-divider {
  color: #b0b8bc;
  margin-inline: 0.2rem;
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

/* VashonSoftware credit link — style from MadeInParadiseRocks.com footer */
/* Higher specificity (.site-footer a.site-credit-link) beats .site-footer a:hover */
.site-footer a.site-credit-link {
  display: inline-block;
  width: fit-content;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition:
    color 0.16s ease,
    transform 0.16s ease,
    text-shadow 0.16s ease;
}

.site-footer a.site-credit-link:hover,
.site-footer a.site-credit-link:focus-visible {
  color: var(--accent);
  transform: translateX(4px) scale(1.12) rotate(-4deg);
  text-shadow:
    0 0 10px rgba(203, 86, 92, 0.55),
    0 0 20px rgba(203, 86, 92, 0.28);
  outline: none;
}

.hero {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid #d7d8d2;
  border-radius: 1rem;
  padding: 1rem;
}

.logo-stack {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.logo-stack img,
.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  color: #1d4f2b;
  line-height: 1.2;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.hero-copy p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #3a4348;
}

.hero-copy p strong {
  color: #7f2d31;
}

.cta-line a {
  color: #1d4f2b;
  text-decoration-thickness: 2px;
}

.content-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.card {
  background: #ffffff;
  border: 1px solid #d7d8d2;
  border-radius: 0.85rem;
  padding: 1rem;
}

.card h2 {
  margin: 0 0 0.6rem;
  color: #1d4f2b;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  line-height: 1.6;
  color: #3a4348;
}

@media (min-width: 840px) {
  .hamburger {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    inset: auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    gap: 0.35rem;
  }

  .hero {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

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