/* ============================================
   FIRDAUS - The Sultan's Standard
   Premium Pistachio Baklava | Mumbai
   Static CSS - All styles combined
   ============================================ */

/* Font Loading */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables / Design System ---- */
:root {
  --bg-primary: #EFE8D8;
  --bg-secondary: #f6f5e8;
  --bg-subtle: #ebeade;
  --bg-dark: #2B2820;
  --firdaus-gold: #C8A55C;
  --deep-emerald: #1B4332;
  --deep-espresso: #3D2817;
  --text-primary: #2B2820;
  --text-secondary: #666666;
  --text-light: #bcbbb4;
  --text-cream: #EFE8D8;
  --interactive-base: #2B2820;
  --interactive-hover: #000000;
  --border-light: #bcbbb4;
  --border-gold: #C8A55C;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---- Typography System ---- */
.heading-hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--firdaus-gold);
}
.heading-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}
.heading-medium {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}
.heading-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}
.subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.body-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
.body-regular {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.body-small {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ---- Button System ---- */
.btn-primary {
  background: var(--firdaus-gold);
  color: var(--text-primary);
  border: 1px solid var(--firdaus-gold);
  border-radius: 0px;
  padding: 19px 32px;
  min-width: 180px;
  height: 60px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.645,.045,.355,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover {
  background: var(--interactive-base);
  color: var(--text-cream);
  border-color: var(--interactive-base);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 165, 92, 0.3);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-secondary {
  background: transparent;
  color: var(--firdaus-gold);
  border: 1px solid var(--firdaus-gold);
  border-radius: 0px;
  padding: 19px 32px;
  min-width: 160px;
  height: 56px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-secondary:hover {
  background: var(--firdaus-gold);
  color: var(--text-primary);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25%      { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
  50%      { transform: translateY(-60px) translateX(-10px); opacity: 0.8; }
  75%      { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes drawLine {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes logoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.05); }
}
@keyframes loaderFadeOut {
  to { opacity: 0; pointer-events: none; }
}

/* ---- Utility ---- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================================
   LOADER
   =========================================== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EFE8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loader-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 32px;
  animation: logoPulse 1.5s ease-in-out infinite;
}
.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(200, 165, 92, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress-bar {
  height: 100%;
  background: #C8A55C;
  transition: width 0.02s linear;
  box-shadow: 0 0 10px rgba(200, 165, 92, 0.5);
  width: 0%;
}

/* ===========================================
   HERO
   =========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #EFE8D8 0%, #f6f5e8 100%);
}
.hero-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero-image-wrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  animation: float 6s ease-in-out infinite;
}
.hero-baklava-image {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 20px 60px rgba(200, 165, 92, 0.4));
  transition: transform 0.3s ease;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, transparent 30%, rgba(239, 232, 216, 0.9) 70%);
  pointer-events: none;
}
.gold-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: #C8A55C;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }

.hero-logo {
  position: absolute;
  top: 32px; left: 40px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hero-logo:hover { transform: scale(1.1); }
.hero-logo img {
  width: 48px; height: 48px; object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.hero-content.loaded {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 600;
  color: #C8A55C;
  margin-bottom: 16px;
  letter-spacing: 12px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: #2B2820;
  margin-bottom: 32px;
  letter-spacing: 4px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.7s both;
}
.hero-cta {
  animation: fadeInUp 1s ease-out 0.9s both;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s both;
}
.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.scroll-arrow {
  width: 24px; height: 24px;
  color: #C8A55C;
  animation: pulse 2s ease-in-out infinite;
}

/* ===========================================
   BRAND STORY
   =========================================== */
.brand-story-section {
  background: #2B2820;
  color: #EFE8D8;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.brand-story-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.brand-story-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.brand-story-text {
  animation: slideInLeft 1s ease-out forwards;
}
.story-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: #C8A55C;
  margin-bottom: 40px;
  line-height: 1.2;
}
.story-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #EFE8D8;
}
.story-body p { margin-bottom: 24px; }
.story-body .emphasis {
  font-style: italic;
  font-weight: 500;
  color: #C8A55C;
}
.story-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #C8A55C;
  margin-top: 40px;
}
.brand-story-image {
  position: relative;
  animation: slideInRight 1s ease-out forwards;
}
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.brand-story-content.visible .image-frame img {
  transform: scale(1.05);
}
.image-border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid #C8A55C;
  pointer-events: none;
}

/* ===========================================
   COLLECTIONS
   =========================================== */
.collections-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #EFE8D8 0%, #f6f5e8 100%);
  position: relative;
}
.collections-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.collections-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.collections-header h2 { color: #2B2820; margin-bottom: 24px; }
.collections-subtitle {
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.collection-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}
.collections-grid.visible .collection-card {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out forwards;
}
.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(200, 165, 92, 0.2);
}
.collection-card.hero-card {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.3);
  z-index: 2;
}
.collections-grid.visible .collection-card.hero-card {
  transform: scale(1.05);
}
.collection-card.hero-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 80px rgba(27, 67, 50, 0.4);
}
.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid currentColor;
  border-radius: 0px;
  z-index: 5;
}
.card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover .card-image img {
  transform: scale(1.1);
}
.card-content {
  padding: 32px 28px;
  color: var(--card-text);
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--card-text);
}
.hero-card .card-title { color: #C8A55C; }
.card-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--card-text);
}
.card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--card-text);
  opacity: 0.9;
}
.card-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--card-price);
}
.card-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--card-text);
  opacity: 0.7;
  margin-bottom: 24px;
}
.card-content .btn-primary,
.card-content .btn-secondary {
  width: 100%;
  margin-top: 8px;
}
.hero-card .btn-primary {
  background: #C8A55C;
  color: #2B2820;
  border-color: #C8A55C;
}
.hero-card .btn-primary:hover {
  background: #EFE8D8;
  color: #1B4332;
  border-color: #EFE8D8;
}

