/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Brand Design Tokens */
:root {
  --color-orange: #F89A1C;
  --color-terracotta: #D97706;
  --color-warm-cream: #FFF8F0;
  --color-ivory: #FAF6EF;
  --color-charcoal: #1F1F1F;
  --color-soft-grey: #6B7280;
  --color-white: #FFFFFF;
  --color-warm-beige: #F3EFE9;
  --color-light-cream: #FCF8F2;
  --color-shadow: rgba(31, 31, 31, 0.08);
  --color-shadow-hover: rgba(31, 31, 31, 0.15);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-light-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--color-soft-grey);
  border: 2px solid var(--color-ivory);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracotta);
}

/* Layout Utilities & Container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Reduced Section Spacing for Less Scrollability */
.section-padding {
  padding: 60px 0;
}

.bg-warm-cream {
  background-color: var(--color-warm-cream);
}

.bg-ivory {
  background-color: var(--color-ivory);
}

.bg-warm-beige {
  background-color: var(--color-warm-beige);
}

.bg-white {
  background-color: var(--color-white);
}

.text-center {
  text-align: center;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-orange);
  margin: 12px auto 0;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-soft-grey);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
}

p {
  color: #4A4A4A;
  font-weight: 300;
}

/* Inline SVG Icon Styles */
.svg-icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

.btn .svg-icon {
  margin-right: 8px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(248, 154, 28, 0.15);
}

.btn-secondary {
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.18);
}

/* Header & Premium Branding logo styling */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.sticky {
  position: fixed;
  background-color: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 5px 25px var(--color-shadow);
  border-bottom: 1px solid rgba(31, 31, 31, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Unified Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  height: 46px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(248, 154, 28, 0.15);
  transition: var(--transition-smooth);
}

header.sticky .logo-mark {
  height: 38px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  transition: var(--transition-smooth);
}

header.sticky .logo-text {
  color: var(--color-charcoal);
}

.logo-text-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  transition: var(--transition-smooth);
}

header.sticky .logo-text-sub {
  color: var(--color-soft-grey);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 5px 0;
}

header.sticky .nav-link {
  color: var(--color-charcoal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition-smooth);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--color-white);
  cursor: pointer;
  z-index: 1002;
}

header.sticky .mobile-toggle {
  color: var(--color-charcoal);
}

.mobile-toggle .svg-icon {
  width: 1.4rem;
  height: 1.4rem;
}

/* Hero Section - Reduced Height for Less Scrolling */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.45) 0%, rgba(31, 31, 31, 0.35) 50%, rgba(31, 31, 31, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 300;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 4.2rem;
  font-family: var(--font-heading);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--color-white);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.hero-buttons .btn-secondary {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

/* Quote Strip - Compact spacing */
.quote-strip {
  background-color: var(--color-warm-beige);
  padding: 30px 0;
  border-top: 1px solid rgba(31, 31, 31, 0.05);
  border-bottom: 1px solid rgba(31, 31, 31, 0.05);
  overflow: hidden;
  position: relative;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-charcoal);
  text-align: center;
  position: relative;
  padding: 0 30px;
}

.quote-content::before {
  content: '“';
  position: absolute;
  top: -15px;
  left: 0;
  font-size: 4rem;
  color: rgba(248, 154, 28, 0.15);
  font-family: var(--font-heading);
}

.quote-content::after {
  content: '”';
  position: absolute;
  bottom: -45px;
  right: 0;
  font-size: 4rem;
  color: rgba(248, 154, 28, 0.15);
  font-family: var(--font-heading);
}

/* Section 2: Journey horizontal timeline - Compact spacing */
.timeline-wrapper {
  position: relative;
  padding: 25px 0;
}

.timeline-line {
  position: absolute;
  top: 75px;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: var(--color-warm-beige);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-orange);
  width: 0%;
  transition: width 1s ease;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}

.timeline-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon-box {
  width: 68px;
  height: 68px;
  background-color: var(--color-white);
  border: 1px solid var(--color-warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-orange);
  box-shadow: 0 8px 15px var(--color-shadow);
  transition: var(--transition-bounce);
  position: relative;
}

.timeline-icon-box .svg-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.timeline-item:hover .timeline-icon-box {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(248, 154, 28, 0.2);
}

