:root {
  --honey: #f7a91d;
  --honey-2: #ffcf65;
  --brown: #4b2b1b;
  --brown-2: #21120c;
  --blue: #28789a;
  --cream: #fff8eb;
  --white: #ffffff;
  --ink: #24140e;
  --muted: #78665b;
  --line: rgba(75, 43, 27, 0.14);
  --whatsapp: #25d366;
  --shadow: 0 28px 70px rgba(46, 25, 14, 0.2);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 78px;
  padding: 12px clamp(16px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 248, 235, 0.86);
  border-bottom: 1px solid rgba(75, 43, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(36, 20, 14, 0.82);
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--honey);
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.icon-btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  color: var(--ink);
}

.btn svg,
.icon-btn svg,
.contact-cards svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #062611;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

.btn-light {
  background: #fff;
  color: var(--brown);
}

.btn-dark {
  background: var(--brown);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(75, 43, 27, 0.2);
  background: #fff;
}

.icon-btn {
  width: 44px;
  height: 44px;
  color: var(--brown);
  background: #fff;
  box-shadow: 0 8px 20px rgba(75, 43, 27, 0.08);
}

.menu-toggle {
  display: none;
}

.mobile-shade,
.mobile-drawer {
  display: none;
}

.story-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 18px max(16px, calc((100vw - var(--max)) / 2)) 14px;
  background: linear-gradient(180deg, #fffaf1 0%, #fff3dc 100%);
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story {
  flex: 0 0 auto;
  width: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brown);
  text-align: center;
}

.story span {
  position: relative;
  display: block;
  width: 86px;
  height: 116px;
  padding: 3px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--honey), var(--blue), var(--brown));
  box-shadow: 0 14px 26px rgba(75, 43, 27, 0.15);
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 3px solid #fff;
}

.story svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  fill: currentColor;
  stroke: currentColor;
}

.section-dark,
.section-cocoa {
  color: #fff;
  background: var(--brown-2);
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 110px) max(18px, calc((100vw - var(--max)) / 2)) clamp(46px, 6vw, 78px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 169, 29, 0.3), transparent 27%),
    linear-gradient(90deg, rgba(24, 12, 7, 0.84), rgba(24, 12, 7, 0.52) 46%, rgba(24, 12, 7, 0.12));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.35);
}

.hero-content p,
.seo-hero p {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.intro,
.contact,
.seo-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.intro h2,
.section-head h2,
.contact h2,
.seo-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--brown);
}

.intro p,
.section-head p,
.contact-copy p,
.seo-content p {
  font-size: 1.08rem;
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.mini-stats span {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(75, 43, 27, 0.08);
}

.mini-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--honey);
}

.lokma-stage {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 207, 101, 0.8), transparent 24%),
    linear-gradient(145deg, #fff, #ffe9b8);
  box-shadow: var(--shadow);
}

.lokma-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(75, 43, 27, 0.14);
  border-radius: 32px;
}

.lokma-hero {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(86%, 520px);
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 38px rgba(75, 43, 27, 0.25));
  animation: floatLokma 4.5s ease-in-out infinite;
}

.honey-stream {
  position: absolute;
  left: 50%;
  top: -4%;
  width: 52px;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 224, 122, 0.1), #d98105 52%, #f9b62b);
  box-shadow: 0 0 18px rgba(247, 169, 29, 0.38);
  transform: translateX(-50%);
  animation: honeyDrop 2.8s ease-in-out infinite;
}

@keyframes floatLokma {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-16px); }
}

@keyframes honeyDrop {
  0%, 100% { height: 30%; opacity: 0.78; }
  50% { height: 47%; opacity: 1; }
}

.why,
.services,
.gallery-section,
.video-section,
.areas {
  padding: clamp(76px, 10vw, 128px) max(18px, calc((100vw - var(--max)) / 2));
}

.section-cocoa {
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 169, 29, 0.24), transparent 26%),
    linear-gradient(135deg, #2b160d, #130906 65%);
}

.section-cocoa .section-head h2,
.section-cocoa .section-head p {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.why-grid,
.service-grid,
.area-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-grid article,
.service-grid article,
.area-groups article {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.service-grid article,
.area-groups article {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 18px 45px rgba(75, 43, 27, 0.08);
}

.why-grid h3,
.service-grid h3,
.area-groups h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.service-grid p,
.area-groups p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.gallery-item,
.video-card {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brown);
  box-shadow: 0 20px 38px rgba(75, 43, 27, 0.12);
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(7n + 3) {
  grid-row: span 2;
}

.gallery-item img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.video-card:hover img {
  transform: scale(1.06);
}

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

.video-card {
  min-height: 430px;
  color: #fff;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.video-card span {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(247, 169, 29, 0.88);
}

.video-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
}

.video-card strong {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  font-size: 1.1rem;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brown);
  font-weight: 750;
}

