/* 
  Sutra by Suchi - Global Stylesheet
  Premium Ladies Boutique, Garment Manufacturing & Wholesale 
  Designed with deep burgundy, antique gold, soft blush pink, and warm cream.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS CUSTOM VARIABLES (Design System)
   ========================================== */
:root {
  /* Colors derived from Sutra by Suchi Logo */
  --color-burgundy: #5A171D;       /* Deep Burgundy / Wine Red */
  --color-burgundy-hover: #421014; /* Darker burgundy */
  --color-gold: #D2AA63;           /* Metallic Gold */
  --color-gold-hover: #B68E49;     /* Darker gold */
  --color-blush: #EBE3D6;          /* Replaced blush with light cream */
  --color-blush-light: #FAF5EF;    /* Replaced blush-light with warm cream */
  --color-cream: #F6EFE5;          /* Warm Cream / Ivory */
  --color-cream-dark: #EBE3D6;     /* Slightly darker cream for card backgrounds */
  
  /* Neutrals */
  --color-white: #FFFFFF;
  --color-text-primary: #1C0506;   /* Dark neutral derived from burgundy */
  --color-text-secondary: #5C4E50; /* Muted dark neutral */
  --color-border: #DBCFBE;         /* Subtle border derived from gold/cream */
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1280px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-subtle: 0 4px 20px rgba(88, 17, 26, 0.04);
  --box-shadow-hover: 0 10px 30px rgba(88, 17, 26, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background-color: var(--color-cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 400; letter-spacing: 0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; letter-spacing: 0.05em; }

p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
}

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

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

/* Accessibility: Skip to Content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-burgundy);
  color: var(--color-cream);
  padding: 10px 20px;
  z-index: 1001;
  transition: top 0.2s;
  font-family: var(--font-sans);
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

/* Accessibility Focus Ring */
*:focus-visible {
  outline: 2px solid var(--color-burgundy);
  outline-offset: 4px;
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

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

/* Sub-heading label above titles */
.section-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-burgundy);
  color: var(--color-cream);
}
.btn-primary:hover {
  background-color: var(--color-white);
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.btn-outline {
  border: 1px solid var(--color-burgundy);
  color: var(--color-burgundy);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--color-burgundy);
  color: var(--color-cream);
}

.btn-gold {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background-color: transparent;
}
.btn-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-cream);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: 1px solid #25D366;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: var(--color-white);
}

.btn svg {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Section Header Structure */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Horizontal separators */
.separator {
  width: 80px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 20px auto;
}

/* Grid helper classes */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: 1fr; gap: 20px; }
}

/* Card structures */
.card-premium {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-gold);
}

.image-hover-wrapper {
  overflow: hidden;
  position: relative;
  background-color: var(--color-cream-dark);
}
.image-hover-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.image-hover-wrapper:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-cream-dark);
}
.breadcrumbs-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs-item:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: var(--color-gold);
  font-size: 0.8rem;
}
.breadcrumbs-item a {
  color: var(--color-text-secondary);
}
.breadcrumbs-item a:hover {
  color: var(--color-burgundy);
}
.breadcrumbs-item.active {
  color: var(--color-burgundy);
  font-weight: 500;
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(246, 239, 229, 0.95); /* warm cream/ivory F6EFE5 */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 23, 29, 0.1); /* subtle burgundy border */
  transition: var(--transition-smooth);
}
.header-wrapper.scrolled {
  box-shadow: var(--box-shadow-subtle);
  padding: 5px 0;
}

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

/* Logo markup styling */
.brand-logo {
  display: flex;
  align-items: center;
  height: calc(var(--header-height) - 10px);
}
.brand-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* Navigation layout */
.nav-desktop {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--color-text-primary);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--color-burgundy);
}

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

/* Mobile Nav Toggler */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-burgundy);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}
.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Mobile Menu open classes */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--color-cream);
  z-index: 1001;
  box-shadow: -5px 0 25px rgba(88, 17, 26, 0.15);
  padding: 100px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-mobile-drawer.open {
  right: 0;
}

.nav-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-burgundy);
  display: block;
  font-weight: 400;
}
.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--color-gold);
  padding-left: 10px;
}

