/** Shopify CDN: Minification failed

Line 448:12 Expected identifier but found whitespace
Line 448:14 Unexpected "{"
Line 448:23 Expected ":"
Line 448:50 Expected ":"
Line 979:12 Expected identifier but found whitespace
Line 979:14 Unexpected "{"
Line 979:23 Expected ":"
Line 979:50 Expected ":"
Line 1230:12 Expected identifier but found whitespace
Line 1230:14 Unexpected "{"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:kal-slidershow (INDEX:24) */
/* ============================================
   KALVIN GEORGE — HERO SLIDESHOW
   Font: Outfit (Bold / Light / Medium)
   Palette: Rich Black, Warm White, Gold Gradient
   ============================================ */

/* CORE SLIDER */
.kg-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 550px;
  background: #0D0D0D;
}

.kg-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kg-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

/* IMAGE WRAPPER */
.kg-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* OVERLAY — warm rich black tint */
.kg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.35) 0%,
    rgba(13, 13, 13, 0.15) 40%,
    rgba(13, 13, 13, 0.55) 100%
  );
  z-index: 1;
}

/* CONTENT LAYER */
.kg-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  color: #FFFFFF;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: auto;
}

.align-center { text-align: center; align-items: center; }
.align-left   { text-align: left; align-items: flex-start; }
.align-right  { text-align: right; align-items: flex-end; }

/* HEADING — Outfit Bold */
.kg-heading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--desktop-heading-size, 64px);
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* SUBHEADING — Outfit Light */
.kg-subheading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 36px 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

/* BUTTON — Outfit Medium, Gold Gradient */
.kg-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4AF37, #C5A028, #B4941E);
  color: #0D0D0D;
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kg-btn span {
  position: relative;
  z-index: 2;
  color: #0D0D0D;
}

.kg-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C5A028, #D4AF37, #C5A028);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.kg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}

.kg-btn:hover::after {
  opacity: 1;
}

/* SOCIAL ICONS */
.kg-social-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  padding: 12px 10px;
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.kg-social-icons.position-left  { left: 28px; }
.kg-social-icons.position-right { right: 28px; }

.kg-social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kg-social-icon svg {
  transition: transform 0.3s ease;
}

