/* ============================================
   MACORA RAJUT CUSTOM STYLESHEET (DARK MODE)
   Editorial Handmade Craft Premium Design
   ============================================ */

:root {
  --black: #0A0A0A;
  --dark-gray: #121212;
  --light-gray: #1E1E1E;
  --white: #FFFFFF;
  --ivory: #F5F5F5;
  --gold: #C5A880;
  --gold-hover: #DFCEB7;
  --text-muted: #A0A0A0;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--black);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-border {
  border-bottom: 1px solid var(--line);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.btn-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

/* HEADER & NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.site-header[data-scrolled] {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  z-index: 1001;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.brand-text {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu-footer,
.mobile-menu-footer {
  display: none;
}

.nav-menu a {
  position: relative;
  color: var(--text-muted);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--white);
}

.nav-menu a.active::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1615397349754-cfa2066a298e?auto=format&fit=crop&w=1600&q=82');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-grid {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
}

.hero-navline {
  position: absolute;
  left: clamp(1.25rem, 5vw, 2.5rem);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.hero-copy {
  max-width: 720px;
  padding-left: clamp(2rem, 6vw, 5rem);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* PARTNERS SECTION */
.partners {
  padding: 5rem 0;
  background: var(--dark-gray);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title-block h2 {
  max-width: 480px;
}

.partners-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.logo-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo-row img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: all 0.3s var(--ease);
}

.logo-row img.logo-rumah-bumn {
  height: 75px;
}

.logo-row img:hover {
  filter: brightness(0) invert(1) opacity(1);
}

/* ABOUT SECTION */
.about {
  padding: 6rem 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--line);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.about-copy h2 {
  margin-bottom: 1.5rem;
}

.about-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mini-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--gold-hover);
  background: rgba(255, 255, 255, 0.02);
}

/* CRAFT STORY */
.craft-story {
  padding: 5rem 0;
  background: var(--dark-gray);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-heading h2 {
  max-width: 560px;
}

.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-collage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(15%);
  transition: all 0.3s var(--ease);
}

.story-collage img:hover {
  filter: grayscale(0%);
}

/* PRODUCTS SECTION */
.products {
  padding: 6rem 0;
  background: var(--black);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.split-heading h2 {
  margin-top: 0.5rem;
}

.split-heading p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--dark-gray);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.05);
  border-color: var(--gold);
}

.product-card figure {
  position: relative;
  overflow: hidden;
  height: 340px;
  border-bottom: 1px solid var(--line);
}

.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover figure img {
  transform: scale(1.04);
}

.product-body {
  padding: 2rem;
}

.product-body span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.product-body h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.product-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  height: 4.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.btn-product-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.btn-product-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-product-wa:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.15);
  opacity: 1;
}

/* WHY HANDMADE */
.why {
  padding: 6rem 0;
  background: var(--dark-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2.5rem 2rem;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
}

.why-icon svg {
  width: 36px;
  height: 36px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials {
  padding: 6rem 0;
  background: var(--black);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  padding: 3rem 2rem;
  background: var(--dark-gray);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -1rem;
}

.testimonial-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

.stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-align: center;
}

.testimonial-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* SOCIAL PROOF (INSTAGRAM) */
.instagram {
  padding: 6rem 0;
  background: var(--dark-gray);
}

.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.insta-title-block {
  max-width: 640px;
}

.insta-title-block h2 {
  margin-bottom: 1rem;
}

.insta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.insta-profile-card {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  max-width: 680px;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  padding: 3px;
  background: var(--black);
  flex-shrink: 0;
}

.profile-meta {
  flex-grow: 1;
}

.profile-username-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.profile-username {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.verified-badge {
  width: 18px;
  height: 18px;
  color: #3897f0;
}

.btn-follow {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  padding: 0.4rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.btn-follow:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  opacity: 1;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.profile-stats span {
  color: var(--text-muted);
}

.profile-stats strong {
  color: var(--white);
}

.profile-bio {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.insta-post {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.insta-post:hover img {
  transform: scale(1.05);
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-stats {
  display: flex;
  gap: 1.5rem;
  color: var(--white);
}

.insta-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.insta-stat svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* LOCATION SECTION */
.location {
  padding: 6rem 0;
  background: var(--black);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.location-copy h2 {
  margin-bottom: 1.5rem;
}

.location-copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 460px;
}

.map-frame {
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 4px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* FINAL CTA */
.final-cta {
  padding: 8rem 0;
  background: var(--dark-gray);
  border-top: 1px solid var(--line);
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: var(--line);
}

.final-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 0.75rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 520px;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.footer-social-icons a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 153, 104, 0.05);
  transform: translateY(-2px);
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.footer-partners h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.footer-partners-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-partners-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: all 0.3s var(--ease);
}

.footer-partners-row img.logo-rumah-bumn {
  height: 68px;
}

.footer-partners-row img:hover {
  filter: brightness(0) invert(1) opacity(1);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom a.powered-by-brand {
  color: var(--gold);
  font-weight: 500;
}

.footer-bottom a.powered-by-brand:hover {
  color: var(--gold-hover);
  opacity: 1;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s var(--ease);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  opacity: 1;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .partners-grid,
  .about-grid,
  .story-grid,
  .split-heading,
  .insta-header,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-image {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .insta-header {
    align-items: flex-start;
  }

  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-gray);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--line);
    overflow-y: auto;
    visibility: hidden;
    transition: right 0.4s var(--ease), visibility 0.4s var(--ease);
  }

  .nav-menu.active {
    right: 0;
    visibility: visible;
  }

  .nav-menu-footer,
  .mobile-menu-footer {
    display: block;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
  }

  .nav-menu .nav-menu-footer a,
  .nav-menu .mobile-menu-footer a {
    font-size: 0.75rem !important;
    font-family: var(--font-sans) !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: color 0.3s var(--ease);
  }

  .nav-menu .nav-menu-footer a:hover,
  .nav-menu .mobile-menu-footer a:hover {
    color: var(--white) !important;
  }

  .nav-menu a {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--white);
  }

  .nav-menu a::after {
    display: none;
  }

  .shell {
    padding: 0 2rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-navline {
    display: none;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .partners,
  .about,
  .craft-story,
  .products,
  .why,
  .testimonials,
  .instagram,
  .location,
  .final-cta {
    padding: 4.5rem 0;
  }

  .story-collage {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title-block.center {
    margin-bottom: 2.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-frame iframe {
    height: 320px;
  }

  .logo-row {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
  }

  .logo-row img {
    height: 48px;
    max-width: 180px;
  }

  .logo-row img.logo-rumah-bumn {
    height: 80px;
  }

  .footer-partners-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  /* Responsive Instagram Profile Card */
  .insta-profile-card {
    padding: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .profile-username-row {
    justify-content: center;
  }

  .profile-stats {
    justify-content: center;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .insta-feed-grid {
    grid-template-columns: 1fr;
  }

  .product-body {
    padding: 1.5rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