.mobile-drawer-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-size: 0.9rem;
}
.mobile-drawer-footer p {
  margin-bottom: 10px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(88, 17, 26, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1100px) {
  .nav-desktop, .header-cta .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ==========================================
   HERO / MAIN SECTIONS
   ========================================== */
.hero-section {
  position: relative;
  background-color: var(--color-cream-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}
.hero-content {
  padding: 40px 0;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.hero-content h1 {
  margin-bottom: 20px;
}
.hero-description {
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-image-container {
  width: 90%;
  aspect-ratio: 4/5;
  background-color: var(--color-blush);
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--color-blush-light);
  border: 1px solid var(--color-border);
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image {
    justify-content: center;
  }
  .hero-image-container {
    width: 80%;
    max-width: 450px;
  }
}

/* ==========================================
   THREE BUSINESS PILLARS
   ========================================== */
.pillar-card {
  text-align: center;
  padding: 40px 24px;
}
.pillar-icon {
  margin: 0 auto 20px auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-burgundy);
}
.pillar-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.pillar-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
}
.pillar-card p {
  margin-bottom: 25px;
}

/* ==========================================
   FEATURED/STORY SECTIONS
   ========================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse .feature-content {
  direction: ltr;
}
.feature-img-wrapper {
  position: relative;
  background-color: var(--color-cream-dark);
}
.feature-img-container {
  border: 1px solid var(--color-border);
  box-shadow: 15px 15px 0 var(--color-blush-light);
  overflow: hidden;
}
.feature-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.feature-content h2 {
  margin-bottom: 20px;
}
.feature-content p {
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.feature-list-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.feature-list-item svg {
  color: var(--color-gold);
  margin-right: 10px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse {
    direction: ltr;
  }
}

/* ==========================================
   COLLECTIONS SECTIONS
   ========================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.collection-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-gold);
}
.collection-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.collection-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.collection-card-body p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}
.collection-card-actions {
  display: flex;
  gap: 10px;
}
.collection-card-actions .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.75rem;
}

/* ==========================================
   MANUFACTURING PROCESS / TIMELINE
   ========================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--color-gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-burgundy);
  border: 2px solid var(--color-cream);
  z-index: 1;
}
.timeline-content {
  background-color: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-border);
}
.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-burgundy);
  display: flex;
  align-items: center;
  gap: 15px;
}
.timeline-step-num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================
   CONTACT & VISIT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-details-list {
  list-style: none;
  margin: 30px 0;
}
.contact-details-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-details-icon {
  color: var(--color-burgundy);
  margin-right: 15px;
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-details-text h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 5px;
}
.contact-details-text p {
  font-size: 1.05rem;
}
.contact-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.map-container {
  border: 1px solid var(--color-border);
  box-shadow: 15px 15px 0 var(--color-blush-light);
  min-height: 400px;
  height: 100%;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-container {
    min-height: 350px;
  }
}

/* ==========================================
   BLOG LAYOUT
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-card-body h3 a:hover {
  color: var(--color-gold);
}
.blog-card-body p {
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex-grow: 1;
}
.blog-readmore {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-burgundy);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
}
.blog-readmore::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.2s;
}
.blog-readmore:hover::after {
  transform: translateX(4px);
}

/* Individual Post layout */
.post-header {
  padding: 60px 0;
  background-color: var(--color-cream-dark);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.post-header h1 {
  margin: 15px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.post-meta-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-top: 15px;
}
.post-body {
  max-width: 780px;
  margin: 60px auto;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-primary);
}
.post-body p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.post-body h2, .post-body h3 {
  margin: 40px 0 20px 0;
}
.post-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--color-burgundy);
  font-family: var(--font-serif);
  font-size: 1.3rem;
}
.post-body img {
  margin: 45px 0;
  border: 1px solid var(--color-border);
}
.toc-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 40px;
}
.toc-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-burgundy);
  margin-bottom: 15px;
  font-weight: 600;
}
.toc-list {
  list-style: none;
}
.toc-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.toc-list li a {
  color: var(--color-text-secondary);
}
.toc-list li a:hover {
  color: var(--color-burgundy);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-body {
    padding: 20px;
  }
  .post-body {
    font-size: 1rem;
  }
}

/* ==========================================
   TRUST & TESTIMONIALS
   ========================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.testimonial-card {
  background-color: var(--color-cream-dark);
  padding: 35px;
  border-radius: 0;
  border-top: 3px solid var(--color-burgundy);
}
.testimonial-text {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  font-weight: 600;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-wrapper {
  background-color: #F6EFE5; /* Warm Cream / Ivory */
  color: var(--color-text-primary);
  border-top: 1px solid rgba(90, 23, 29, 0.1); /* subtle burgundy border */
}
.footer-top {
  padding: 80px 0 50px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand h2 {
  color: var(--color-burgundy);
  font-family: var(--font-serif);
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(90, 23, 29, 0.2);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}
.footer-social-link:hover {
  background-color: var(--color-gold);
  color: #000000;
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-nav-col h3 {
  color: var(--color-burgundy);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  margin-bottom: 25px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-link {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}
.footer-nav-link:hover {
  color: var(--color-burgundy);
  padding-left: 5px;
}

.footer-contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.footer-contact-icon {
  color: var(--color-gold);
  margin-right: 12px;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-contact-text span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-burgundy);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(90, 23, 29, 0.08);
  padding: 30px 0;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-link:hover {
  color: var(--color-burgundy);
}
.designer-credit {
  font-size: 0.8rem;
  opacity: 0.6;
}
.designer-credit a {
  text-decoration: underline;
  color: var(--color-gold);
}
.designer-credit a:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

/* ==========================================
   CONVERSION / INTERACTIVE FLOATING ELEMENTS
   ========================================== */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: translateY(-5px);
  background-color: #128C7E;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Responsive Mobile bottom bar (Call | WhatsApp | Directions) */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  border-top: 1px solid var(--color-gold);
  z-index: 998;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 60px;
}
.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-action-btn:last-child {
  border-right: none;
}
.mobile-action-btn svg {
  width: 18px;
  height: 18px;
  margin-bottom: 4px;
  fill: currentColor;
}
.mobile-action-btn:hover {
  background-color: var(--color-burgundy);
  color: var(--color-cream);
}
.mobile-action-btn.whatsapp-btn {
  color: #25D366;
}
.mobile-action-btn.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white;
}

@media (max-width: 767px) {
  /* Leave space in bottom of body so content is not blocked by mobile bottom action bar */
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
  }
  .mobile-action-bar {
    display: block;
  }
  /* Offset WhatsApp button up slightly so it doesn't overlap the mobile bottom bar */
  .whatsapp-float {
    bottom: calc(80px + env(safe-area-inset-bottom));
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================
   ANIMATIONS & TRANSITION HELPERS
   ========================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
