:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-soft: #f8f4ec;
  --text: #1f2a23;
  --muted: #607067;
  --primary: #0f6b5f;
  --primary-deep: #0a4f46;
  --accent: #c98b3f;
  --accent-soft: #f0d7b6;
  --line: rgba(15, 54, 49, 0.12);
  --shadow-lg: 0 30px 80px rgba(14, 42, 38, 0.14);
  --shadow-md: 0 18px 45px rgba(14, 42, 38, 0.12);
  --shadow-sm: 0 10px 25px rgba(14, 42, 38, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 139, 63, 0.12), transparent 32%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

body.is-english {
  font-family: "Manrope", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -48px;
  z-index: 2000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  display: inline-block;
}

.icon-inline {
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 241, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(14, 42, 38, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  color: var(--text);
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.lang-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta,
.lang-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-cta {
  background: rgba(15, 107, 95, 0.1);
  color: var(--primary);
}

.nav-cta:hover,
.lang-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.lang-btn {
  min-width: 64px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(15, 107, 95, 0.08);
  border: 1px solid rgba(15, 107, 95, 0.08);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 84px);
}

.hero-video,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-backdrop {
  background:
    linear-gradient(115deg, rgba(6, 28, 25, 0.84) 15%, rgba(6, 28, 25, 0.54) 45%, rgba(6, 28, 25, 0.76) 100%),
    linear-gradient(180deg, rgba(201, 139, 63, 0.1), transparent);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 40px;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f6e2c8;
  font-size: 0.92rem;
  font-weight: 800;
}

.section .eyebrow,
.section-title .eyebrow,
.contact-section .eyebrow {
  background: rgba(201, 139, 63, 0.12);
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.02;
  max-width: 12ch;
}

.hero p {
  max-width: 62ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #1d1a17;
  box-shadow: 0 16px 30px rgba(201, 139, 63, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #d9994a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.btn-secondary.dark {
  background: rgba(15, 107, 95, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 107, 95, 0.14);
}

.btn-secondary.soft-dark {
  background: rgba(15, 107, 95, 0.1);
  color: var(--primary);
  border: 1px solid rgba(15, 107, 95, 0.18);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.panel-stats,
.trust-item,
.feature-card,
.info-card,
.product-card,
.recipe-card,
.timeline-item,
.stat-card,
.quote-card,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.panel-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #f0d7b6;
  font-weight: 800;
}

.panel-card h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.panel-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
}

.mini-stat {
  padding: 16px 12px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  text-align: center;
}

.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.15rem;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.95);
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 800;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 100px 0;
}

.soft-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.78));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 42px;
  align-items: center;
}

.section-title,
.section-heading {
  max-width: 760px;
}

.section-title {
  margin: 0 auto 42px;
  text-align: center;
}

.section-title.align-start {
  margin-inline: 0 auto;
  text-align: start;
}

.section-title h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.08;
  color: var(--primary-deep);
}

.section-title p,
.section-heading p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-card,
.info-card,
.timeline-item,
.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.feature-card h3,
.info-card h3,
.timeline-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.15rem;
}

.feature-card p,
.info-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.media-stack {
  position: relative;
}

.main-media {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 20px;
  width: min(280px, calc(100% - 40px));
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
}

.floating-card p {
  margin: 0;
  color: var(--muted);
}