.timeline-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.timeline-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-soft-grey);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Section 3: Collections - Compact layout */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.collection-card {
  background-color: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 25px var(--color-shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.collection-img-box {
  height: 310px; /* Reduced from 380px */
  overflow: hidden;
  position: relative;
}

.collection-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img-box img {
  transform: scale(1.06);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 65%, rgba(31, 31, 31, 0.35) 100%);
}

.collection-info {
  padding: 25px; /* Reduced from 35px */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.collection-name {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.collection-desc {
  color: var(--color-soft-grey);
  font-size: 0.88rem;
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.5;
}

.collection-info .btn {
  align-self: center;
  width: 100%;
}

/* Section 4: Product Categories Grid - Compact Heights */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px; /* Reduced from 280px */
  gap: 15px;
}

.category-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 25px var(--color-shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.category-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.category-card.col-span-4 {
  grid-column: span 4;
}

.category-card.col-span-2 {
  grid-column: span 2;
}

.category-card.col-span-3 {
  grid-column: span 3;
}

.category-card.row-span-2 {
  grid-row: span 2;
}

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

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.1) 0%, rgba(31, 31, 31, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.15) 0%, rgba(31, 31, 31, 0.75) 100%);
}

.category-title {
  color: var(--color-white);
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.category-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-smooth);
}

