*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

body { position: relative; overflow-x: hidden; display: grid; grid-template-rows: auto 1fr auto; min-height: 100vh; }

:root {
  --green: #0D3D2B;
  --purple: #B87FD4;
  --yellow: #fddb40;
  --cream: #f9f0d9;
  --muted: #0D3D2B;
  --border: rgba(13, 61, 43, 0.12);
}

body {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 1.8;
  background: var(--cream);
  color: var(--green);
  min-height: 100vh;
}

/* ─── HYPERLINKS ──────────────────────────────────── */
a:not([class]) {
  color: #f15b27;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
a:not([class]):hover { color: var(--purple); }

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
}

p {
  font-family: 'PT Serif', serif;
}

/* ─── NAV ─────────────────────────────────────────── */

#nav-include { display: contents; }

#site {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 68px;
  background: var(--green);
  overflow: visible;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.nav-visible { transform: translateY(0) !important; }

.nav-inner {
  width: 100%;
  max-width: 1400px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav.nav-visible { transform: translateY(0); }
nav.scrolled { box-shadow: 0 2px 20px rgba(13, 61, 43, 0.1); }

.logo img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-inner .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after { display: none; }
.nav-links a:hover {
  color: var(--yellow);
  text-decoration: underline wavy #dfa9ff;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}
.nav-links a:hover { color: var(--yellow); }

.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: color 0.2s;
}
.nav-instagram:hover { color: var(--purple); }

.nav-cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--purple);
  color: var(--cream);
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--yellow); color: var(--green); }

/* ─── HAMBURGER ───────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─────────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  z-index: 99;
  background: var(--green);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 2px solid var(--green);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}
.mobile-menu a:hover { color: var(--purple); }
.mobile-menu .mobile-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}
.mobile-menu .mobile-instagram:hover { color: var(--purple); }
.mobile-menu .nav-cta { margin-top: 1rem; }

/* ─── HERO ────────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  padding: 2.5rem 1.25rem;
  position: relative;
}
.hero-sparkles {
  position: absolute;
  top: 30px;
  left: clamp(120px, 14vw, 220px);
  width: clamp(60px, 8vw, 110px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.hero-saturn {
  position: absolute;
  top: 20px;
  right: 40px;
  width: clamp(80px, 10vw, 140px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.hero-dragon {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }


.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2rem;
  background: rgba(184, 127, 212, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
}
.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--green);
}
.hero-title .accent { color: var(--purple); }
.hero-body { font-size: 20px; line-height: 1.75; color: var(--muted); max-width: 760px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.25rem; }

.btn-primary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--cream);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--purple); }

.btn-secondary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--purple); }

/* ─── GALLERY HEADER ─────────────────────────────── */

.gallery-section { padding: 3rem 1.25rem; }
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.page-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gallery-pencil {
  height: 100px;
  width: auto;
}
.gallery-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; }
.gallery-link { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.gallery-link:hover { color: var(--purple); }

.gallery-cta-wrap { display: flex; justify-content: center; align-items: center; gap: 0.75rem; flex-wrap: wrap; padding-top: 3rem; }
.btn-struggle {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--green);
  color: #fff;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.btn-struggle:hover { background: var(--purple); transform: scale(1.02); }

/* ─── SECTION DIVIDER ────────────────────────────── */

.section-divider {
  width: 100%;
  height: 40px;
  background-repeat: repeat-x;
  background-size: auto 40px;
}

/* ─── SERVICES ────────────────────────────────────── */

.services-section { padding: 3rem 1.25rem; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 700; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--cream);
  border-radius: 16px;
  border: 2px solid var(--green);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(13, 61, 43, 0.08); }
.service-illustration {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: #E8E3DA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.service-illustration svg { opacity: 0.2; }
.service-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 700; color: var(--green); line-height: 1.3; }
.service-desc { font-size: 16px; line-height: 1.65; color: var(--muted); }
.service-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(184, 127, 212, 0.12);
  color: var(--purple);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: auto;
}

/* ─── CONTACT ─────────────────────────────────────── */

.contact-section { padding: 5rem 1.25rem; background: #F7D94C; }
.contact-inner {
  background: #fffcf6;
  border-radius: 20px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.contact-heading .squiggle {
  text-decoration: underline;
  text-decoration-color: #dfa9ff;
  text-decoration-style: wavy;
  text-underline-offset: 6px;
}
.contact-desc { font-size: 15px; line-height: 1.7; color: var(--muted); }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.form-group label { font-size: 13px; color: var(--green); }
.form-group label span { color: var(--muted); font-size: 12px; margin-left: 4px; }
.form-group input,
.form-group textarea {
  background: #fffbe8;
  border: 1px solid rgba(13, 61, 43, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--green);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: #fff9d6;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row-names { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.btn-submit {
  width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--green);
  color: #fff;
  padding: 16px;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--purple); }

/* ─── MOBILE ──────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-instagram { display: none; }
  .hamburger { display: flex; }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .form-row-names { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-row: auto; min-height: 300px; }
  .gallery-item { min-height: 200px; }

  .hero-title { font-size: clamp(32px, 10vw, 52px); }
}

/* ─── FOOTER ──────────────────────────────────────── */

.site-footer {
  background: var(--green);
  width: 100%;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 4rem 2rem 3rem;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer-col--right {
  align-items: center;
  text-align: center;
}

.footer-heading {
  font-family: covik-sans, sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  line-height: 1.1;
}

.footer-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-illustration {
  height: 180px;
  width: auto;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  text-align: center;
  border-top: 0.5px solid rgba(255,255,255,0.15);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2rem;
    gap: 2.5rem;
  }
  .footer-center { order: -1; }
  .footer-illustration { height: 120px; }
}
/* ─── HOME ABOUT ──────────────────────────────────── */

.home-about {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 160px;
  gap: 4rem;
  padding: 5rem 1.25rem;
  border-top: 2px solid var(--green);
  align-items: center;
}
.home-about-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E8E3DA;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-about-placeholder svg { opacity: 0.2; }
.home-about-saturn {
  width: 100%;
  height: auto;
  display: block;
  align-self: center;
}
.home-about-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.home-about-text h2 { margin-bottom: 0; }
.home-about-text p { color: var(--muted); }
.home-about-text .btn-secondary { align-self: flex-start; color: #f15b27; }
.home-about-text .btn-secondary:hover { color: var(--purple); }

@media (max-width: 768px) {
  .home-about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-about-saturn {
    width: 80px;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}

/* ─── PAGE CTA (shared) ───────────────────────────── */

.page-cta {
  padding: 5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  border-top: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='10'%3E%3Cpath d='M0 6 Q20 1 40 6 Q60 11 80 6' fill='none' stroke='%23f15b27' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 10px;
  background-position: top left;
}
.page-cta-icon {
  height: 80px;
  width: auto;
}
.page-cta-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--green);
  max-width: 600px;
  line-height: 1.15;
}
.page-cta .nav-cta {
  font-size: 13px;
  padding: 14px 32px;
}