:root {
  --color-primary: #FEA633;
  --color-primary-dark: #F08A1E;
  --color-text: #333333;
  --color-text-light: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-soft: #FFF6EA;
  --font-body: 'Quicksand', sans-serif;
  --font-heading: 'Patrick Hand', sans-serif;
  --radius-blob: 0 12px 25px 0;
  --shadow-card: 0 10px 30px rgba(51, 51, 51, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--color-primary-dark); text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-blob);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(254, 166, 51, 0.35);
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.btn-outline:hover { background: var(--color-bg-soft); }

.btn-block { display: block; width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(51, 51, 51, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}
.logo-mark {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.1;
}
.logo-text small {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 600;
}
.main-nav a:hover { color: var(--color-primary-dark); }
.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-blob);
}
.nav-cta:hover { background: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  margin: 0 auto;
}

/* Hero */
.hero {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  padding: 90px 0 130px;
  overflow: hidden;
  text-align: center;
}

.hero-doodles { position: absolute; inset: 0; color: rgba(255,255,255,0.35); pointer-events: none; }
.doodle { position: absolute; width: 70px; height: 70px; }
.d1 { top: 12%; left: 6%; width: 60px; height: 60px; }
.d2 { top: 55%; left: 12%; width: 50px; height: 50px; }
.d3 { top: 15%; right: 8%; width: 55px; height: 55px; }
.d4 { bottom: 18%; right: 6%; width: 65px; height: 65px; }
.d5 { top: 8%; left: 42%; width: 45px; height: 45px; display: none; }
.d6 { bottom: 10%; left: 45%; width: 40px; height: 40px; display: none; }

.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.4em;
}

.hero-tagline {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 1.8em;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.hero .btn-primary:hover { background: var(--color-bg-soft); }

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
}

/* About */
.about { padding: 70px 0; text-align: center; }
.about-badge {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  color: var(--color-primary);
}
.about-badge svg { width: 100%; height: 100%; }
.about h2 { font-size: 2.1rem; color: var(--color-text); }
.about-inner p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 0.2em;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2.4em;
  font-weight: 600;
}

/* Services */
.services { background: var(--color-bg-soft); padding: 70px 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  color: var(--color-primary);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}
.service-card p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Contact */
.contact { padding: 70px 0 90px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-row h3 { font-size: 1.2rem; margin-bottom: 0.15em; }
.contact-row p { margin-bottom: 0; color: var(--color-text-light); }
.contact-row a { color: var(--color-text); font-weight: 700; }

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.contact-form {
  background: var(--color-bg-soft);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  border: 2px solid #f0dcb8;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  min-height: 48px;
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-note {
  margin-top: 14px;
  text-align: center;
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: #fff;
  padding: 26px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-inner p { margin-bottom: 0.3em; color: rgba(255,255,255,0.85); }
.site-footer a { color: #fff; font-weight: 700; }

/* Tablet+ */
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .contact-cta { flex-direction: row; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .d5, .d6 { display: block; }
}

@media (min-width: 900px) {
  .main-nav { position: static; }
  .hero h1 { font-size: 3.4rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Mobile nav */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(51,51,51,0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid #f2e5cf;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    border-bottom: none;
  }
}
