/* ========================================
   Phoenix Pharma – Light Premium Design
   Pharma-Clean + Natural Organic
   ======================================== */

:root {
  /* Brand */
  --phoenix-blue: #1B6FA8;
  --phoenix-blue-light: #2B8CC4;
  --phoenix-blue-dark: #134F7A;
  --phoenix-blue-subtle: rgba(27, 111, 168, 0.08);

  /* Light Palette */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --cream: #F5F7F4;
  --light-100: #F0F2EE;
  --light-200: #E4E8E1;
  --light-300: #D1D5CE;

  /* Text */
  --text-primary: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #8494A7;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.75);

  /* Organic */
  --organic-green: #3D7A4A;
  --organic-green-light: #5A9E68;
  --organic-gold: #B8943D;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(5rem, 10vw, 8rem);
  --container-width: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Misc */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

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

.btn--primary:hover {
  background: var(--phoenix-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 111, 168, 0.25);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--full { width: 100%; }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  transition: color 0.3s;
}

.nav--scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link:hover {
  color: var(--white);
}

.nav--scrolled .nav__link:hover {
  color: var(--phoenix-blue);
}

.nav__link--cta {
  color: var(--white) !important;
  background: var(--phoenix-blue);
  border-radius: var(--radius);
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
}

.nav__link--cta:hover {
  background: var(--phoenix-blue-dark) !important;
}

.nav__lang {
  position: relative;
  margin-left: 0.75rem;
}

.nav__lang-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.nav--scrolled .nav__lang-btn {
  background: var(--off-white);
  border-color: var(--light-200);
  color: var(--text-secondary);
}

.nav__lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.nav--scrolled .nav__lang-btn:hover {
  border-color: var(--phoenix-blue);
  color: var(--phoenix-blue);
}

.nav__lang-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
}

.nav__lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 180px;
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease-out);
  z-index: 1001;
}

.nav__lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-menu button {
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
}

.nav__lang-menu button:hover {
  background: var(--phoenix-blue-subtle);
  color: var(--phoenix-blue);
}

.nav__lang-menu button.active {
  background: var(--phoenix-blue-subtle);
  color: var(--phoenix-blue);
  font-weight: 600;
}

.nav__lang-flag {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  opacity: 0.5;
  min-width: 20px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.nav--scrolled .nav__toggle span {
  background: var(--text-primary);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.75) 0%, rgba(26, 35, 50, 0.45) 50%, rgba(26, 35, 50, 0.65) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(26, 35, 50, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.hero__title-line:nth-child(2) { animation-delay: 0.6s; }
.hero__title-line:nth-child(3) { animation-delay: 0.8s; }

.hero__title-line--accent {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-on-dark-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Stats ========== */
.stats {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--light-200);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stats__item { text-align: center; }

.stats__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--phoenix-blue);
  display: block;
}

.stats__unit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: var(--light-200);
}

/* ========== Section Common ========== */
.section { padding: var(--section-padding) 0; }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phoenix-blue);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}

.section__tag::before,
.section__tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--phoenix-blue);
  opacity: 0.4;
}

.section__tag::before { left: 0; }
.section__tag::after { right: 0; }

.section__tag--light { color: var(--organic-gold); }
.section__tag--light::before,
.section__tag--light::after { background: var(--organic-gold); }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

.section__title--left { text-align: left; margin: 0; }
.section__title--white { color: var(--white); }

/* ========== About ========== */
.about { background: var(--white); }

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

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

.about__img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.about__img--main {
  grid-column: 1 / -1;
  height: 320px;
}

.about__img--secondary {
  grid-column: 1 / -1;
  height: 200px;
}

.about__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-200);
}

.about__highlight { text-align: center; flex: 1; }

.about__highlight-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--phoenix-blue);
  margin-bottom: 0.25rem;
}

.about__highlight-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ========== Cultivation ========== */
.cultivation {
  background: var(--off-white);
  padding: 0;
}

.cultivation__hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.cultivation__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cultivation__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 35, 50, 0.3), rgba(26, 35, 50, 0.7));
}

.cultivation__hero-content {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  padding: 0 var(--container-padding);
}

.cultivation__hero-text {
  color: var(--text-on-dark-muted);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 1rem auto 0;
}

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

