:root {
  --bg-dark: #0a0a0a;
  --bg-elev: #121212;
  --text: #f8f6f0;
  --muted: #b0b0b0;
  --accent: #c00;
  --accent-dark: #a30000;
  --border: #2d2d2d;
  --gap: 1.25rem;
  --btn-gradient: linear-gradient(to bottom, red, #c00);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 1rem 0;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.logo {
  height: 45px;
  width: max-content;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  position: relative;
}

nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 48px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.18s;
}

.hamburger:focus {
  outline: 2px solid rgba(255, 255, 255, 0.12);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Mobile slide menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: #0f0f0f;
  padding: 3rem 1.75rem;
  z-index: 10000;
  transition: right 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding-top: 1.25rem;
}

.mobile-menu li {
  margin-bottom: 1.25rem;
}

.mobile-menu a {
  font-size: 1.6rem;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  transition: all 0.25s;
  border: 0;
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  background-size: 100% 200%;
  background-position: 0 0;
}

.btn-outline {
  background: var(--btn-gradient);
  color: #fff;
  border-radius: 8px;
  padding: 0.65rem 1.3rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.02);
  mix-blend-mode: normal;
  opacity: 0.98;
  filter: saturate(0.95);
}

.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 0 100%;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
  transform: translateY(-3px);
  background-position: 0 100%;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero > div:not(.hero-video-bg) {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s forwards;
}

.hero p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

.hero .hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: 2;
}

.scroll-ind span {
  display: block;
  width: 26px;
  height: 26px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  40% {
    transform: translateY(-10px) rotate(45deg);
  }

  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  background: var(--bg-elev);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about img {
  width: 99%;
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.about-text h2 {
  font-size: 34px;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.signature {
  font-style: italic;
  color: var(--accent);
  margin: 0.5rem 0;
}

.section-title {
  font-family: "Bebas Neue";
  font-size: 34px;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-elev);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 1.25rem;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* youtube videos row */
.videos-row {
  padding-bottom: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-thumb {
  min-width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #0e0e0e;
  position: relative;
}

.video-thumb > iframe {
  width: 100%;
  height: 100% !important;
  border: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid #111;
}

.ytp-chrome-top-buttons {
  display: none !important;
}

.ytmVideoInfoVideoTitle {
  font-weight: 600 !important;
  font-size: 14px !important;
}

/* gallery / cafe */
.three-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.three-grid .img-block {
  border-radius: 10px;
  overflow: hidden;
}

.three-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* story section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.story-grid .story-para h2 {
  font-size: 34px;
  margin-bottom: 1rem;
}

.story-grid .story-img img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  border-radius: 10px;
}

/* clients slider */
.clients-wrap {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  padding: 2.5rem 0;
}

.clients-slider {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  animation: scrollLeft 18s linear infinite;
}

.client-item {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.client-item img {
  width: 140px;
  max-width: 100%;
  filter: grayscale(0);
  opacity: 0.95;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-track {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.community-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1505441371568-840bb1bd2c9e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 4.5rem 1rem;
}

.community-banner h2 {
  font-size: 40px;
  margin-bottom: 0.6rem;
}

.community-banner p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 1.25rem;
}

/* footer */
footer {
  background: var(--bg-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 0;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.footer-col p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elev);
  color: var(--text);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.social-icons a:hover svg {
  fill: #fff;
}

.newsletter-input {
  width: 100%;
  padding: 0.6rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  margin: 0.5rem 0;
}

.bottom-bar {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 520px;
    padding-top: 60px;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero > div:not(.hero-video-bg) {
    max-width: 90%;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero .hero-ctas {
    gap: 0.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid .story-para {
    order: 2;
  }

  .story-grid .story-para h2 {
    font-size: 30px;
    margin-bottom: 0.8rem;
  }

  .story-grid .story-para p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 1.2rem;
  }

  .about-text p,
  .story-para p {
    font-size: 16px;
  }

  .videos-row {
    gap: 1rem;
  }

  .video-thumb {
    height: 180px;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 0 3%;
  }

  .btn {
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
  }

  .btn-outline {
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 820px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 460px;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .hero .hero-ctas {
    gap: 0.6rem;
  }

  .card img {
    height: 160px;
  }

  .video-thumb {
    height: 160px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .about-text p,
  .story-para p {
    font-size: 15px;
  }

  .videos-row {
    gap: 0.8rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-outline {
    padding: 0.55rem 1.1rem;
  }
}

@media (max-width: 520px) {
  section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 400px;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .hero p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hero .hero-ctas {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .three-grid {
    grid-template-columns: 1fr;
  }

  .client-item img {
    width: 100px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .about-text p,
  .story-para p {
    font-size: 14px;
    line-height: 1.5;
  }

  .video-thumb {
    height: 140px;
  }

  .videos-row {
    gap: 0.6rem;
  }

  .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .btn-outline {
    padding: 0.5rem 1rem;
  }

  .story-grid .story-para h2 {
    font-size: 26px;
    margin-bottom: 0.6rem;
  }

  .story-grid .story-para p {
    font-size: 14px;
    margin-bottom: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

html,
body {
  overflow-x: hidden;
}

.clients-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-slider {
  width: 200%;
  display: flex;
  gap: 2.25rem;
  align-items: center;
  animation: scrollLeft 18s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.client-item img {
  max-width: 140px;
  width: 100%;
  height: auto;
  filter: grayscale(0);
  opacity: 0.95;
}

@media (max-width: 520px) {
  .client-item img {
    max-width: 100px;
  }
}

@media (max-width: 1100px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 70px;
  }

  .about,
  #lifestyle,
  #cafe {
    padding: 3.5rem 0;
  }

  .container {
    width: 94%;
  }

  .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .btn {
    white-space: normal;
    word-break: keep-all;
  }
}

.mobile-menu,
header,
.hero,
section,
footer {
  overflow-x: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--bg-elev);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.gallery-item:hover img {
  opacity: 0.9;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(192, 0, 0, 0.4);
}

.lightbox img {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  outline: none;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }

  .gallery-item img {
    height: 180px;
  }

  .section-title {
    font-size: 28px;
  }

  .container {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }

  .section-title {
    font-size: 26px;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .close-lightbox {
    top: 15px;
    right: 15px;
    font-size: 24px;
  }
}

/* Back link */
.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}