.request-form {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 850;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 43, 27, 0.18);
  border-radius: 18px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffaf1;
  outline: 0;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 4px rgba(247, 169, 29, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0 0 12px;
  color: #9d2f19;
  font-weight: 750;
}

.area-links,
.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-links a,
.local-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 760;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 120px) max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.compact-hero h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.seo-hero img {
  width: 100%;
  height: min(60vh, 620px);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.seo-content {
  align-items: start;
}

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 6, 4, 0.92);
}

.story-modal.open {
  display: flex;
}

.story-shell {
  position: relative;
  width: min(420px, calc(100vw - 90px));
  height: min(760px, calc(100vh - 60px));
}

.story-frame {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.story-frame img,
.story-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.story-progress {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 5px;
}

.story-progress span {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.story-progress i {
  display: block;
  width: var(--story-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.story-hit {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50%;
  border: 0;
  background: transparent;
}

.story-hit-left {
  left: 0;
}

.story-hit-right {
  right: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 64px max(18px, calc((100vw - var(--max)) / 2)) 28px;
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 169, 29, 0.16), transparent 30%),
    linear-gradient(145deg, #1b0d07, #0f0704 70%);
}

.site-footer img {
  width: min(100%, 260px);
  max-height: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  filter: brightness(1.2);
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
}

.site-footer strong {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #062611;
  background: var(--whatsapp);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.floating-story {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  background: linear-gradient(145deg, var(--honey), var(--blue));
  box-shadow: 0 18px 38px rgba(75, 43, 27, 0.25);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.floating-story.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-story span {
  display: block;
  width: 52px;
  height: 52px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
}

.floating-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions .btn-small,
  .header-actions .call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-shade {
    position: fixed;
    inset: 0;
    z-index: 48;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(12, 6, 4, 0.55);
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    width: min(86vw, 380px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 18px;
    transform: translateX(-105%);
    background: var(--cream);
    box-shadow: 30px 0 80px rgba(0, 0, 0, 0.25);
    transition: transform 0.28s ease;
  }

  body.menu-open .mobile-shade {
    visibility: visible;
    opacity: 1;
  }

  body.menu-open .mobile-drawer {
    transform: translateX(0);
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
  }

  .drawer-head img {
    width: 170px;
  }

  .mobile-drawer nav {
    display: grid;
    gap: 4px;
  }

  .mobile-drawer nav a {
    padding: 16px 12px;
    border-radius: 18px;
    color: var(--brown);
    font-size: 1.14rem;
    font-weight: 850;
  }

  .mobile-drawer nav a:hover {
    background: #fff;
  }

  .drawer-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
  }

  .intro,
  .contact,
  .seo-content,
  .seo-hero {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .service-grid,
  .area-groups,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 146px;
  }

  .story-rail {
    padding-top: 14px;
  }

  .story,
  .story span {
    width: 72px;
  }

  .story span {
    height: 100px;
    border-radius: 24px;
  }

  .story img {
    border-radius: 20px;
  }

  .hero {
    min-height: 620px;
    padding-top: 72px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(24, 12, 7, 0.28), rgba(24, 12, 7, 0.84) 58%, rgba(24, 12, 7, 0.95));
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.5rem);
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-actions {
    width: 100%;
  }

  .intro,
  .contact,
  .seo-content {
    padding: 64px 16px;
  }

  .mini-stats,
  .form-row,
  .why-grid,
  .service-grid,
  .area-groups,
  .video-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .lokma-stage {
    min-height: 420px;
  }

  .why,
  .services,
  .gallery-section,
  .video-section,
  .areas {
    padding: 64px 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 12px;
  }

  .video-card {
    min-height: 390px;
  }

  .story-shell,
  .story-frame {
    width: min(410px, calc(100vw - 28px));
    height: min(720px, calc(100vh - 112px));
  }

  .floating-story,
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 16px;
  }

  .floating-story {
    left: 16px;
  }

  .floating-whatsapp {
    right: 16px;
  }

  .floating-story span {
    width: 46px;
    height: 46px;
  }
}