.benefits-grid,
.product-grid,
.recipe-grid,
.timeline,
.stats-grid {
  display: grid;
  gap: 20px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recipe-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.recipe-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

.product-card img,
.recipe-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.product-body,
.recipe-body {
  padding: 22px;
}

.product-body h3,
.recipe-body h3 {
  margin: 0 0 8px;
  color: var(--primary-deep);
  font-size: 1.2rem;
}

.product-body p,
.recipe-body p {
  margin: 0;
  color: var(--muted);
}

.process-section {
  background:
    radial-gradient(circle at top right, rgba(201, 139, 63, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.76));
}

.location-section {
  background:
    radial-gradient(circle at bottom left, rgba(15, 107, 95, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 244, 236, 0.96));
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.location-copy h2,
.location-copy p {
  margin: 0;
}

.location-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  color: var(--primary-deep);
}

.location-copy p {
  color: var(--muted);
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.info-card.compact {
  min-height: 100%;
}

.map-card {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.map-shell {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 11;
  background: #dfe8e5;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-meta {
  padding: 16px 6px 6px;
}

.map-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-deep);
}

.map-meta p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(201, 139, 63, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 3rem);
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.quote-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  text-align: center;
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--primary-deep);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.quote-card strong {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(135deg, #0c3f39, #0f6b5f 58%, #145c53);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: center;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p {
  opacity: 0.9;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.contact-card > a,
.contact-card > div {
  display: grid;
  gap: 4px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-card > a > span,
.contact-card > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-card strong {
  color: var(--primary-deep);
  font-size: 1.05rem;
}

.ltr-content {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.site-footer {
  background: #0a2f2b;
  color: #f7f1ea;
  padding: 24px 0;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(247, 241, 234, 0.74);
}

.footer-link {
  color: #f0d7b6;
  font-weight: 800;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 16, 0.42);
  z-index: 900;
}

.chatbot {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 1200;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 20px 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #145c53);
  color: #fff;
  box-shadow: 0 22px 50px rgba(10, 42, 38, 0.26);
  cursor: pointer;
}

.chatbot-toggle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.chatbot-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.chatbot-panel {
  width: min(390px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 110px));
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.98);
  border: 1px solid rgba(15, 54, 49, 0.1);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.chatbot-panel[hidden] {
  display: none !important;
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, rgba(15, 107, 95, 0.1), rgba(201, 139, 63, 0.12));
  border-bottom: 1px solid rgba(15, 54, 49, 0.08);
}

.chatbot-header strong {
  display: block;
  color: var(--primary-deep);
  font-size: 1rem;
}

.chatbot-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.chatbot-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 107, 95, 0.08);
  color: var(--primary);
  cursor: pointer;
}

.chatbot-messages {
  display: grid;
  gap: 12px;
  padding: 18px 18px 10px;
  overflow: auto;
}

.chat-message {
  display: flex;
}

.chat-message p {
  margin: 0;
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
  font-size: 0.95rem;
}

.chat-message.bot p {
  background: rgba(15, 107, 95, 0.08);
  color: var(--primary-deep);
  border-top-inline-start-radius: 8px;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message.user p {
  background: var(--primary);
  color: #fff;
  border-top-inline-end-radius: 8px;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 14px;
}

.chatbot-quick-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 107, 95, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 18px 18px;
}

.chatbot-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(15, 54, 49, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
}

.chatbot-form button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #1d1a17;
  font-weight: 800;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .section-grid,
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .stats-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: 92px;
    inset-inline-end: 20px;
    width: min(320px, calc(100vw - 40px));
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1100;
  }

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

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  html[dir="rtl"] .nav-menu ul {
    align-items: flex-end;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-shell > .nav-menu {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 44px 0 70px;
  }

  .hero-actions,
  .contact-actions,
  .location-actions,
  .feature-list,
  .panel-stats,
  .benefits-grid,
  .product-grid,
  .recipe-grid,
  .timeline,
  .stats-grid,
  .location-points,
  .trust-grid,
  .footer-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .location-actions .btn,
  .nav-cta {
    width: 100%;
  }

  .nav-shell {
    min-height: 76px;
    gap: 12px;
  }

  .brand-copy span {
    font-size: 0.78rem;
  }

  .section {
    padding: 78px 0;
  }

  .main-media {
    min-height: 360px;
  }

  .quote-card,
  .contact-card,
  .panel-card,
  .map-card {
    padding: 24px;
  }

  .map-shell {
    aspect-ratio: 1 / 1;
  }

  .chatbot {
    inset-inline: 12px;
    bottom: 12px;
    justify-items: stretch;
  }

  .chatbot-toggle {
    width: 100%;
    justify-content: center;
  }

  .chatbot-panel {
    width: 100%;
    max-height: min(72vh, 620px);
    border-radius: 24px;
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-form button,
  .chatbot-form input {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand-copy {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-btn,
  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .chat-message p {
    max-width: 100%;
  }
}
