* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #f8f4e8;
  color: #1f2430;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

img {
  width: 100%;
  display: block;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #f8f4e8;
  border-bottom: 1px solid rgba(31, 36, 48, 0.12);
  padding: 16px 0;
}

.navbar .container {
  max-width: 1240px;
  position: relative;
}

.navbar-brand {
  color: #1f2430 !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  white-space: nowrap;
}

.navbar-toggler {
  border: 2px solid #1f2430;
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 24px !important;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .navbar-nav .nav-link {
    color: #1f2430 !important;
    font-size: 12px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #b9834b !important;
  }
}

@media (max-width: 1199px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
    margin-left: auto;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }

  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 22px;
    border-radius: 24px;
    background: #f8f4e8;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .navbar-nav .nav-item,
  .navbar-nav .nav-link,
  .navbar-nav .btn-main {
    width: 100%;
  }
}

/* BUTTONS */

.btn-main,
.btn-outline-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-main {
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #1f2430 0%, #4d3529 45%, #b9834b 100%);
  box-shadow: 0 14px 30px rgba(31, 36, 48, 0.25);
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(31, 36, 48, 0.35);
}

.btn-outline-main {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline-main:hover {
  background: linear-gradient(135deg, #b9834b 0%, #1f2430 100%);
  border-color: transparent;
  transform: translateY(-3px);
}

/* HERO */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: white;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 26px;
  font-weight: 900;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* SECTIONS */

.section-padding {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #1f2430;
}

/* ABOUT */

.about-section {
  padding: 100px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.about-label,
.article-label,
.projects-label,
.section-mini-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #777;
  margin-bottom: 16px;
}

.about-heading {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.about-text {
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

/* BRAND LOGOS */

.brands-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.brand-logo-item {
  min-height: 150px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 36, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.16);
  border-color: #b9834b;
}

.brand-logo-item img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
}

/* ARTICLE */

.article-feature-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 30px;
  background: #f5efe4;
  text-align: center;
}

.article-feature-box h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.article-feature-box p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* PERSONAL PROJECTS */

.personal-preview-grid,
.personal-projects-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.personal-preview-grid img {
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

/* SERVICES */

.service-box {
  border-top: 1px solid #ccc;
  padding: 32px 24px;
  height: 100%;
}

.service-box:hover {
  border-top-color: #b9834b;
  border-top-width: 3px;
}

.service-box h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 19px;
}

.service-box p {
  color: #666;
  line-height: 1.7;
}

/* CONSULTATION */

.consultation-box {
  background: #fffaf0;
  padding: 60px 30px;
  border: 1px solid rgba(31, 36, 48, 0.14);
  text-align: center;
  border-radius: 26px;
}

.contact-email {
  border: 1px solid #252943;
  color: #252943 !important;
  background: transparent;
}

.contact-email:hover {
  background: linear-gradient(135deg, #1f2430, #b9834b);
  color: white !important;
  border-color: transparent;
}

/* BRANDS PAGE */

.brands-hero {
  background: linear-gradient(135deg, rgba(37, 41, 67, 0.9), rgba(31, 36, 48, 0.96));
  color: white;
  padding: 120px 20px;
  text-align: center;
  margin-top: 80px;
}

.brands-hero h1 {
  font-size: clamp(42px, 8vw, 72px);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}

.brand-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
}

.brand-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-detail-layout.reverse {
  direction: rtl;
}

.brand-detail-layout.reverse > * {
  direction: ltr;
}

.brand-detail-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(31, 36, 48, 0.1);
}

.brand-detail-image img {
  height: 400px;
  object-fit: cover;
}

.brand-detail-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 900;
}

.brand-category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #b9834b;
  font-weight: 850;
  margin-bottom: 20px;
}

.brand-description {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

.brand-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-tag {
  background: #fffaf0;
  color: #252943;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(37, 41, 67, 0.2);
}

.brand-image-gallery,
.vuse-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.brand-image-gallery img,
.vuse-gallery img {
  border-radius: 20px;
  object-fit: cover;
}

/* FOOTER */

footer {
  background: #1f2430;
  color: white;
  padding: 70px 0 26px;
  margin-top: 60px;
}

footer h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}

footer p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 10px;
}

footer a {
  color: white;
}

footer a:hover {
  color: #b9834b;
}

.footer-credit {
  text-align: center;
  color: #cfcfcf;
  font-size: 13px;
  margin-top: 22px;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

/* TABLET */

@media (max-width: 991px) {
  .about-layout,
  .brand-detail-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brands-logos-grid,
  .personal-preview-grid,
  .personal-projects-gallery,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personal-preview-grid img {
    height: 420px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .navbar {
    padding: 22px 0;
  }

  .navbar-brand {
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  .hero {
    min-height: calc(100vh - 90px);
    padding: 80px 18px 120px;
    align-items: center;
  }

  .hero-kicker {
    max-width: 320px;
    margin: 0 auto 18px;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 3px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.2vw, 52px);
    line-height: 0.96;
    letter-spacing: 1px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .btn-main,
  .btn-outline-main {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
  }

  .section-padding {
    padding: 58px 0;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-text {
    font-size: 15.5px;
  }

  .article-feature-box {
    padding: 40px 22px;
  }

  .brands-logos-grid,
  .personal-preview-grid,
  .personal-projects-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo-item {
    min-height: 130px;
  }

  .personal-preview-grid img {
    height: auto;
  }

  .brand-detail-image img {
    height: 280px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 92px;
    padding: 12px 16px;
    font-size: 12px;
  }
}