/* ===========================================
   THE DIFFERENCE
   =========================================== */
.difference-section {
  background: #EFE8D8;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.difference-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  opacity: 0;
  transition: all 1s ease;
}
.difference-content.visible { opacity: 1; }
.difference-text {
  background: #EFE8D8;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInLeft 1s ease-out forwards;
}
.difference-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: #2B2820;
  margin-bottom: 32px;
  line-height: 1.2;
}
.difference-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #2B2820;
  margin-bottom: 40px;
}
.difference-body p { margin-bottom: 20px; }
.difference-body .emphasis {
  font-style: italic;
  font-weight: 500;
  color: #C8A55C;
  margin-top: 8px;
}
.difference-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(20px);
}
.difference-content.visible .feature-item {
  opacity: 1;
  transform: translateY(0);
}
.feature-item:nth-child(2) { transition-delay: 0.15s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-icon {
  width: 40px; height: 40px;
  background: #C8A55C;
  color: #2B2820;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.feature-item:hover .feature-icon { transform: scale(1.1); }
.feature-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2B2820;
}
.difference-image {
  position: relative;
  overflow: hidden;
  animation: slideInRight 1s ease-out forwards;
}
.difference-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}
.difference-content.visible .difference-image img {
  transform: scale(1.1);
}
.image-vignette {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(43, 40, 32, 0.4) 100%);
  pointer-events: none;
}

/* ===========================================
   HOW TO ORDER
   =========================================== */