.kg-social-icon:hover {
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  color: #0D0D0D;
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.kg-social-icon:hover svg {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .kg-content {
    padding: 40px;
  }
  .kg-heading {
    font-size: clamp(34px, 7vw, 54px) !important;
  }
}

@media (max-width: 768px) {
  .kg-slider {
    height: 85vh;
  }

  .kg-content {
    padding: 30px 24px;
    justify-content: flex-end;
    text-align: center !important;
    align-items: center !important;
  }

  .kg-subheading {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .kg-btn {
    padding: 14px 32px;
    font-size: 12px;
    width: 100%;
    max-width: 280px;
  }

  .kg-social-icons {
    flex-direction: row;
    bottom: 24px;
    top: auto;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 32px;
    gap: 8px;
    background: rgba(13, 13, 13, 0.55);
  }

  .kg-social-icon {
    width: 34px;
    height: 34px;
  }

  .kg-social-icon svg {
    width: 14px;
    height: 14px;
  }
}
/* END_SECTION:kal-slidershow */

/* START_SECTION:kg-banner (INDEX:26) */
/* ============================================
   KALVIN GEORGE — KG BANNER (RESPONSIVE)
   ============================================ */

.kg-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0D0D0D;
}

.kg-banner__wrapper {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.kg-banner__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.kg-banner__image-container {
  width: 100%;
  line-height: 0;
}

.kg-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

/* PLACEHOLDER */
.kg-banner__placeholder {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.kg-banner__placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}

.kg-banner__placeholder-content svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.kg-banner__placeholder-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* TABLET */
@media (max-width: 768px) {
  .kg-banner__wrapper {
    min-height: 160px;
  }

  .kg-banner__placeholder {
    min-height: 160px;
  }

  .kg-banner__placeholder-content svg {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .kg-banner__placeholder-content p {
    font-size: 12px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .kg-banner__wrapper {
    min-height: 140px;
  }

  .kg-banner__placeholder {
    min-height: 140px;
  }

  .kg-banner__placeholder-content svg {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .kg-banner__placeholder-content p {
    font-size: 11px;
  }
}
/* END_SECTION:kg-banner */

/* START_SECTION:kg-faq-section (INDEX:27) */
/* ============================================
   KALVIN GEORGE — KG FAQ (PREMIUM)
   Font: Outfit, Palette: Rich Black + Gold
   ============================================ */

.kg-faq {
  background: #0D0D0D;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND TEXTURE */
.kg-faq::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.kg-faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* HEADER */
.kg-faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.kg-faq-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.kg-faq-heading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: {{ section.settings.heading_size }}px;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
}

.kg-faq-subheading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px 0;
  letter-spacing: 0.02em;
}

/* DIVIDER */
.kg-faq-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.kg-faq-divider-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.kg-faq-divider-dot {
  width: 4px;
  height: 4px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* FAQ LIST */
.kg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ ITEM */
.kg-faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.kg-faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #D4AF37, #C5A028);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kg-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.kg-faq-item.active {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.02);
}

.kg-faq-item.active::before {
  opacity: 1;
}

/* QUESTION BUTTON */
.kg-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: padding 0.3s ease;
}

/* NUMBER */
.kg-faq-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: color 0.4s ease;
}

.kg-faq-item.active .kg-faq-number {
  color: #D4AF37;
}

/* QUESTION TEXT */
.kg-faq-question-text {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  flex: 1;
  transition: color 0.3s ease;
}

.kg-faq-item:hover .kg-faq-question-text {
  color: #D4AF37;
}

.kg-faq-item.active .kg-faq-question-text {
  color: #D4AF37;
}

/* ARROW */
.kg-faq-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kg-faq-item:hover .kg-faq-arrow {
  color: #D4AF37;
}

.kg-faq-item.active .kg-faq-arrow {
  color: #D4AF37;
  transform: rotate(180deg);
}

/* ANSWER */
.kg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.kg-faq-item.active .kg-faq-answer {
  max-height: 800px;
}

.kg-faq-answer-inner {
  position: relative;
  padding: 0 24px 24px 60px;
}

.kg-faq-answer-glow {
  position: absolute;
  top: 0;
  left: 48px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}

.kg-faq-answer-content {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.015em;
}

.kg-faq-answer-content p {
  margin: 0 0 14px 0;
}

.kg-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.kg-faq-answer-content a {
  color: #D4AF37;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kg-faq-answer-content strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* CTA */
.kg-faq-cta {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.kg-faq-cta-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.kg-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4AF37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kg-faq-cta-btn svg {
  transition: transform 0.3s ease;
}

.kg-faq-cta-btn:hover {
  color: #C5A028;
  gap: 14px;
}

.kg-faq-cta-btn:hover svg {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kg-faq {
    padding: 64px 0;
  }

  .kg-faq-header {
    margin-bottom: 44px;
  }

  .kg-faq-heading {
    font-size: clamp(26px, 6vw, 36px) !important;
  }

  .kg-faq-subheading {
    font-size: 14px;
  }

  .kg-faq-question {
    padding: 18px 16px;
    gap: 12px;
  }

  .kg-faq-number {
    font-size: 11px;
  }

  .kg-faq-question-text {
    font-size: 15px;
  }

  .kg-faq-answer-inner {
    padding: 0 16px 20px 44px;
  }

  .kg-faq-answer-glow {
    left: 32px;
    width: 70%;
  }

  .kg-faq-answer-content {
    font-size: 14px;
  }

  .kg-faq-cta {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .kg-faq-cta-text {
    font-size: 14px;
  }
}
/* END_SECTION:kg-faq-section */

/* START_SECTION:kg-grid-massonary (INDEX:28) */
/* ============================================
   KALVIN GEORGE — HORIZONTAL GALLERY STRIP
   All cards same size, centered, responsive
   ============================================ */

.kg-gallery-strip {
  background: #FAFAF7;
  padding: 50px 0;
  overflow: hidden;
}

.kg-gallery-strip-track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.kg-gallery-strip-card {
  flex: 1;
  max-width: 260px;
  min-width: 0;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.kg-gallery-strip-card:hover {
  transform: translateY(-4px);
}

.kg-gallery-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kg-gallery-strip-card:hover img {
  transform: scale(1.05);
}

.kg-gallery-strip-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.kg-gallery-strip-empty {
  width: 100%;
  height: 100%;
  background: #F5F3ED;
  border: 2px dashed rgba(0,0,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* TABLET — scrollable, cards keep size */
@media (max-width: 991px) {
  .kg-gallery-strip {
    padding: 40px 0;
  }

  .kg-gallery-strip-track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 20px;
  }

  .kg-gallery-strip-track::-webkit-scrollbar {
    display: none;
  }

  .kg-gallery-strip-card {
    flex: 0 0 220px;
    max-width: 220px;
    height: 300px;
    scroll-snap-align: start;
  }

  .kg-gallery-strip-title {
    font-size: 12px;
    padding: 16px 10px 8px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .kg-gallery-strip {
    padding: 32px 0;
  }

  .kg-gallery-strip-track {
    gap: 10px;
    padding: 0 16px;
  }

  .kg-gallery-strip-card {
    flex: 0 0 180px;
    max-width: 180px;
    height: 260px;
  }

  .kg-gallery-strip-title {
    font-size: 11px;
    padding: 14px 8px 6px;
  }
}
/* END_SECTION:kg-grid-massonary */

/* START_SECTION:kg-newsletter (INDEX:29) */
/* ============================================
   KALVIN GEORGE — KG NEWSLETTER
   Font: Outfit, Palette: Rich Black + Gold
   ============================================ */

.kg-newsletter {
  background: #0D0D0D;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.kg-newsletter::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.kg-newsletter-container {
  max-width: 1400px;
  margin: 0 auto;
}

.kg-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* IMAGE COLUMN */
.kg-newsletter-image-col {
  position: relative;
  overflow: hidden;
}

.kg-newsletter-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kg-newsletter-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.15);
}

/* FORM COLUMN */
.kg-newsletter-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
}

/* LABEL */
.kg-newsletter-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFD400;
  background: rgba(255, 212, 0, 0.08);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 212, 0, 0.15);
  align-self: flex-start;
}

/* HEADING */
.kg-newsletter-heading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: {{ section.settings.heading_size }}px;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
}

/* SUBHEADING */
.kg-newsletter-subheading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
}

/* OFFER BADGE */
.kg-newsletter-offer {
  margin-bottom: 28px;
}

.kg-newsletter-offer-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0D0D0D;
  background: #FFD400;
  padding: 8px 18px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* FORM */
.kg-newsletter-form {
  margin-bottom: 16px;
}

.kg-newsletter-input-group {
  display: flex;
  gap: 0;
  max-width: 480px;
}

.kg-newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.kg-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.kg-newsletter-input:focus {
  border-color: #FFD400;
}

.kg-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #FFD400;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D0D0D;
  cursor: pointer;
  transition: background 0.3s ease, gap 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
}

