/* ==========================================================================
   ATELIER KAZAN - MODERN LUXURY THEME
   Bespoke Fine Jewellery & Heirloom Rejuvenation
   Crafted for Spanish Savoir-Faire & Ancient Inspiration
   ========================================================================== */

:root {
  /* Warm Alabaster Luxury Palette (Rich, Warm, High-Contrast - NOT Dark Mode, NOT Washed Out) */
  --ak-bg: #F5EFE8;
  --ak-bg-alt: #EDE5DC;
  --ak-bg-deep: #E3D9CD;
  --ak-surface: #FFFFFF;
  --ak-surface-tint: #FAF6F1;
  --ak-rose: #FAEEF2;
  --ak-rose-border: #E8D4DC;
  
  /* Deep High-Contrast Typography */
  --ak-text-primary: #151311;
  --ak-text-secondary: #3D3732;
  --ak-text-muted: #6B625B;
  --ak-text-light: #FBF8F5;
  
  /* Spanish Gold & Bronze Accents */
  --ak-gold: #9B783E;
  --ak-gold-light: #C4A468;
  --ak-gold-dark: #7A5B28;
  --ak-gold-bg: rgba(155, 120, 62, 0.08);
  
  /* Structural Borders & Shadows */
  --ak-border: #DCD3C7;
  --ak-border-subtle: #E8E1D7;
  --ak-border-strong: #BCB0A0;
  --ak-shadow-sm: 0 2px 8px rgba(21, 19, 17, 0.04);
  --ak-shadow-md: 0 6px 24px rgba(21, 19, 17, 0.07);
  --ak-shadow-lg: 0 16px 40px rgba(21, 19, 17, 0.10);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Dimensions & Transitions */
  --ak-max-width: 1240px;
  --ak-header-height: 86px;
  --ak-radius: 8px;
  --ak-radius-lg: 14px;
  --ak-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.atelier-modern-theme {
  font-family: var(--font-sans);
  background-color: var(--ak-bg);
  color: var(--ak-text-primary);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ak-transition);
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.atelier-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ak-gold);
  margin-bottom: 12px;
}

.atelier-heading-1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ak-text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.atelier-heading-2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ak-text-primary);
  margin-bottom: 18px;
}

.atelier-heading-3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ak-text-primary);
  margin-bottom: 14px;
}

.atelier-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ak-text-secondary);
  max-width: 760px;
  margin: 0 auto 30px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--ak-transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.ak-btn-primary {
  background-color: var(--ak-text-primary);
  color: #FFFFFF;
  border-color: var(--ak-text-primary);
}

