/* ============================================================
   Honeybee & Chickadee — One-Page Website Styles
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Brand Colors — from Logo Sheet + Hybrid Options */
  --color-honey: #DFD1A7;        /* PMS 7500 – light cream/gold */
  --color-honey-light: #EDE5CC;   
  --color-honey-dark: #CEB898;    /* PMS 7502 – warm tan */
  --color-gold: #F1C400;          /* PMS 7406 – bright gold */
  --color-brown: #9E652E;         
  --color-sage: #4F5A2F;          /* Requested darker olive/green */
  --color-sage-light: #6A7742;
  --color-sage-dark: #373F21;

  /* Neutrals */
  --color-text: #251F1F;          
  --color-text-light: #6B6560;
  --color-bg: #FAF9F6;
  --color-bg-warm: #F5F1EA;
  --color-bg-card: #ffffff;
  --color-border: #E8E2D6;

  /* Accent */
  --color-accent: #4F5A2F;
  --color-accent-hover: #373F21;

  /* Typography */
  --font-primary: 'Raleway', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Section Shared Styles --- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-sage-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-text);
  border-color: var(--color-gold);
  font-weight: var(--fw-bold);
}

.btn-primary:hover {
  background-color: #D4AC00;
  border-color: #D4AC00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-sage);
  color: var(--color-sage);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 228, 219, 0.5);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: height var(--transition-base);
}

.navbar.scrolled .nav-container {
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-logotype {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text);
  margin-top: 5px; /* Optically centering with the logo graphic */
}

.logo-img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--color-gold);
  color: var(--color-text) !important;
  font-weight: var(--fw-bold);
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background-color: #D4AC00;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--space-md) var(--space-2xl);
  overflow: hidden;
  background: linear-gradient(170deg, var(--color-bg) 0%, var(--color-honey-light) 50%, var(--color-bg-warm) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-sage-dark);
  background: rgba(107, 125, 90, 0.08); /* sage-dark */
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.15s both;
}

.hero-title .highlight {
  color: var(--color-sage);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--color-honey);
  opacity: 0.5;
  z-index: -1;
  border-radius: 3px;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero-subtitle strong {
  font-size: 1.35rem; /* Slightly larger as requested */
  color: var(--color-text-light);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.45s both;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.07;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-honey-dark);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--color-honey-dark);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 180px;
  height: 180px;
  background: var(--color-sage);
  top: 40%;
  left: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

/* --- Services --- */
.services {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139, 158, 120, 0.12), rgba(241, 196, 0, 0.12));
  color: var(--color-sage-dark);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-details li {
  font-size: 0.88rem;
  color: var(--color-text-light);
  padding-left: 1.25rem;
  position: relative;
}

.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* --- About --- */
.about {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--color-honey-light), var(--color-honey-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-gold));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
}

.about-image-placeholder:hover::before {
  opacity: 1;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: sepia(0.6) contrast(1.1);
  transition: filter 0.5s var(--ease-smooth);
}

.about-image-placeholder:hover .about-photo {
  filter: sepia(0) contrast(1);
}

.about-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.about-fun-fact {
  background: rgba(241, 196, 0, 0.06);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg) !important;
}

.about-fun-fact em {
  font-size: 0.93rem;
  color: var(--color-text);
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--color-honey);
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.testimonial-quote p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  color: var(--color-text);
}

.author-service {
  font-size: 0.8rem;
  color: var(--color-sage-dark);
  font-weight: var(--fw-medium);
}

/* --- Contact --- */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  padding-top: var(--space-md);
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.contact-highlight-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-form-wrapper {
  position: relative;
  width: 100%;
  background: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* --- Footer --- */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: #ffffff;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border); /* Visual line added back */
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.footer-logo {
  height: 90px; /* Slightly larger for the version with text */
  width: auto;
  margin-bottom: var(--space-xs); /* Added space below logo */
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: -5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md); /* Increased bottom margin significantly to push it up */
}

.back-to-top {
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.back-to-top:hover {
  color: var(--color-gold);
  font-weight: var(--fw-bold);
}

.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ============================================================
   Responsive Design
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 140px var(--space-md) var(--space-xl);
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image-placeholder {
    aspect-ratio: 3/2;
    max-height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }

  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }

  .hero-shape-3 {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .service-card {
    padding: var(--space-lg) var(--space-md);
  }

  .contact-form {
    padding: var(--space-lg) var(--space-md);
  }
}