.category-card:hover .category-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.category-cta {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.category-cta .svg-icon {
  margin-left: 6px;
  transition: transform 0.3s ease;
  width: 0.9em;
  height: 0.9em;
}

.category-card:hover .category-cta {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover .category-cta .svg-icon {
  transform: translateX(4px);
}

/* Section 5: Signature Showcase (Tabbed) - Compact */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-warm-beige);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.tab-btn.active {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.showcase-content {
  background-color: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.05);
  box-shadow: 0 15px 30px var(--color-shadow);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 440px; /* Reduced from 500px */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-content.reveal {
  opacity: 1;
  transform: translateY(0);
}

.showcase-img-pane {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  background-color: var(--color-warm-cream);
}

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

.showcase-details-pane {
  padding: 35px; /* Reduced from 55px */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.showcase-desc {
  color: var(--color-soft-grey);
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.color-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.color-pill {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--color-warm-beige);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-light-cream);
  color: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.15);
}

.color-pill:hover,
.color-pill.active {
  border-color: var(--color-orange);
  background-color: var(--color-warm-cream);
  transform: translateY(-1px);
}

.color-pill.active {
  background-color: var(--color-white);
  border-width: 2px;
}

/* Color dot hex codes */
.dot-lush-green { background-color: #2D5A27; }
.dot-mint { background-color: #AAF0D1; }
.dot-lilac { background-color: #C8A2C8; }
.dot-cream { background-color: #FFFDD0; }
.dot-ivory { background-color: #FFFFF0; }
.dot-dusky-peach { background-color: #FFCBA4; }
.dot-peacock-green { background-color: #005A5B; }
.dot-marine-blue { background-color: #003366; }

.dot-white-matte { background-color: #F8F8F8; border: 1px solid #CCC; }
.dot-charcoal-gloss { background-color: #242424; }
.dot-grain-matte { background-color: #D3C2B0; }

.dot-rustic { background-color: #8B5A2B; }
.dot-denim-blue { background-color: #1F305E; }
.dot-jade-green { background-color: #00A86B; }
.dot-moss { background-color: #466D1D; }

.dot-blush-pink { background-color: #FFD1DC; }
.dot-sea-green { background-color: #2E8B57; }
.dot-terra-brown { background-color: #E2725B; }
.dot-sky-blue { background-color: #87CEEB; }

.dot-bubblegum-pink { background-color: #FFC1CC; }
.dot-mustard { background-color: #E1AD01; }
.dot-azure { background-color: #007FFF; }

/* Section 6: Customization Split Layout - Compact height */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.split-img-box {
  position: relative;
  box-shadow: 0 15px 30px var(--color-shadow);
  border: 1px solid rgba(31, 31, 31, 0.05);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-img-box.reveal {
  opacity: 1;
  transform: translateX(0);
}

.split-img-box img {
  width: 100%;
  height: 440px; /* Reduced from 550px */
  object-fit: cover;
}

.split-content {
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-content.reveal {
  opacity: 1;
  transform: translateX(0);
}

.split-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.split-desc {
  font-size: 0.95rem;
  color: #4A4A4A;
  margin-bottom: 25px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-warm-beige);
  font-size: 0.9rem;
}

.service-icon {
  display: flex;
  align-items: center;
  color: var(--color-orange);
}

.service-icon .svg-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.service-name {
  font-weight: 500;
}

/* Section 7: Why Narayana Ceramic Craft - Compact cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background-color: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.05);
  padding: 25px 20px; /* Reduced from 40px */
  text-align: center;
  box-shadow: 0 10px 20px var(--color-shadow);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
}

.why-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--color-shadow-hover);
  border-color: var(--color-orange);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--color-orange);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
}

.why-card .svg-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.why-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--color-soft-grey);
  line-height: 1.5;
}

/* Section 8: About Us (Editorial) - Compact height */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-box {
  position: relative;
  opacity: 0;
  transform: scale(0.97);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box.reveal {
  opacity: 1;
  transform: scale(1);
}

.about-img-box img {
  width: 100%;
  height: 460px; /* Reduced from 600px */
  object-fit: cover;
  box-shadow: 0 20px 40px var(--color-shadow);
}

.about-img-box::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-orange);
  z-index: -1;
  pointer-events: none;
}

.about-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-content.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
  color: #4A4A4A;
}

/* Section 9: Founder's Note - Tighter margins */
.founder-note {
  position: relative;
  overflow: hidden;
}

.founder-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.founder-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.founder-text {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  line-height: 1.65;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 25px;
}

.founder-signature-box {
  margin-top: 20px;
}

.founder-signature {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-terracotta);
}

.founder-title-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-soft-grey);
  margin-top: 4px;
}

/* Section 10: Contact Us - Clean spacing */
.contact-container {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-subtitle-text {
  font-size: 0.98rem;
  color: var(--color-soft-grey);
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--color-warm-beige);
  padding-top: 35px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-icon {
  margin-bottom: 12px;
  color: var(--color-orange);
}

.contact-info-icon .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.contact-info-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-soft-grey);
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  animation: pulseWhatsapp 2s infinite;
  transition: var(--transition-bounce);
}

.floating-whatsapp .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  background-color: #128C7E;
}

/* Footer Section - Unified Logo, Clean Layout */
footer {
  background-color: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px; /* Reduced from 80px */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-container {
  margin-bottom: 15px;
}

.footer-brand .logo-mark {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-top: 15px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-title-sub {
  color: var(--color-white);
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-social-menu {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-social-link .svg-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-social-link:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsiveness Improvements */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.9rem;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
  }
  .showcase-content {
    grid-template-columns: 1fr;
  }
  .showcase-img-pane {
    min-height: 280px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-img-box img {
    height: 360px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-img-box img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 45px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Header & Navigation Mobile */
  header {
    padding: 12px 0;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  .logo-mark {
    height: 38px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--color-ivory);
    flex-direction: column;
    padding: 90px 30px;
    box-shadow: -8px 0 25px var(--color-shadow);
    transition: var(--transition-smooth);
    gap: 20px;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-link {
    color: var(--color-charcoal);
    font-size: 0.95rem;
    display: block;
  }
  .header-cta {
    display: none;
  }
  
  /* Quote Strip */
  .quote-content {
    font-size: 1.25rem;
  }
  
  /* Timeline Mobile */
  .timeline-line {
    display: none;
  }
  .timeline-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .timeline-item {
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline-icon-box {
    margin-bottom: 12px;
  }
  
  /* Collections & Categories */
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }
  .category-card.col-span-4,
  .category-card.col-span-2,
  .category-card.col-span-3 {
    grid-column: span 1;
  }
  .category-card.row-span-2 {
    grid-row: span 1;
  }
  .category-subtitle {
    opacity: 1;
    transform: translateY(0);
  }
  .category-cta {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Why & Details */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .showcase-details-pane {
    padding: 25px;
  }
  .showcase-title {
    font-size: 1.7rem;
  }
  
  /* Services customization grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  /* Metrics */
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
  
  /* Contact Us Info Grid */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Floating WhatsApp Mobile Offset */
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp .svg-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