.how-to-order-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f5e8 100%);
  position: relative;
}
.order-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.order-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.order-header h2 { color: #2B2820; }
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.order-step {
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.order-steps.visible .order-step {
  opacity: 1;
  transform: translateY(0);
}
.order-step:nth-child(2) { transition-delay: 0.2s; }
.order-step:nth-child(3) { transition-delay: 0.4s; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: #C8A55C;
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.step-icon {
  color: #C8A55C;
  margin: 0 auto 24px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.order-step:hover .step-icon {
  transform: scale(1.15);
  animation: pulse 1.5s ease-in-out infinite;
}
.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2B2820;
  margin-bottom: 16px;
}
.step-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
.step-connector {
  position: absolute;
  top: 100px; right: -30px;
  width: 60px; height: 2px;
  background: linear-gradient(to right, #C8A55C 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.order-steps.visible .step-connector {
  opacity: 1;
  animation: drawLine 1s ease-out 0.5s forwards;
}
.order-cta-wrapper {
  text-align: center;
  margin-top: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}
.order-cta-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}
.btn-large {
  font-size: 16px;
  padding: 22px 48px;
  height: 68px;
  min-width: 260px;
  letter-spacing: 1.5px;
}

/* ===========================================
   INSTAGRAM FEED
   =========================================== */
.instagram-feed-section {
  padding: 120px 0;
  background: #EFE8D8;
  position: relative;
}
.instagram-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.instagram-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.instagram-header h2 { color: #2B2820; margin-bottom: 12px; }
.instagram-subtitle { color: #666666; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #f6f5e8;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.instagram-grid.visible .instagram-item {
  opacity: 1;
  transform: scale(1);
}
.instagram-item:nth-child(1) { transition-delay: 0s; }
.instagram-item:nth-child(2) { transition-delay: 0.1s; }
.instagram-item:nth-child(3) { transition-delay: 0.2s; }
.instagram-item:nth-child(4) { transition-delay: 0.3s; }
.instagram-item:nth-child(5) { transition-delay: 0.4s; }
.instagram-item:nth-child(6) { transition-delay: 0.5s; }
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(200, 165, 92, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #2B2820;
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-cta {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}
.instagram-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   FAQ
   =========================================== */
.faq-section {
  padding: 120px 0;
  background: #EFE8D8;
  position: relative;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.faq-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-header h2 { color: #2B2820; margin-bottom: 12px; }
.faq-subtitle { color: #666666; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}
.faq-list.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-item {
  border-bottom: 1px solid rgba(200, 165, 92, 0.3);
}
.faq-item:first-child {
  border-top: 1px solid rgba(200, 165, 92, 0.3);
}
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2B2820;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.faq-question:hover { color: #C8A55C; }
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #C8A55C;
  transition: transform 0.3s ease;
  margin-left: 16px;
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}
.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-header h2 { font-size: 32px; }
  .faq-question { font-size: 15px; padding: 24px 0; }
  .faq-answer p { font-size: 14px; }
}

/* ===========================================
   FOOTER
   =========================================== */
.footer-section {
  background: #2B2820;
  color: #EFE8D8;
  padding: 80px 0 0;
  position: relative;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.2);
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-brand { max-width: 340px; }
.footer-logo {
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.footer-logo:hover { transform: scale(1.05); }
.footer-logo img {
  width: 64px; height: 64px; object-fit: contain;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #C8A55C;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #EFE8D8;
  opacity: 0.8;
}
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C8A55C;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #EFE8D8;
  text-decoration: none;
  transition: all 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.footer-link:hover {
  color: #C8A55C;
  transform: translateX(4px);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #EFE8D8;
}
.footer-contact li svg { color: #C8A55C; flex-shrink: 0; }
.footer-contact a {
  color: #EFE8D8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: #C8A55C; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-icon {
  width: 44px; height: 44px;
  border: 1px solid #C8A55C;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A55C;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: #C8A55C;
  color: #2B2820;
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 32px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(239, 232, 216, 0.6);
  letter-spacing: 0.5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 64px; height: 64px;
  background: #C8A55C;
  color: #2B2820;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200, 165, 92, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(200, 165, 92, 0.6);
}
.whatsapp-float:active { transform: scale(0.95); }

/* ===========================================
   ORDER PAGE
   =========================================== */
.order-page {
  min-height: 100vh;
  background: #EFE8D8;
  padding: 80px 0;
}
[data-paperform-id] {
  width: 100%;
  min-height: 600px;
}

/* ===========================================
   RESPONSIVE — Tablet (1024px)
   =========================================== */
@media (max-width: 1200px) {
  .collections-grid { gap: 32px; }
  .collection-card.hero-card { transform: scale(1.02); }
  .collections-grid.visible .collection-card.hero-card { transform: scale(1.02); }
  .collection-card.hero-card:hover { transform: scale(1.02) translateY(-10px); }
}

@media (max-width: 1024px) {
  .heading-hero  { font-size: 56px; }
  .heading-large { font-size: 42px; }
  .heading-medium { font-size: 36px; }
  .container { padding: 0 24px; }

  /* Hero */
  .hero-image-wrapper { width: 500px; height: 500px; }
  .hero-title { font-size: 72px; letter-spacing: 10px; }
  .hero-subtitle { font-size: 24px; letter-spacing: 3px; }

  /* Brand Story */
  .brand-story-content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }
  .brand-story-section { padding: 80px 0; }
  .story-heading { font-size: 42px; }
  .story-body { font-size: 16px; }
  .image-frame img { height: 500px; }

  /* Collections */
  .collections-section { padding: 80px 0; }
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 60px auto 0;
  }
  .collection-card.hero-card { transform: scale(1); }
  .collections-grid.visible .collection-card.hero-card { transform: scale(1); }
  .collection-card.hero-card:hover { transform: translateY(-10px); }
  .collections-header { margin-bottom: 60px; }

  /* Difference */
  .difference-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .difference-text { padding: 60px 40px; }
  .difference-heading { font-size: 42px; }
  .difference-body { font-size: 16px; }
  .difference-image { min-height: 500px; }

  /* How to Order */
  .how-to-order-section { padding: 80px 0; }
  .order-steps {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 500px;
  }
  .step-connector { display: none; }
  .order-header { margin-bottom: 60px; }
  .order-cta-wrapper { margin-top: 60px; }

  /* Instagram */
  .instagram-feed-section { padding: 80px 0; }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ===========================================
   RESPONSIVE — Mobile (768px)
   =========================================== */
@media (max-width: 768px) {
  .heading-hero  { font-size: 42px; }
  .heading-large { font-size: 36px; }
  .heading-medium { font-size: 32px; }
  .heading-small { font-size: 26px; }
  .subheading    { font-size: 20px; }
  .body-large    { font-size: 16px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-image-wrapper { width: 350px; height: 350px; }
  .hero-title { font-size: 56px; letter-spacing: 4px; }
  .hero-subtitle { font-size: 20px; }
  .hero-description { font-size: 14px; }
  .hero-logo { top: 24px; left: 24px; }
  .scroll-indicator { bottom: 24px; }

  /* Brand Story */
  .brand-story-section { padding: 60px 0; }
  .brand-story-content { padding: 0 16px; gap: 40px; }
  .story-heading { font-size: 36px; }
  .story-body { font-size: 15px; }
  .story-signature { font-size: 18px; }
  .image-frame img { height: 400px; }

  /* Collections */
  .collections-section { padding: 60px 0; }
  .collections-header h2 { font-size: 36px; }
  .card-image { height: 280px; }
  .card-content { padding: 24px 20px; }
  .card-title { font-size: 24px; }

  /* Difference */
  .difference-text { padding: 40px 24px; }
  .difference-heading { font-size: 36px; }
  .difference-body { font-size: 15px; }
  .feature-text { font-size: 14px; }
  .difference-image { min-height: 400px; }

  /* How to Order */
  .how-to-order-section { padding: 60px 0; }
  .order-header h2 { font-size: 36px; }
  .step-number { font-size: 48px; }
  .step-icon, .step-icon svg { width: 40px; height: 40px; }
  .step-title { font-size: 18px; }
  .step-description { font-size: 14px; }
  .btn-large {
    font-size: 14px;
    padding: 19px 32px;
    height: 60px;
    min-width: 220px;
  }

  /* Instagram */
  .instagram-feed-section { padding: 60px 0; }
  .instagram-header h2 { font-size: 32px; }
  .instagram-grid { gap: 8px; }
  .instagram-header { margin-bottom: 40px; }
  .instagram-cta { margin-top: 40px; }

  /* Footer */
  .footer-section { padding: 60px 0 0; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-brand { grid-column: auto; }
  .whatsapp-float {
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===========================================
   RESPONSIVE — Small Mobile (480px)
   =========================================== */
@media (max-width: 480px) {
  .hero-image-wrapper { width: 280px; height: 280px; }
  .hero-title { font-size: 42px; letter-spacing: 6px; }
  .hero-subtitle { font-size: 18px; letter-spacing: 2px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
epeat(2, 1fr); }
}
