:root {
  --color-1: #D2CAC8;
  --color-2: #010000;
  --color-3: #A3A2A0;
  --color-4: #DBD1D0;

  --white: #ffffff;
  --soft-white: #fbf8f7;
  --black: #010000;
  --muted: #6f6a68;
  --border: rgba(1, 0, 0, 0.1);

  --lebanon-red: #D2CAC8;
  --lebanon-green: #010000;
  --lebanon-white: #A3A2A0;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-soft: 0 24px 70px rgba(1, 0, 0, 0.10);
  --shadow-strong: 0 28px 95px rgba(1, 0, 0, 0.20);

  --container: min(1160px, calc(100vw - 40px));
  --section: clamp(70px, 8vw, 130px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

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

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

p {
  color: var(--muted);
  margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  z-index: 9999;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: var(--section) 0;
  position: relative;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 850px;
}

.align-center {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--color-1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}



.mini-flag {
  width: 44px;
  height: 24px;
  border-radius: 6px;
  background:
    linear-gradient(to bottom,
      var(--lebanon-red) 0 25%,
      var(--lebanon-white) 25% 75%,
      var(--lebanon-red) 75% 100%);
  box-shadow: inset 0 0 0 1px rgba(1, 0, 0, 0.08);
  position: relative;
}

.mini-flag::after {
  content: "◆";
  color: var(--lebanon-green);
  font-size: 11px;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.flag-line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 999px;
  overflow: hidden;
  width: 160px;
  height: 8px;
}

.flag-line span:nth-child(1) { background: var(--lebanon-red); }
.flag-line span:nth-child(2) { background: var(--lebanon-white); }
.flag-line span:nth-child(3) { background: var(--lebanon-green); }

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(1, 0, 0, 0.18);
}

.btn-primary:hover {
  background: var(--lebanon-red);
  box-shadow: 0 18px 42px rgba(237, 28, 36, 0.26);
}

.btn-outline {
  border: 1px solid rgba(1, 0, 0, 0.16);
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.btn-large {
  min-height: 58px;
  padding-inline: 1.6rem;
}

.btn-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.text-link {
  font-weight: 900;
  border-bottom: 2px solid var(--lebanon-red);
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

/* Navbar */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 280ms ease, box-shadow 280ms ease, padding 280ms ease;
}

.navbar {
  width: min(1260px, calc(100vw - 34px));
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: min-height 280ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 45px rgba(1, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .navbar {
  color: var(--black);
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1002;
  margin: 2px;
}

.brand-logo {
  width: 200px;
  height: auto;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
}


.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.brand-text small {
  opacity: 0.72;
  font-weight: 700;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 800;
  font-size: 0.95rem;
  opacity: 0.78;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--lebanon-red);
  transition: width 220ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .icon-link {
  background: var(--soft-white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url("/images/hero-lebanese.svg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(237, 28, 36, 0.42), transparent 28%),
    radial-gradient(circle at 14% 75%, rgba(0, 122, 61, 0.38), transparent 25%),
    linear-gradient(90deg, rgba(1, 0, 0, 0.83), rgba(1, 0, 0, 0.45) 55%, rgba(1, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  align-items: center;
  text-align: center;
  justify-content: center;
}


.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.hero-card {
  margin-top: 3rem;
  width: min(520px, 100%);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--lebanon-red);
}

.hero-card span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 34px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: grid;
  justify-content: center;
  padding-top: 10px;
}

.scroll-hint span {
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  90% { transform: translateY(26px); opacity: 0; }
  100% { opacity: 0; }
}

/* General sections */
.split-grid {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.stats-row div,
.process-card,
.menu-card,
.service-card,
.form-card,
.contact-form,
.contact-panel,
.success-card {
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stats-row div {
  padding: 1.2rem;
}

.stats-row strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.stats-row span {
  color: var(--muted);
  font-weight: 700;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 12px solid var(--white);
  object-fit: cover;
}

.image-card-main {
  width: 82%;
  margin-left: auto;
}

.image-card-float {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 48%;
}

.floating-badge {
  position: absolute;
  right: 6%;
  bottom: 8%;
  padding: 1.1rem 1.25rem;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.floating-badge span {
  display: block;
  font-weight: 900;
  font-size: 1.3rem;
}

.floating-badge small {
  color: var(--color-1);
  font-weight: 800;
}

/* Photo hover cards */
.photo-hover-section {
  background: linear-gradient(180deg, var(--white), var(--soft-white));
}

.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.photo-card {
  min-height: 470px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 600ms ease;
}

.photo-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(1, 0, 0, 0.88));
  transform: translateY(74px);
  transition: transform 320ms ease;
}

.photo-card-overlay p,
.photo-card-overlay span {
  color: rgba(255, 255, 255, 0.82);
}

.photo-card-overlay span {
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.photo-card:hover img {
  transform: scale(1.1);
}

.photo-card:hover .photo-card-overlay {
  transform: translateY(0);
}

/* Parallax */
.parallax-banner,
.page-hero,
.form-hero {
  position: relative;
  overflow: hidden;
}

.parallax-banner {
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.lebanon-parallax {
  background-image:
    linear-gradient(90deg, rgba(1, 0, 0, 0.78), rgba(1, 0, 0, 0.25)),
    url("/images/breads.jpeg");
}

.red-parallax {
  background-image:
    linear-gradient(90deg, rgba(237, 28, 36, 0.72), rgba(1, 0, 0, 0.55)),
    url("/images/breads.jpeg");
}

.parallax-content {
  max-width: 780px;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.84);
}

.parallax-content.narrow {
  max-width: 900px;
}

/* Flip cards */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.flip-card {
  min-height: 310px;
  perspective: 1100px;
  outline: none;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner,
.flip-card:focus .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.flip-front {
  background: var(--soft-white);
}

.flip-front i {
  color: var(--lebanon-red);
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.flip-back {
  background: var(--black);
  color: var(--white);
  transform: rotateY(180deg);
}

.flip-back p {
  color: rgba(255, 255, 255, 0.76);
}

.flip-back a {
  color: var(--color-1);
  font-weight: 900;
}

/* 3D cube */
.cube-section {
  background:
    radial-gradient(circle at 18% 40%, rgba(237, 28, 36, 0.09), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(0, 122, 61, 0.10), transparent 28%),
    var(--soft-white);
}

.cube-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.food-cube {
  width: 260px;
  height: 260px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 13s linear infinite;
}

.food-cube:hover {
  animation-play-state: paused;
}

.cube-face {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(1, 0, 0, 0.08);
  box-shadow: 0 30px 80px rgba(1, 0, 0, 0.16);
  display: grid;
  place-items: center;
  backdrop-filter: blur(18px);
}

.cube-face img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(1, 0, 0, 0.18));
}

.cube-front { transform: translateZ(130px); }
.cube-back { transform: rotateY(180deg) translateZ(130px); }
.cube-right { transform: rotateY(90deg) translateZ(130px); }
.cube-left { transform: rotateY(-90deg) translateZ(130px); }
.cube-top { transform: rotateX(90deg) translateZ(130px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(130px); }

@keyframes rotateCube {
  from { transform: rotateX(-16deg) rotateY(0deg); }
  to { transform: rotateX(-16deg) rotateY(360deg); }
}

/* CTA */
.cta-section {
  padding-top: 0;
}

.cta-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(1, 0, 0, 0.94), rgba(1, 0, 0, 0.78)),
    url("/images/cta-bg.svg") center/cover;
  color: var(--white);
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-strong);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

/* Page hero */
.page-hero,
.form-hero {
  min-height: 64vh;
  display: grid;
  align-items: center;
  color: var(--white);
  padding-top: 95px;
}

.parallax-page-hero {
  background:
    linear-gradient(90deg, rgba(1, 0, 0, 0.78), rgba(1, 0, 0, 0.35)),
    var(--hero-image) center/cover no-repeat;
  background-attachment: fixed;
}

.simple-page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(237, 28, 36, 0.22), transparent 34%),
    linear-gradient(135deg, var(--black), #2a2423);
}

.page-hero p,
.form-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

/* Services */
.service-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.service-cards {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

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

.service-card > div {
  padding: 1.7rem;
}

.service-card i {
  color: var(--lebanon-red);
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.service-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: var(--shadow-strong);
}

.process-section {
  background: var(--soft-white);
}

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

.process-card {
  padding: 1.6rem;
}

.process-card span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--white);
  background: var(--black);
  margin-bottom: 1.2rem;
}

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

.menu-card {
  padding: 1.1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  min-height: 290px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--soft-white);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item span,
.gallery-item i {
  position: absolute;
  z-index: 2;
}

.gallery-item span {
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 900;
  color: var(--white);
  background: rgba(1, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.gallery-item i {
  right: 1rem;
  top: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  transform: scale(0.82);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

.gallery-item:hover i {
  opacity: 1;
  transform: scale(1);
}

.video-gallery-section {
  background: var(--soft-white);
}

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

.video-placeholder {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--black);
  color: var(--white);
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
  transition: transform 500ms ease;
}

.video-placeholder > div {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(1, 0, 0, 0.88));
}

.video-placeholder i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--lebanon-red);
  margin-bottom: 1rem;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.78);
}

.video-placeholder:hover img {
  transform: scale(1.08);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
}

.contact-panel,
.contact-form,
.success-card,
.form-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-list a {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 220ms ease, border-color 220ms ease;
}

.contact-list a:hover {
  transform: translateX(6px);
  border-color: var(--lebanon-red);
}

.contact-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
}

.contact-list span {
  display: grid;
  color: var(--muted);
}

.contact-list strong {
  color: var(--black);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(1, 0, 0, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--lebanon-red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.10);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.map-placeholder {
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(1, 0, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(210, 202, 200, 0.5), rgba(255, 255, 255, 0.92)),
    url("/images/map-pattern.svg") center/cover;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--lebanon-red);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 110px;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--soft-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question i {
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding: 0 1.4rem 1.3rem;
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.local-seo-section {
  background: var(--soft-white);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.keyword-cloud span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 800;
}

/* Forms */
.form-hero {
  min-height: 55vh;
  background:
    linear-gradient(135deg, rgba(1, 0, 0, 0.86), rgba(1, 0, 0, 0.58)),
    url("/images/form-hero.svg") center/cover;
}

.success-hero {
  background:
    linear-gradient(135deg, rgba(0, 122, 61, 0.82), rgba(1, 0, 0, 0.72)),
    url("/images/form-hero.svg") center/cover;
}

.form-progress {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.form-progress a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.form-progress span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.form-progress .current {
  background: var(--white);
  color: var(--black);
}

.form-progress .done {
  border-color: rgba(0, 122, 61, 0.52);
}

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

.checkbox-grid label,
.privacy-check {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
}

.checkbox-grid input,
.privacy-check input,
.select-card input {
  width: auto;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

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

.select-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--soft-white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.select-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.select-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.select-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.select-card strong {
  font-size: 1.05rem;
}

.select-card small {
  color: var(--muted);
  line-height: 1.4;
}

.select-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--white);
  transform: scale(0.8);
  transition: transform 200ms ease, background 200ms ease;
}

.select-card:has(input:checked),
.select-card.selected {
  border-color: var(--lebanon-red);
}

.select-card:has(input:checked) .select-check,
.select-card.selected .select-check {
  background: var(--lebanon-red);
  transform: scale(1);
}

.form-card.spaced {
  margin-top: 1rem;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0;
}

.summary-list div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.summary-list strong {
  color: var(--black);
}

.summary-list span {
  color: var(--muted);
}

.success-card i {
  font-size: 3rem;
  color: var(--lebanon-green);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  padding-top: 90px;
}

.footer-waves {
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background:
    linear-gradient(90deg,
      var(--lebanon-red) 0 33.33%,
      var(--lebanon-white) 33.33% 66.66%,
      var(--lebanon-green) 66.66% 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 60px;
}

.footer-brand img {
  width: auto;
  height: 86px;
  border-radius: 16px;
  background: transparent;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-list i {
  color: var(--color-1);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}


.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}


.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1080px) {

  .hero-lead {
    display: none;
  }
  .nav-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background:
      radial-gradient(circle at 80% 0, rgba(237, 28, 36, 0.22), transparent 35%),
      linear-gradient(135deg, rgba(1, 0, 0, 0.98), rgba(1, 0, 0, 0.92));
    color: var(--white);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2rem;
    padding: 90px 28px 34px;
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  }

  .menu-open .nav-panel {
    transform: translateX(0);
  }

  .menu-open .site-header,
  .menu-open .navbar {
    color: var(--white);
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links a {
    font-size: clamp(1.8rem, 8vw, 4rem);
    letter-spacing: -0.06em;
    opacity: 1;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .split-grid,
  .service-layout,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .sticky-heading,
  .faq-aside {
    position: static;
  }

  .photo-card-grid,
  .process-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flip-grid,
  .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card {
    grid-template-columns: 180px 1fr;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .parallax-banner,
  .parallax-page-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 26px, 1160px);
  }

  body {
    line-height: 1.65;
  }

  .navbar {
    min-height: 76px;
    width: min(100vw - 24px, 1260px);
  }

  .site-header.scrolled .navbar {
    min-height: 66px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    align-items: flex-start;
  }

  .stats-row,
  .photo-card-grid,
  .flip-grid,
  .process-grid,
  .menu-grid,
  .gallery-grid,
  .video-grid,
  .selection-grid,
  .checkbox-grid,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .photo-card,
  .video-placeholder {
    min-height: 340px;
  }

  .image-stack {
    min-height: 430px;
  }

  .image-card-main {
    width: 92%;
  }

  .image-card-float {
    width: 58%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .cube-stage {
    min-height: 400px;
  }

  .food-cube,
  .cube-face {
    width: 190px;
    height: 190px;
  }

  .cube-front { transform: translateZ(95px); }
  .cube-back { transform: rotateY(180deg) translateZ(95px); }
  .cube-right { transform: rotateY(90deg) translateZ(95px); }
  .cube-left { transform: rotateY(-90deg) translateZ(95px); }
  .cube-top { transform: rotateX(90deg) translateZ(95px); }
  .cube-bottom { transform: rotateX(-90deg) translateZ(95px); }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Updated top navbar and floating WhatsApp button === */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  width: 100%;
  color: var(--white);
  background: transparent;
  transition: background 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease, color 280ms ease;
}

.site-header.scrolled {
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(1, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.top-navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 280ms ease, background 280ms ease;
}

.site-header.scrolled .top-navbar {
  border-bottom-color: rgba(1, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.28);
}

.top-navbar-inner {
  width: min(1260px, calc(100vw - 34px));
  min-height: 38px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.top-location,
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  opacity: 0.9;
}

.top-location i,
.top-link i {
  color: var(--color-1);
}

.site-header.scrolled .top-location i,
.site-header.scrolled .top-link i {
  color: var(--lebanon-red);
}

.top-quicklinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-link {
  transition: transform 220ms ease, opacity 220ms ease, color 220ms ease;
}

.top-link:hover,
.top-link:focus-visible {
  opacity: 1;
  color: var(--color-1);
  transform: translateY(-1px);
}

.site-header.scrolled .top-link:hover,
.site-header.scrolled .top-link:focus-visible {
  color: var(--lebanon-red);
}

.navbar {
  width: min(1260px, calc(100vw - 34px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr) minmax(150px, 240px);
  align-items: center;
  gap: 1rem;
  color: inherit;
  transition: min-height 280ms ease;
}

.site-header.scrolled .navbar {
  color: var(--black);
  min-height: 72px;
}

.brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
  margin: 0;
}

.brand-logo {
  width: clamp(128px, 13vw, 200px);
  height: auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  border: 0;
  overflow: visible;
  transition: width 280ms ease, filter 280ms ease, transform 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
}

.site-header.scrolled .brand-logo {
  width: clamp(112px, 11vw, 170px);
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  grid-column: 2 / 4;
  display: contents;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 900;
  font-size: 0.95rem;
  opacity: 0.86;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 50%;
  bottom: -9px;
  background: linear-gradient(90deg, var(--lebanon-red), var(--lebanon-green));
  transition: width 220ms ease, left 220ms ease;
}

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

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-cta {
  white-space: nowrap;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 35px rgba(1, 0, 0, 0.14);
}

.site-header.scrolled .nav-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.nav-cta:hover,
.site-header.scrolled .nav-cta:hover {
  background: var(--lebanon-red);
  color: var(--white);
  border-color: var(--lebanon-red);
}

.mobile-quicklinks {
  display: none;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 960;
  min-width: 58px;
  min-height: 58px;
  padding: 0 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  background: #25D366;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.35);
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp i {
  font-size: 1.45rem;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.46);
}

.back-to-top {
  right: 20px;
  bottom: 92px;
}

@media (max-width: 1080px) {
  .top-navbar-inner {
    justify-content: center;
    min-height: 36px;
  }

  .top-location {
    display: none;
  }

  .top-quicklinks {
    width: 100%;
    justify-content: center;
    gap: clamp(0.65rem, 3vw, 1rem);
    font-size: 0.78rem;
  }

  .navbar {
    min-height: 78px;
    width: min(100vw - 24px, 1260px);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .site-header.scrolled .navbar {
    min-height: 68px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: clamp(118px, 35vw, 170px);
  }

  .menu-toggle {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid currentColor;
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1002;
  }

  .site-header.scrolled .menu-toggle {
    background: var(--soft-white);
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 1001;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    background:
      radial-gradient(circle at 80% 0, rgba(237, 28, 36, 0.24), transparent 35%),
      radial-gradient(circle at 15% 80%, rgba(0, 122, 61, 0.20), transparent 30%),
      linear-gradient(135deg, rgba(1, 0, 0, 0.98), rgba(1, 0, 0, 0.93));
    color: var(--white);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2rem;
    padding: 120px 28px 34px;
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  }

  .menu-open .nav-panel {
    transform: translateX(0);
  }

  .menu-open .site-header,
  .menu-open .navbar {
    color: var(--white);
  }

  .menu-open .top-navbar {
    opacity: 0;
    pointer-events: none;
  }

  .nav-links {
    grid-column: auto;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    justify-self: center;
  }

  .nav-links a {
    font-size: clamp(1.8rem, 8vw, 4rem);
    letter-spacing: -0.06em;
    opacity: 1;
  }

  .nav-actions {
    grid-column: auto;
    justify-self: center;
    justify-content: center;
    width: min(360px, 100%);
  }

  .nav-actions .btn {
    width: 100%;
  }

  .mobile-quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
  }

  .mobile-quicklinks a {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 1.15rem;
  }
}

@media (max-width: 720px) {
  .top-navbar {
    display: none;
  }

  .navbar {
    min-height: 74px;
  }

  .site-header.scrolled .navbar {
    min-height: 66px;
  }

  .brand-logo,
  .site-header.scrolled .brand-logo {
    width: clamp(104px, 42vw, 150px);
  }

  .hero-content {
    padding-top: 94px;
  }

  .page-hero,
  .form-hero {
    padding-top: 90px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 84px;
  }
}




/* Prevent horizontal overflow on mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* Make media never exceed screen width */
img,
video,
svg,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent long text/links from pushing layout wider */
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li {
  overflow-wrap: break-word;
  word-break: normal;
}

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

/* Containers should not exceed viewport */
.container,
section,
main,
header,
footer {
  max-width: 100%;
}

/* Mobile-specific overflow protection */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .split-grid,
  .photo-card-grid,
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-heading,
  .cta-card {
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-card .btn {
    max-width: 100%;
    white-space: normal;
  }

  .image-stack,
  .cube-stage,
  .food-cube {
    max-width: 100%;
  }

  .image-card,
  .photo-card img,
  .cube-face img {
    max-width: 100%;
  }
}