.cultivation__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.cultivation__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cultivation__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cultivation__card-body {
  padding: 1.5rem;
}

.cultivation__card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.cultivation__card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Production ========== */
.production { background: var(--white); }

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

.production__images {
  display: grid;
  gap: 1rem;
}

.production__img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.production__img--main { height: 320px; }
.production__img--secondary { height: 200px; }

.production__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

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

.production__spec {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--light-200);
  transition: border-color 0.3s;
}

.production__spec:hover { border-color: var(--phoenix-blue); }

.production__spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--phoenix-blue);
  margin-bottom: 0.25rem;
}

.production__spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========== Products ========== */
.products { background: var(--off-white); }

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

.products__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.products__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.products__card-img-wrap {
  overflow: hidden;
  background: var(--light-100);
}

.products__card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.products__card:hover .products__card-img {
  transform: scale(1.05);
}

.products__card-body {
  padding: 2rem;
}

.products__card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.products__card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Process ========== */
.process { background: var(--white); }

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

.process__step {
  text-align: center;
  position: relative;
}

.process__step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.process__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--phoenix-blue);
  background: var(--white);
  color: var(--phoenix-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease-out);
}

.process__step:hover .process__step-number {
  background: var(--phoenix-blue);
  color: var(--white);
}

.process__step h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== Contact ========== */
.contact {
  position: relative;
  background: var(--text-primary);
  color: var(--text-on-dark);
  padding: var(--section-padding) 0;
}

.contact__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.contact__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.92), rgba(19, 79, 122, 0.85));
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact .section__tag { color: var(--organic-gold); }
.contact .section__tag::before,
.contact .section__tag::after { background: var(--organic-gold); }
.contact .section__title { color: var(--white); }

.contact__text {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail strong {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact__detail span,
.contact__detail a {
  font-size: 1rem;
  color: var(--white);
}

.contact__detail a:hover {
  color: var(--phoenix-blue-light);
}

/* Contact Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-content: start;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form__group { position: relative; }
.form__group--full { grid-column: 1 / -1; }

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--phoenix-blue-light);
}

.form__group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.6875rem;
  color: var(--phoenix-blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__form .btn {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--text-primary);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(10);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0;
}

.footer__links a:hover { color: var(--phoenix-blue-light); }

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer__contact a { color: rgba(255, 255, 255, 0.5); }
.footer__contact a:hover { color: var(--phoenix-blue-light); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ========== Scroll Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .about__grid,
  .production__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cultivation__grid,
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    align-items: flex-start;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }

  .nav__menu.active { right: 0; }

  .nav__menu .nav__link {
    color: var(--text-secondary) !important;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    width: 100%;
  }

  .nav__menu .nav__link:hover { color: var(--phoenix-blue) !important; }

  .nav__menu .nav__lang {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav__menu .nav__lang-btn {
    background: var(--off-white);
    border-color: var(--light-200);
    color: var(--text-secondary);
  }

  .nav__lang-menu {
    right: auto;
    left: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .cultivation__grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

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

  .stats__grid { flex-wrap: wrap; gap: 2rem; }
  .stats__divider { display: none; }
  .stats__item { flex: 1 1 40%; }

  .contact__form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .footer__grid { grid-template-columns: 1fr; }

  .about__images {
    grid-template-columns: 1fr;
  }

  .about__img--main,
  .about__img--secondary { height: 240px; }

  .about__highlights { flex-direction: column; gap: 1.5rem; }

  .production__specs { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .cultivation__hero { height: 40vh; min-height: 300px; }
}

@media (max-width: 480px) {
  .stats__item { flex: 1 1 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}

/* Honeypot — hidden from humans, visible to bots */
.form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  max-width: 960px;
  margin: 0 auto;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  flex: 1 1 280px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  letter-spacing: 0.03em;
}

.cookie-banner__link:hover { color: var(--white); }

.cookie-banner__btn {
  background: var(--phoenix-blue);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.cookie-banner__btn:hover {
  background: var(--phoenix-blue-dark);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner__inner { gap: 0.75rem; }
  .cookie-banner__actions { width: 100%; justify-content: space-between; }
}