.kg-newsletter-btn:hover {
  background: #E6BE00;
  gap: 12px;
}

.kg-newsletter-btn svg {
  transition: transform 0.3s ease;
}

.kg-newsletter-btn:hover svg {
  transform: translateX(3px);
}

/* SUCCESS MESSAGE */
.kg-newsletter-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFD400;
  padding: 16px 0;
}

/* TRUST TEXT */
.kg-newsletter-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

.kg-newsletter-trust svg {
  flex-shrink: 0;
}

/* FORM ERRORS */
.kg-newsletter-form .errors {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #FF4444;
  margin-bottom: 12px;
  list-style: none;
  padding: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .kg-newsletter-grid {
    grid-template-columns: 1fr;
  }

  .kg-newsletter-image-col {
    max-height: 350px;
  }

  .kg-newsletter-form-col {
    padding: 48px 24px;
  }

  .kg-newsletter-heading {
    font-size: clamp(26px, 6vw, 36px) !important;
  }
}

@media (max-width: 576px) {
  .kg-newsletter-input-group {
    flex-direction: column;
    max-width: 100%;
  }

  .kg-newsletter-input {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    text-align: center;
  }

  .kg-newsletter-btn {
    justify-content: center;
    width: 100%;
  }

  .kg-newsletter-image-col {
    max-height: 250px;
  }

  .kg-newsletter-form-col {
    padding: 40px 20px;
    text-align: center;
  }

  .kg-newsletter-label {
    align-self: center;
  }

  .kg-newsletter-trust {
    justify-content: center;
  }
}
/* END_SECTION:kg-newsletter */

/* START_SECTION:kg-video-section (INDEX:30) */
/* ============================================
   KALVIN GEORGE — KG VIDEO SECTION
   Font: Outfit, Palette: Rich Black + Gold
   ============================================ */

.kg-video-section {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #0D0D0D;
}

.kg-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.kg-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.kg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.15) 50%,
    rgba(13, 13, 13, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 80px;
}

/* CONTENT */
.kg-video-content {
  max-width: 700px;
  text-align: left;
}

/* HEADING — Outfit Bold */
.kg-video-heading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: {{ section.settings.heading_size }}px;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
}

/* SUBHEADING — Outfit Light */
.kg-video-subheading {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px 0;
  max-width: 500px;
  letter-spacing: 0.02em;
}

/* BUTTON — Gold Gradient, Outfit Medium */
.kg-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4AF37, #FFD400, #D4AF37);
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kg-video-btn span {
  position: relative;
  z-index: 2;
  color: #0D0D0D;
}

.kg-video-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C5A028, #FFD400, #C5A028);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.kg-video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}

.kg-video-btn:hover::after {
  opacity: 1;
}

/* PLACEHOLDER */
.kg-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  margin: 20px;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.3);
  gap: 16px;
}

.kg-video-placeholder svg {
  opacity: 0.5;
}

.kg-video-placeholder p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kg-video-section {
    height: 450px;
  }

  .kg-video-overlay {
    padding: 40px 24px;
  }

  .kg-video-content {
    max-width: 100%;
    text-align: center;
  }

  .kg-video-heading {
    font-size: clamp(28px, 7vw, 48px) !important;
  }

  .kg-video-subheading {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .kg-video-btn {
    padding: 14px 32px;
    font-size: 12px;
    width: 100%;
    max-width: 280px;
  }
}
/* END_SECTION:kg-video-section */