/* ============ VARIABLES ============ */
:root {
  --sky-top: #6ec3f4;
  --sky-mid: #8fd4f7;
  --sky-bottom: #c9ecfb;
  --sun-glow: #ffe27a;
  --sand: #fdf6e3;
  --cream: #fffaf0;
  --grass-1: #8fce6a;
  --grass-2: #6fb653;
  --grass-3: #4f9a3d;
  --brown: #7a4b2c;
  --brown-dark: #5c3820;
  --ink: #3a3128;
  --ink-soft: #6b5d4f;
  --coral: #ff8a5c;
  --coral-dark: #f06a3c;
  --yellow: #ffc94d;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(90, 60, 20, 0.35);
  --ff-display: "Baloo 2", cursive, sans-serif;
  --ff-body: "Quicksand", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--ff-display); margin: 0; }
p { margin: 0; line-height: 1.6; }
ul { list-style: none; margin: 0; padding: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.9,.32,1), transform .8s cubic-bezier(.22,.9,.32,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,.55);
  border: 2px dashed rgba(122,75,44,.4);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 14px;
}
.tag--light {
  background: rgba(122,75,44,.08);
  border-color: rgba(122,75,44,.25);
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--brown-dark);
  color: #fff2dd;
  font-size: .82rem;
  font-weight: 600;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .92;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.topbar__item:hover { opacity: 1; }
.topbar__item .ic {
  width: 14px; height: 14px;
  fill: var(--yellow);
  flex-shrink: 0;
}
.topbar__item--cta {
  margin-left: auto;
  background: var(--coral);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
}
.topbar__item--cta:hover { background: var(--coral-dark); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(122,75,44,.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__brand-icon { font-size: 1.3rem; }
.nav__links {
  display: flex;
  gap: 30px;
  font-weight: 700;
  color: var(--brown-dark);
}
.nav__links a { position: relative; padding: 4px 2px; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 3px;
  background: var(--brown-dark);
  border-radius: 3px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(240,106,60,.6);
}
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-3px); }
.btn--ghost {
  background: rgba(255,255,255,.75);
  color: var(--brown-dark);
  border: 2px solid var(--brown-dark);
}
.btn--ghost:hover { background: #fff; transform: translateY(-3px); }
.btn--toggle {
  background: var(--yellow);
  color: var(--brown-dark);
  margin-top: 18px;
  box-shadow: 0 12px 24px -12px rgba(255,201,77,.8);
}
.btn--toggle:hover { transform: translateY(-3px); background: #ffbe2e; }
.btn--toggle .btn__icon { transition: transform .3s ease; }
.btn--toggle[aria-expanded="true"] .btn__icon { transform: rotate(180deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 160px;
}
.sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 55%, var(--sky-bottom) 100%);
  overflow: hidden;
}
.sun-wrap {
  position: absolute;
  top: 6%;
  right: 8%;
  width: clamp(120px, 16vw, 220px);
  filter: drop-shadow(0 0 60px rgba(255, 226, 122, .9));
  animation: spin-slow 40s linear infinite;
}
.sun-img { width: 100%; }
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.cloud { position: absolute; opacity: .95; }
.cloud-shape {
  position: relative;
  width: 140px; height: 60px;
  background: #fff;
  border-radius: 60px;
}
.cloud-shape::before, .cloud-shape::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.cloud-shape::before { width: 70px; height: 70px; top: -35px; left: 15px; }
.cloud-shape::after { width: 55px; height: 55px; top: -25px; left: 70px; }
.cloud--1 { top: 12%; left: 6%; transform: scale(1.1); animation: drift 55s linear infinite; }
.cloud--2 { top: 22%; left: 60%; transform: scale(.75); animation: drift 40s linear infinite reverse; }
.cloud--3 { top: 8%; left: 38%; transform: scale(.55); opacity: .8; animation: drift 65s linear infinite; }
.cloud--4 { top: 32%; left: 15%; transform: scale(.6); opacity: .85; animation: drift 48s linear infinite reverse; }
@keyframes drift {
  0% { transform: translateX(-10px) scale(var(--s, 1)); }
  50% { transform: translateX(40px) scale(var(--s, 1)); }
  100% { transform: translateX(-10px) scale(var(--s, 1)); }
}

.sparkle {
  position: absolute;
  color: #fff;
  opacity: .8;
  animation: twinkle 3.5s ease-in-out infinite;
}
.sparkle--1 { top: 18%; left: 45%; font-size: 1.2rem; animation-delay: .2s; }
.sparkle--2 { top: 40%; left: 78%; font-size: .9rem; animation-delay: 1.2s; }
.sparkle--3 { top: 15%; left: 20%; font-size: .8rem; animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.bird {
  position: absolute;
  color: rgba(58,49,40,.55);
  font-size: 1.4rem;
  font-weight: 700;
  animation: fly 30s linear infinite;
}
.bird--1 { top: 20%; left: -5%; animation-duration: 26s; }
.bird--2 { top: 28%; left: -10%; animation-duration: 34s; animation-delay: 6s; font-size: 1rem; }
@keyframes fly {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 680px;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
}
.hero__kicker {
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.hero__title {
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--coral-dark);
  -webkit-text-stroke: 2px rgba(122,75,44,.25);
  line-height: 1;
  text-shadow: 3px 5px 0 rgba(255,255,255,.6);
}
.hero__subtitle {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--brown-dark);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: .5px;
}
.hero__tagline {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 600;
}
.hero__ctas {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__hill {
  position: absolute;
  left: -5%;
  width: 110%;
  bottom: -4%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}
.hero__hill--back {
  height: 140px;
  background: var(--grass-2);
  bottom: -2%;
  opacity: .9;
}
.hero__hill--front {
  height: 100px;
  background: var(--grass-3);
  bottom: -6%;
  z-index: 3;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  animation: bounce 1.8s ease-in-out infinite;
}
.paw { font-size: 1.8rem; filter: drop-shadow(0 4px 6px rgba(0,0,0,.2)); }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============ ABOUT ============ */
.about {
  background: var(--cream);
  padding: 100px 24px;
  position: relative;
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.about h2 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 18px;
}
.about__text p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 500;
}
.about__points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brown-dark);
  background: rgba(255, 201, 77, .18);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}