.ak-btn-primary:hover {
  background-color: var(--ak-gold-dark);
  border-color: var(--ak-gold-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(21, 19, 17, 0.2);
}

.ak-btn-dark {
  background-color: #151311;
  color: #FFFFFF;
  border-color: #151311;
}

.ak-btn-dark:hover {
  background-color: var(--ak-gold);
  border-color: var(--ak-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(21, 19, 17, 0.25);
}

.ak-btn-outline {
  background-color: transparent;
  color: var(--ak-text-primary);
  border-color: var(--ak-text-primary);
}

.ak-btn-outline:hover {
  background-color: var(--ak-text-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.ak-btn-gold {
  background-color: var(--ak-gold);
  color: #FFFFFF;
  border-color: var(--ak-gold);
}

.ak-btn-gold:hover {
  background-color: var(--ak-gold-dark);
  border-color: var(--ak-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(155, 120, 62, 0.25);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.ak-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(245, 239, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ak-border-subtle);
  transition: var(--ak-transition);
}

.ak-header.scrolled {
  background-color: rgba(245, 239, 232, 0.98);
  box-shadow: var(--ak-shadow-sm);
  border-bottom-color: var(--ak-border);
}

.ak-header-inner {
  max-width: var(--ak-max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--ak-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ak-nav-left, .ak-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.ak-nav-right {
  justify-content: flex-end;
}

.ak-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.ak-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.ak-brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ak-text-primary);
  text-transform: uppercase;
}

.ak-nav-link {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ak-text-secondary);
  position: relative;
  padding: 6px 0;
}

.ak-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--ak-gold);
  transition: width 0.3s ease;
}

.ak-nav-link:hover, .ak-nav-link.active {
  color: var(--ak-text-primary);
}

.ak-nav-link:hover::after, .ak-nav-link.active::after {
  width: 100%;
}

.ak-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ak-text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Navigation Drawer */
.ak-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: #FAF6F1;
  box-shadow: -6px 0 28px rgba(0,0,0,0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ak-mobile-drawer.open {
  right: 0;
}

.ak-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.ak-mobile-nav .ak-nav-link {
  font-size: 0.92rem;
  letter-spacing: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ak-border-subtle);
}

.ak-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 19, 17, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ak-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HOMEPAGE & HERO SECTION
   ========================================================================== */
.ak-hero-section {
  padding: 70px 24px 85px;
  text-align: center;
  background: radial-gradient(circle at 50% 15%, #241F1B 0%, #151311 75%);
  color: #F5EFE8;
  border-bottom: 1px solid #2A2521;
  position: relative;
}

.ak-hero-container {
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-hero-section .atelier-heading-1 {
  color: #FFFFFF;
}

.ak-hero-section .atelier-lead {
  color: #CFC5BC;
}

.ak-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background-color: rgba(155, 120, 62, 0.16);
  border: 1px solid rgba(196, 164, 104, 0.35);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ak-gold-light);
  margin-bottom: 24px;
}

.ak-hero-section .ak-btn-primary {
  background-color: var(--ak-gold);
  border-color: var(--ak-gold);
  color: #FFFFFF;
}

.ak-hero-section .ak-btn-primary:hover {
  background-color: var(--ak-gold-light);
  border-color: var(--ak-gold-light);
  color: #151311;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 164, 104, 0.35);
}

.ak-hero-section .ak-btn-outline {
  background-color: transparent;
  color: #F5EFE8;
  border-color: rgba(245, 239, 232, 0.45);
}

.ak-hero-section .ak-btn-outline:hover {
  background-color: #FFFFFF;
  color: #151311;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* 3-Card Showcase Grid */
.ak-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  text-align: left;
}

.ak-showcase-card {
  background-color: #211D1A;
  border: 1px solid #36302A;
  border-radius: var(--ak-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--ak-transition);
  display: flex;
  flex-direction: column;
}

.ak-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  border-color: var(--ak-gold-light);
}

.ak-showcase-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #161311;
}

.ak-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ak-showcase-card:hover .ak-showcase-img-wrap img {
  transform: scale(1.05);
}

.ak-showcase-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ak-showcase-tag {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ak-gold-light);
  margin-bottom: 6px;
}

.ak-showcase-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ak-showcase-desc {
  font-size: 0.88rem;
  color: #BDB4AC;
  line-height: 1.6;
}

/* ==========================================================================
   AUTHENTIC FOUNDER & STORY SECTIONS
   ========================================================================== */
.ak-story-section {
  padding: 90px 24px;
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ak-story-visual {
  position: relative;
}

.ak-story-main-img {
  width: 100%;
  border-radius: var(--ak-radius);
  border: 1px solid var(--ak-border);
  box-shadow: var(--ak-shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.ak-story-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  border: 1px solid var(--ak-border);
  padding: 22px 26px;
  border-radius: var(--ak-radius);
  box-shadow: var(--ak-shadow-md);
  max-width: 280px;
}

.ak-story-badge-box p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ak-text-primary);
  margin: 0 0 6px;
}

.ak-quote-box {
  background-color: var(--ak-rose);
  border-left: 3px solid var(--ak-gold);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 var(--ak-radius) var(--ak-radius) 0;
}

.ak-quote-box p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ak-text-primary);
  line-height: 1.55;
  margin: 0 0 6px;
}

.ak-quote-author {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ak-gold-dark);
  font-weight: 600;
}

/* Two-column Content Split */
.ak-split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.ak-feature-card {
  background: var(--ak-surface);
  border: 1px solid var(--ak-border-subtle);
  border-radius: var(--ak-radius);
  padding: 36px;
  box-shadow: var(--ak-shadow-sm);
}

/* Client Testimonial Strip */
.ak-testimonial-strip {
  background-color: #FFFFFF;
  border-top: 1px solid var(--ak-border);
  border-bottom: 1px solid var(--ak-border);
  padding: 70px 24px;
  text-align: center;
}

.ak-testimonial-container {
  max-width: 820px;
  margin: 0 auto;
}

.ak-testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ak-text-primary);
  margin-bottom: 16px;
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.ak-insta-section {
  padding: 80px 24px;
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ak-border);
  margin-bottom: 30px;
}

.ak-insta-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ak-insta-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ak-gold);
}

.ak-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ak-insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--ak-bg-alt);
  display: block;
}

