
/* ===== Shared Brand System ===== */
:root {
  --cream: #fff8ef;
  --cream-strong: #fff0dc;
  --ink: #263238;
  --muted: #67717a;
  --teal: #35b2ac;
  --teal-dark: #238985;
  --pink: #f47174;
  --pink-soft: #ff9f98;
  --sun: #ffd44d;
  --cactus: #6fb96c;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(38, 50, 56, 0.12);
  --shadow: 0 22px 55px rgba(70, 44, 28, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Fredoka', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 212, 77, 0.22), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(53, 178, 172, 0.18), transparent 30%),
    linear-gradient(180deg, var(--cream), #fffdf9 48%, var(--cream));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(53, 178, 172, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 113, 116, 0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  z-index: -1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 16px;
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(38, 50, 56, 0.08);
}

.navbar {
  max-width: 1180px;
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(38, 50, 56, 0.12));
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-button,
.btn,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(53, 178, 172, 0.22);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover,
.btn:hover,
.button-primary:hover,
.button-secondary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(53, 178, 172, 0.28);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(244, 113, 116, 0.28);
}

.button-primary:hover {
  background: #db5c61;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(38, 50, 56, 0.10);
}

.nav-button:focus-visible,
.contact-form button:focus-visible,
.btn:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.section-eyebrow {
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.script-heading {
  font-family: 'Ranchers', cursive;
  letter-spacing: 0;
}

footer {
  margin-top: 80px;
  padding: 46px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-top: 8px solid var(--sun);
}

.footer-connect {
  text-align: center;
  margin-bottom: 14px;
}

.footer-connect p {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 820px) {
  header {
    position: static;
    padding: 12px 14px;
  }

  .navbar {
    flex-direction: column;
    min-height: 0;
    gap: 10px;
  }

  .logo {
    width: 86px;
    height: 86px;
  }

  .nav-links {
    justify-content: center;
    gap: 8px;
  }

  .nav-button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
  }
}