.point__icon { font-size: 1.3rem; }

.polaroid {
  background: #fff;
  padding: 14px 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
  transition: transform .4s ease;
  max-width: 360px;
  margin: 0 auto;
}
.polaroid:hover { transform: rotate(0deg) scale(1.02); }
.polaroid img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.polaroid p {
  text-align: center;
  margin-top: 12px;
  font-family: var(--ff-display);
  color: var(--coral-dark);
  font-weight: 700;
}

/* ============ WORKS ============ */
.works {
  background: linear-gradient(180deg, var(--cream), #fef3df);
  padding: 90px 24px 110px;
  text-align: center;
}
.works__header {
  max-width: 620px;
  margin: 0 auto;
}
.works h2 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 14px;
}
.works p { color: var(--ink-soft); font-weight: 500; font-size: 1.05rem; }

.works__grid {
  max-width: 1150px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.works__grid[hidden] { display: none; }

.work-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.work-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 26px 50px -18px rgba(90,60,20,.45); }
.work-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.work-card figcaption {
  padding: 14px;
  font-family: var(--ff-display);
  color: var(--brown-dark);
  font-weight: 700;
}
.works__note {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: .9rem;
  color: var(--ink-soft);
  font-style: italic;
}
.works__note[hidden] { display: none; }

/* ============ FOREST / LANDSCAPE ============ */
.forest {
  position: relative;
  height: 340px;
  background: linear-gradient(180deg, #cdeeb0 0%, var(--grass-1) 35%, var(--grass-2) 100%);
  overflow: hidden;
}
.forest__ground {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 90%, rgba(255,255,255,.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.12), transparent 45%);
}
.tree {
  position: absolute;
  bottom: -6%;
  width: clamp(110px, 14vw, 210px);
  filter: drop-shadow(0 18px 14px rgba(30,60,10,.25));
}
.tree--1 { left: 2%; width: clamp(120px, 15vw, 230px); }
.tree--2 { left: 22%; bottom: -10%; width: clamp(90px, 11vw, 160px); opacity: .92; }
.tree--3 { right: 20%; bottom: -8%; width: clamp(100px, 13vw, 190px); opacity: .96; }
.tree--4 { right: 1%; width: clamp(130px, 16vw, 240px); }

.grass { position: absolute; bottom: 6%; font-size: 1.6rem; }
.grass--1 { left: 45%; }
.grass--2 { left: 55%; bottom: 10%; }
.grass--3 { left: 62%; bottom: 4%; }
.grass--4 { left: 38%; bottom: 12%; }

.paw-trail { position: absolute; color: rgba(90,60,20,.35); font-size: 1.1rem; }
.paw-trail--1 { left: 48%; bottom: 20%; transform: rotate(-10deg); }
.paw-trail--2 { left: 51%; bottom: 14%; transform: rotate(6deg) scale(1.1); }
.paw-trail--3 { left: 54%; bottom: 8%; transform: rotate(-4deg); }

/* ============ CONTACT ============ */
.contact {
  background: var(--brown-dark);
  color: var(--sand);
  padding: 90px 24px;
  position: relative;
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact h2 { font-size: clamp(2rem, 4vw, 2.6rem); color: #fff; margin-bottom: 12px; }
.contact > .contact__inner .tag--light {
  background: rgba(255,255,255,.1);
  color: var(--yellow);
  border-color: rgba(255,255,255,.3);
}
.contact__info > p { color: rgba(255,250,240,.8); font-weight: 500; margin-bottom: 26px; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__icon {
  font-size: 1.4rem;
  background: rgba(255,255,255,.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__list strong { color: var(--yellow); display: block; margin-bottom: 2px; font-family: var(--ff-display); }
.contact__list p, .contact__list a { color: rgba(255,250,240,.85); font-weight: 500; }
.contact__list a:hover { color: var(--yellow); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,.5);
  border: 4px solid rgba(255,255,255,.15);
  min-height: 340px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: #4a2c17;
  color: rgba(255,250,240,.7);
  text-align: center;
  padding: 26px 20px;
  font-weight: 600;
  font-size: .9rem;
}
.footer__sub { margin-top: 4px; font-size: .8rem; opacity: .7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar__inner { justify-content: center; gap: 12px 18px; }
  .topbar__item--cta { margin-left: 0; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,250,240,.98);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-bottom: 2px solid rgba(122,75,44,.12);
  }
  .nav__links.is-open { max-height: 300px; }
  .nav__links a { padding: 16px 24px; border-top: 1px solid rgba(122,75,44,.08); }
  .nav__toggle { display: flex; }
  .hero { padding: 80px 20px 140px; }
  .hero__content { padding: 32px 22px; }
  .works__grid { grid-template-columns: 1fr; }
  .tree--2, .tree--3 { display: none; }
}