.ak-insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ak-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 19, 17, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ak-insta-tile:hover img {
  transform: scale(1.08);
}

.ak-insta-tile:hover .ak-insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.ak-gallery-section {
  padding: 60px 24px 90px;
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ak-gallery-card {
  background: var(--ak-surface);
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius);
  overflow: hidden;
  box-shadow: var(--ak-shadow-sm);
  cursor: pointer;
  transition: var(--ak-transition);
  display: flex;
  flex-direction: column;
}

.ak-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ak-shadow-md);
  border-color: var(--ak-gold);
}

.ak-gallery-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ak-bg-alt);
  position: relative;
}

.ak-gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ak-gallery-card:hover .ak-gallery-card-img img {
  transform: scale(1.06);
}

.ak-gallery-card-caption {
  padding: 16px 18px;
  background: #FFFFFF;
  border-top: 1px solid var(--ak-border-subtle);
}

.ak-gallery-card-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--ak-text-primary);
}

.ak-gallery-card-caption p {
  font-size: 0.8rem;
  color: var(--ak-text-secondary);
  line-height: 1.5;
}

/* Native HTML5 Dialog Lightbox */
.ak-lightbox-dialog {
  border: none;
  border-radius: var(--ak-radius-lg);
  padding: 0;
  max-width: 900px;
  width: 92vw;
  background: #FFFFFF;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  margin: auto;
  overflow: hidden;
}

.ak-lightbox-dialog::backdrop {
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(8px);
}

.ak-lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ak-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--ak-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ak-text-primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ak-transition);
}

.ak-lightbox-close:hover {
  background: var(--ak-text-primary);
  color: #FFFFFF;
}

.ak-lightbox-img-wrap {
  width: 100%;
  max-height: 65vh;
  background: #151311;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-lightbox-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.ak-lightbox-footer {
  padding: 20px 24px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ak-border-subtle);
  gap: 16px;
}

/* ==========================================================================
   CONTACT FORM & DETAILS
   ========================================================================== */
.ak-contact-section {
  padding: 70px 24px 100px;
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.ak-contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius);
  padding: 40px;
  box-shadow: var(--ak-shadow-sm);
}

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

.ak-form-group {
  margin-bottom: 20px;
}

.ak-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ak-text-secondary);
  margin-bottom: 6px;
}

.ak-input, .ak-select, .ak-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ak-text-primary);
  background-color: #FAF8F5;
  border: 1px solid var(--ak-border);
  border-radius: 4px;
  transition: var(--ak-transition);
  outline: none;
}

.ak-input:focus, .ak-select:focus, .ak-textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--ak-gold);
  box-shadow: 0 0 0 3px rgba(155, 120, 62, 0.15);
}

.ak-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ak-contact-detail-card {
  background: #FFFFFF;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--ak-shadow-sm);
}

.ak-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--ak-rose);
  border: 1px solid var(--ak-rose-border);
  color: var(--ak-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ak-footer {
  background-color: #151311;
  color: #BDB4AC;
  padding: 70px 24px 30px;
  margin-top: auto;
  border-top: 1px solid #2B2622;
}

.ak-footer-container {
  max-width: var(--ak-max-width);
  margin: 0 auto;
}

.ak-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2B2622;
}

.ak-footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.ak-footer-title {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.ak-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ak-footer-link {
  color: #A69E96;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.ak-footer-link:hover {
  color: var(--ak-gold-light);
}

.ak-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  font-size: 0.8rem;
  color: #7A726B;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .ak-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ak-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .ak-nav-left, .ak-nav-right {
    display: none;
  }
  .ak-mobile-toggle {
    display: block;
  }
  .ak-story-grid {
    grid-template-columns: 1fr;
  }
  .ak-split-feature {
    grid-template-columns: 1fr;
  }
  .ak-contact-grid {
    grid-template-columns: 1fr;
  }
  .ak-showcase-grid {
    grid-template-columns: 1fr;
  }
  .ak-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ak-form-row {
    grid-template-columns: 1fr;
  }
  .ak-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-header-inner {
    padding: 0 16px;
  }
  .ak-story-badge-box {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }
}

/* ==========================================================================
   WHATSAPP STICKY FLOATING BUTTON
   ========================================================================== */
.ak-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.ak-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.ak-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background-color: #151311;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.ak-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #151311;
}

.ak-whatsapp-btn:hover .ak-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .ak-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .ak-whatsapp-tooltip {
    display: none;
  }
}
