/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --honey: #D4A843;
  --honey-light: #E8C96A;
  --honey-dark: #B8912E;
  --green: #4A7C3F;
  --green-dark: #2D5016;
  --green-light: #8BA888;
  --sage: #A8B89A;
  --cream: #FDF8EE;
  --cream-dark: #F5EDDA;
  --brown: #3E2723;
  --brown-light: #5D4037;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--honey-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 238, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
  font-weight: 500 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-dark);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  transition: all var(--transition);
  border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ===== BRAND BANNER (home page) ===== */
.brand-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: transparent;
}

.brand-banner-logo {
  max-height: 150px;
  width: auto;
  transition: opacity 0.3s ease;
}

.site-header .logo img {
  transition: opacity 0.3s ease;
}

.site-header.home-top .logo img {
  opacity: 0;
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #E8DFC8 100%);
  /* padding-top: 8rem; */
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  background: rgba(74, 124, 63, 0.1);
  border-radius: 20px;
}

.hero h1 {
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--honey-dark);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  z-index: 2;
}

.hero-images img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hero-images img:first-child {
  height: 350px;
  grid-row: 1 / 3;
  height: 100%;
}

.hero-images img:nth-child(2) {
  height: 220px;
}

.hero-images img:nth-child(3) {
  height: 220px;
}

/* Decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 124, 63, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn-secondary:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-honey {
  background: var(--honey);
  color: var(--brown);
}

.btn-honey:hover {
  background: var(--honey-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--honey);
  margin: 1rem auto 0;
  border-radius: 3px;
}

/* ===== INTRO / FROM FLOWER TO HONEY ===== */
.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.intro-images img {
  border-radius: 10px;
  object-fit: cover;
  height: 280px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.intro-images img:first-child,
.intro-images .image-credit-wrapper:first-child {
  grid-column: 1 / -1;
}

.intro-images .image-credit-wrapper:first-child img {
  height: 300px;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.honey-types {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.honey-type {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .section-tag {
  color: var(--honey-light);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--honey);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--honey-light);
  font-size: 0.9rem;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--honey);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

/* ===== PARTNERS & PRESS ===== */
.partners-press {
  background: var(--white);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-bottom: 3.5rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform var(--transition);
}

.partner-logo:hover {
  transform: scale(1.08);
}

.partner-logo img {
  max-height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.partner-logo.partner-large img {
  max-height: 90px;
  max-width: 220px;
}

.partner-logo.partner-mkb img {
  max-height: 110px;
  max-width: 260px;
}

.press-links h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  text-decoration: none;
}

.press-card:hover {
  border-color: var(--honey);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.press-source {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey-dark);
}

.press-title {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.press-card:hover .press-title {
  color: var(--green-dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 {
  color: var(--brown);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--brown-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--brown);
}

.cta-banner .btn-primary:hover {
  background: var(--green-dark);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--white);
  text-align: center;
  position: relative;
}

.page-hero .hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(74, 124, 63, 0.1);
  border-radius: 20px;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

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

.page-hero-image {
  margin: 2.5rem auto -2rem;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 400px;
  width: 100%;
}

.about-content {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-image-stack img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-image-stack img:first-child,
.about-image-stack .image-credit-wrapper:first-child {
  grid-column: 1 / -1;
}

.about-image-stack .image-credit-wrapper:first-child img {
  height: 320px;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-left: 4px solid var(--honey);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
}

.about-qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}

.quality-dot {
  width: 8px;
  height: 8px;
  background: var(--honey);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== BIODLING PAGE ===== */
.honey-intro {
  background: var(--white);
}

.honey-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.honey-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.honey-images img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 250px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.honey-images img:last-child {
  grid-column: 1 / -1;
  height: 280px;
}

.honey-text h2 {
  margin-bottom: 1.5rem;
}

.honey-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.honey-products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: var(--honey);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== KURSER PAGE ===== */
.courses-intro {
  background: var(--white);
}

.courses-intro .intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.courses-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.audience-tag {
  padding: 0.6rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

.courses-section {
  background: var(--cream);
}

.course-category {
  margin-bottom: 3rem;
}

.course-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 1.8rem;
}

.category-header h3 {
  font-size: 1.5rem;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.course-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.course-item:hover {
  border-color: var(--honey);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.course-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 500;
}

/* ===== KONSULT PAGE ===== */
.konsult-intro {
  background: var(--white);
}

.konsult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.konsult-text h2 {
  margin-bottom: 1.5rem;
}

.konsult-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.konsult-features {
  list-style: none;
  margin-top: 1.5rem;
}

.konsult-features li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-size: 0.95rem;
}

.konsult-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
  flex-shrink: 0;
}

.konsult-visual {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.konsult-stat {
  text-align: center;
}

.konsult-stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--honey-light);
  display: block;
}

.konsult-stat .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.konsult-services {
  background: var(--cream);
}

.konsult-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.konsult-service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.konsult-service-card:hover {
  border-color: var(--honey);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.konsult-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.konsult-service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.6rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--honey-light);
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-desc {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .intro-grid,
  .about-grid,
  .honey-grid,
  .konsult-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .partners-logos {
    gap: 1rem;
  }

  .partner-logo img {
    max-height: 55px;
    max-width: 120px;
  }

  .partner-logo.partner-large img {
    max-height: 70px;
    max-width: 160px;
  }

  .partner-logo.partner-mkb img {
    max-height: 85px;
    max-width: 180px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .about-qualities {
    grid-template-columns: 1fr;
  }

  .hero-images img:first-child {
    height: 250px;
  }

  .hero-images img:nth-child(2),
  .hero-images img:nth-child(3) {
    height: 160px;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-images img:first-child,
  .hero-images img:nth-child(2),
  .hero-images img:nth-child(3) {
    height: 220px;
  }

  .intro-images,
  .about-image-stack,
  .honey-images {
    grid-template-columns: 1fr;
  }

  .intro-images img,
  .about-image-stack img,
  .about-image-stack img:first-child,
  .honey-images img,
  .honey-images img:last-child {
    height: 220px;
  }
}

/* Image credit overlay */
.image-credit-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.image-credit-wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.image-credit {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.55rem, 1.2vw, 0.8rem);
  padding: 0.2em 0.5em;
  line-height: 1.4;
  pointer-events: none;
}
