/* ==========================================================================
   CELINE RAHIM DESIGN AGENCY — STYLESHEET
   Clean, Contemporary Editorial Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Redesigned Jenna Rainey Aesthetic */
  --olive-green: #3C4A3E;
  --olive-green-light: #526355;
  --olive-green-subtle: #ECEFEA;
  --olive-green-hover: #29332A;
  
  --dusty-blue: #7A8B99;
  --dusty-blue-light: #E9EDF0;
  --dusty-blue-accent: #5F7180;
  --dusty-blue-hover: #4E5E6C;
  
  --dusty-rose: #C89B9C;
  --dusty-rose-light: #F6EFF0;
  --dusty-rose-accent: #B47F81;
  --dusty-rose-hover: #9E6769;

  /* Accent Tones */
  --accent-lavender: #F1DAF2;
  --accent-lavender-dark: #8C788D;
  --peach-dark: #F3D3C3;
  --peach-light: #FFF5F0;

  /* Neutrals */
  --bg-primary: #F7F5F2;       /* Warm Alabaster Cream */
  --bg-secondary: #FFF5F0;     /* Soft Peach / Blush Pink */
  --bg-dark: #302E2D;          /* Earthy Graphite */
  --text-dark: #302E2D;        /* Earthy Graphite */
  --text-medium: #66615D;      /* Warm Grey */
  --text-light: #9E9A96;       /* Muted Warm Grey */
  --white: #FFFFFF;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout & Utility Variables */
  --border-radius-sm: 4px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --box-shadow-soft: 0 10px 40px rgba(102, 97, 93, 0.03);
  --box-shadow-medium: 0 20px 50px rgba(48, 46, 45, 0.06);
  --box-shadow-glowing: 0 15px 35px rgba(200, 155, 156, 0.12);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Editorial Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--olive-green-light);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--olive-green);
}

/* Sections spacing */
section {
  padding: 120px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 80px auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-description {
  color: var(--text-medium);
  font-size: 1.15rem;
  font-weight: 300;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--olive-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(60, 74, 62, 0.15);
}

.btn-primary:hover {
  background-color: var(--olive-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(60, 74, 62, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--olive-green);
}

.btn-secondary:hover {
  background-color: var(--olive-green-subtle);
  color: var(--olive-green-hover);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   3. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 6px 0;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(60, 74, 62, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 300;
  color: var(--text-dark);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-item {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  padding: 8px 0;
}

.nav-item:hover {
  color: var(--olive-green);
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   4. EDITORIAL HERO SECTION
   -------------------------------------------------------------------------- */
/* Ensure the first section clears the massive sticky navbar */
main > section:first-of-type {
  padding-top: 420px !important;
}

.hero {
  padding: 120px 24px 100px 24px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}


/* Ambient glow blobs */
.hero-bg-accent {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, var(--dusty-blue-light) 0%, rgba(250, 248, 245, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.7;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  max-width: 620px;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--olive-green);
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
}

.hero-tagline::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: var(--dusty-rose);
  right: -45px;
  top: 50%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--dusty-rose-accent);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  z-index: 5;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  background-color: var(--white);
  padding: 18px;
}

.hero-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--border-radius-lg) - 10px);
  transition: var(--transition-smooth);
}

.hero-image-frame:hover .hero-featured-image {
  transform: scale(1.03);
}

/* Ambient color washes floating in background */
.splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
  animation: floatBlobs 24s infinite ease-in-out alternate;
}

.splash-pink {
  background-color: var(--dusty-rose-light);
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}

.splash-blue {
  background-color: var(--dusty-blue-light);
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: -50px;
  animation-delay: -6s;
}

.splash-green {
  background-color: var(--olive-green-subtle);
  width: 240px;
  height: 240px;
  top: 40%;
  right: -90px;
  animation-delay: -12s;
}

@keyframes floatBlobs {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(25px, -35px) scale(1.08) rotate(6deg); }
  100% { transform: translate(-15px, 20px) scale(0.94) rotate(-5deg); }
}

/* --------------------------------------------------------------------------
   5. PORTFOLIO GALLERY
   -------------------------------------------------------------------------- */
.portfolio {
  background-color: var(--bg-secondary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.filter-tab {
  background: none;
  border: 1px solid rgba(60, 74, 62, 0.15);
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-medium);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--olive-green);
  color: var(--white);
  border-color: var(--olive-green);
  box-shadow: 0 4px 15px rgba(60, 74, 62, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(60, 74, 62, 0.03);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 13;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

/* Glassmorphic gallery overlay wash */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(60, 74, 62, 0.1) 0%, rgba(200, 155, 156, 0.25) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view-btn {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .gallery-view-btn {
  transform: translateY(0);
}

.gallery-info {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-info-text h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.gallery-info-text p {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-link-arrow {
  font-size: 1.5rem;
  color: var(--dusty-rose-accent);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-link-arrow {
  transform: translateX(5px);
  color: var(--olive-green);
}

/* --------------------------------------------------------------------------
   6. SERVICES SECTION (REPLACES WORKSHOPS)
   -------------------------------------------------------------------------- */
.workshops {
  background-color: var(--bg-primary);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.workshop-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--box-shadow-soft);
  position: relative;
  border: 1px solid rgba(60, 74, 62, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  transition: var(--transition-smooth);
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
  border-color: rgba(200, 155, 156, 0.3);
}

/* Interactive gradient borders & styling */
.workshop-card.card-blue {
  background: linear-gradient(180deg, var(--white) 0%, var(--dusty-blue-light) 100%);
}

.workshop-card.card-pink {
  background: linear-gradient(180deg, var(--white) 0%, var(--dusty-rose-light) 100%);
}

.workshop-card.card-green {
  background: linear-gradient(180deg, var(--white) 0%, var(--olive-green-subtle) 100%);
}

.card-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: rgba(60, 74, 62, 0.06);
  color: var(--olive-green-light);
}

.workshop-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 14px;
  margin-top: 15px;
}

.workshop-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.workshop-desc {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.workshop-details {
  border-top: 1px dashed rgba(60, 74, 62, 0.15);
  padding-top: 24px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.detail-item strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* Service Card Booking Button Overhaul */
.workshop-card .btn-primary {
  width: 100%;
  letter-spacing: 0.15em;
}

.workshop-card.card-blue .btn-primary {
  background-color: var(--dusty-blue-accent);
}
.workshop-card.card-blue .btn-primary:hover {
  background-color: var(--dusty-blue-hover);
  box-shadow: 0 8px 25px rgba(95, 113, 128, 0.25);
}

.workshop-card.card-pink .btn-primary {
  background-color: var(--dusty-rose-accent);
}
.workshop-card.card-pink .btn-primary:hover {
  background-color: var(--dusty-rose-hover);
  box-shadow: 0 8px 25px rgba(180, 127, 129, 0.25);
}

.workshop-card.card-green .btn-primary {
  background-color: var(--olive-green);
}
.workshop-card.card-green .btn-primary:hover {
  background-color: var(--olive-green-hover);
}

/* --------------------------------------------------------------------------
   7. PHILOSOPHY & VISION (REPLACES ABOUT)
   -------------------------------------------------------------------------- */
.about {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-portrait {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  position: relative;
  z-index: 5;
  border: 10px solid var(--white);
}

.about-accent-blob {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80%;
  height: 80%;
  background-color: var(--dusty-rose-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 3;
  filter: blur(15px);
  animation: blobMorph 18s infinite alternate ease-in-out;
  opacity: 0.8;
}

@keyframes blobMorph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 40% 60% / 50% 60% 30% 50%; }
  100% { border-radius: 50% 50% 70% 30% / 40% 70% 40% 60%; }
}

.about-content {
  max-width: 580px;
}

.about-text {
  color: var(--text-medium);
  margin-bottom: 28px;
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 300;
}

.about-signature {
  margin-top: 45px;
}

.sig-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  position: relative;
  display: inline-block;
  color: var(--olive-green);
}

.sig-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dusty-rose);
}

/* --------------------------------------------------------------------------
   8. ENQUIRY & CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact {
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-intro {
  color: var(--text-medium);
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 300;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px 10px 12px;
  background-color: var(--white);
  border: 1px solid rgba(60, 74, 62, 0.08);
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(60, 74, 62, 0.03);
  transition: var(--transition-smooth);
  cursor: pointer;
  width: fit-content;
}

.contact-detail-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--dusty-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-blue-accent);
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

.contact-detail-item:hover {
  transform: translateY(-2px);
  border-color: var(--dusty-rose);
  box-shadow: 0 8px 24px rgba(200, 155, 156, 0.15);
  color: var(--dusty-rose-accent);
}

.contact-detail-item:hover .icon {
  background-color: var(--olive-green-subtle);
  color: var(--olive-green);
}

/* Glassmorphic Newsletter Box */
.newsletter-box {
  background-color: var(--white);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.05);
  border-left: 4px solid var(--dusty-rose);
}

.newsletter-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.newsletter-box p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px;
  border: 1px solid rgba(60, 74, 62, 0.15);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--olive-green);
  box-shadow: 0 0 0 2px var(--olive-green-subtle);
}

.newsletter-form .btn {
  padding: 14px 28px;
}

/* Form Group Spacing & Typography */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  text-align: left;
}

/* Enquiry Form Styling */
.contact-form-panel {
  background-color: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.05);
}

.contact-form-element .form-group input,
.contact-form-element .form-group select,
.contact-form-element .form-group textarea {
  width: 100%;
  border: 1px solid rgba(60, 74, 62, 0.15);
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.contact-form-element .form-group input:focus,
.contact-form-element .form-group select:focus,
.contact-form-element .form-group textarea:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 2px var(--dusty-rose-light);
  background-color: var(--white);
  outline: none;
}

/* Enquiry & Newsletter Custom Submit Button Themes */
#contact-submit,
#newsletter-submit,
#booking-submit {
  background-color: var(--dusty-rose-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 155, 156, 0.15);
  border: none;
}

#contact-submit:hover,
#newsletter-submit:hover,
#booking-submit:hover {
  background-color: var(--dusty-rose-hover);
  box-shadow: 0 8px 30px rgba(200, 155, 156, 0.25);
}

/* --------------------------------------------------------------------------
   9. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-primary);
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: var(--dusty-blue-light);
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-socials a {
  font-size: 0.95rem;
  color: var(--dusty-blue-light);
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.footer-socials a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--dusty-rose);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-socials a:hover::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. LIGHTBOX & PROJECT ENQUIRY MODALS
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.lightbox.hidden {
  display: none !important;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 1010;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--dusty-rose);
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalZoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--border-radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 30px;
}

.lightbox-caption h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.lightbox-caption p {
  color: var(--dusty-blue-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Booking (Project Enquiry) Modal Overhaul */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.booking-modal.hidden {
  display: none !important;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-modal-container {
  position: relative;
  background-color: var(--white);
  width: 92%;
  max-width: 580px;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  z-index: 1010;
  border: 1px solid rgba(60, 74, 62, 0.08);
  animation: modalSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.booking-modal-close:hover {
  color: var(--olive-green);
}

.booking-modal-header {
  margin-bottom: 35px;
}

.booking-modal-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 10px;
}

#selected-workshop-display {
  color: var(--dusty-rose-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-form-element .form-group input,
.booking-form-element .form-group textarea {
  width: 100%;
  border: 1px solid rgba(60, 74, 62, 0.15);
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.booking-form-element .form-group input:focus,
.booking-form-element .form-group textarea:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 2px var(--dusty-rose-light);
  background-color: var(--white);
  outline: none;
}

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

@keyframes modalZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  section {
    padding: 90px 24px;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-container {
    gap: 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .workshops-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  
  .about-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(60, 74, 62, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }
  
  .nav-links.open {
    max-height: 350px;
    padding: 20px 0;
  }
  
  .nav-item {
    padding: 16px 30px;
    display: block;
    border-bottom: 1px solid rgba(60, 74, 62, 0.03);
  }
  
  .nav-item::after {
    display: none;
  }
  
  /* Hamburger menu animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
    gap: 60px;
  }
  
  .hero-text-content {
    margin: 0 auto;
  }
  
  .hero-tagline::after {
    display: none;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .gallery-grid,
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-panel {
    padding: 40px 24px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   12. BLOG & CURATED SUPPLIES STYLING
   -------------------------------------------------------------------------- */
.blog {
  background-color: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Center and size the card elegantly if it is the only child */
.blog-grid:has(> :only-child) {
  display: flex;
  justify-content: center;
}

.blog-grid:has(> :only-child) .blog-card {
  max-width: 500px;
  width: 100%;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(60, 74, 62, 0.04);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-medium);
}

.blog-img-container {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dusty-rose-accent);
  margin-bottom: 12px;
  display: block;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-green);
  position: relative;
  display: inline-block;
}

.blog-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--olive-green);
  transition: var(--transition-fast);
}

.blog-card:hover .blog-link::after {
  width: 100%;
}

/* Supplies styling */
.supplies {
  background-color: var(--bg-primary);
}

.supplies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.supply-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.05);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.supply-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-medium);
  border-color: rgba(200, 155, 156, 0.25);
}

.supply-icon {
  font-size: 2.2rem;
  color: var(--dusty-rose-accent);
  margin-bottom: 18px;
  display: block;
}

.supply-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.supply-desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supplies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid,
  .supplies-grid {
    grid-template-columns: 1fr;
  }
}

/* Immersive Retreats Section Styles */
.workshops-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive-green);
  display: block;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.08);
  padding-bottom: 10px;
}

.retreat-highlight-card {
  margin-top: 30px;
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--white) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  border: 1px solid rgba(200, 155, 156, 0.15);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
}

.retreat-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-medium);
  border-color: rgba(200, 155, 156, 0.35);
}

.retreat-content-block {
  max-width: 620px;
}

.retreat-meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 12px;
}

.retreat-card-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.retreat-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 30px;
  font-weight: 300;
}

.retreat-info-grid {
  display: flex;
  gap: 40px;
  border-top: 1px dashed rgba(60, 74, 62, 0.15);
  padding-top: 24px;
}

.retreat-info-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
}

.retreat-info-item span {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.retreat-cta-block {
  text-align: center;
}

.retreat-cta-block .btn {
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .retreat-highlight-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .retreat-cta-block {
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   8. WHERE TO GET STARTED SECTION
   -------------------------------------------------------------------------- */
.get-started {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}

.get-started-bg-accent {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, var(--olive-green-subtle) 0%, rgba(250, 248, 245, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.65;
}

.get-started-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
  align-items: stretch;
}

/* Left Side: Visual Anchor styling */
.get-started-visual {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.get-started-visual:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-medium);
  border-color: rgba(200, 155, 156, 0.15);
}

.visual-img-container {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  width: 100%;
  border: 1px solid rgba(60, 74, 62, 0.06);
}

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

.get-started-visual:hover .visual-img {
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(60, 74, 62, 0) 60%, rgba(60, 74, 62, 0.12) 100%);
  pointer-events: none;
}

.visual-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--olive-green);
  padding: 8px 16px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(60, 74, 62, 0.05);
}

.visual-caption {
  margin-top: 24px;
  padding: 0 8px;
}

.visual-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 350;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.visual-caption p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

/* Right Side: Cards Stack styling */
.get-started-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}

.get-started-cards-stack .started-card {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 0;
  padding: 36px 40px;
}

.started-card-body {
  flex: 1;
}

.get-started-cards-stack .started-card .started-card-badge {
  margin-bottom: 12px;
}

.get-started-cards-stack .started-card .started-card-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.get-started-cards-stack .started-card .started-card-desc {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 440px;
}

.get-started-cards-stack .started-card .started-card-action {
  margin-top: 0;
  width: 180px;
  flex-shrink: 0;
}

.started-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.started-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-medium);
}

.started-card.card-green {
  background: linear-gradient(180deg, var(--white) 0%, var(--olive-green-subtle) 100%);
}

.started-card.card-pink {
  background: linear-gradient(180deg, var(--white) 0%, var(--dusty-rose-light) 100%);
}

.started-card.card-blue {
  background: linear-gradient(180deg, var(--white) 0%, var(--dusty-blue-light) 100%);
}

.started-card-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.started-card-title {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.started-card-desc {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 30px;
  font-weight: 300;
}

.started-card-action {
  margin-top: auto;
}

.started-btn {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding: 14px 28px;
  letter-spacing: 0.15em;
}

.started-card.card-green .btn-primary {
  background-color: var(--olive-green);
}
.started-card.card-green .btn-primary:hover {
  background-color: var(--olive-green-hover);
}

.started-card.card-pink .btn-primary {
  background-color: var(--dusty-rose-accent);
}
.started-card.card-pink .btn-primary:hover {
  background-color: var(--dusty-rose-hover);
  box-shadow: 0 8px 25px rgba(180, 127, 129, 0.2);
}

.started-card.card-blue .btn-primary {
  background-color: var(--dusty-blue-accent);
}
.started-card.card-blue .btn-primary:hover {
  background-color: var(--dusty-blue-hover);
  box-shadow: 0 8px 25px rgba(95, 113, 128, 0.2);
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE CUSTOM MODALS
   -------------------------------------------------------------------------- */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.custom-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.custom-modal-container {
  position: relative;
  background-color: var(--bg-primary);
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  padding: 50px;
  z-index: 1010;
  overflow-y: auto;
  border: 1px solid rgba(60, 74, 62, 0.08);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-modal:not(.hidden) .custom-modal-container {
  transform: scale(1) translateY(0);
}

.custom-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(60, 74, 62, 0.04);
}

.custom-modal-close:hover {
  background-color: var(--olive-green);
  color: var(--white);
  transform: rotate(90deg);
}

.custom-modal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.08);
  padding-bottom: 24px;
}

.custom-modal-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 12px;
}

.custom-modal-header h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.custom-modal-intro {
  color: var(--text-medium);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Modal Content details */
.content-section-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.palette-item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.04);
  transition: var(--transition-fast);
}

.palette-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(60, 74, 62, 0.06);
}

.palette-color-wash {
  height: 120px;
  width: 100%;
}

.olive-wash { background-color: var(--olive-green); }
.rose-wash { background-color: var(--dusty-rose); }
.blue-wash { background-color: var(--dusty-blue); }

.palette-info {
  padding: 20px;
}

.palette-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.color-hex {
  display: block;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.palette-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Mixing Recipes styling */
.mixing-recipes {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border: 1px solid rgba(60, 74, 62, 0.05);
}

.recipe-card {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow-soft);
}

.recipe-card:last-child {
  margin-bottom: 0;
}

.recipe-color-bar {
  width: 30px;
  flex-shrink: 0;
}

.tuscan-bar {
  background: linear-gradient(to bottom, var(--olive-green), var(--dusty-rose));
}

.sky-bar {
  background: linear-gradient(to bottom, var(--dusty-blue), var(--dusty-rose));
}

.recipe-details {
  padding: 20px;
  flex-grow: 1;
}

.recipe-details h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.recipe-details p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.recipe-desc {
  font-style: italic;
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
}

/* Art Tips timeline and cards styling */
.tips-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tip-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.04);
  transition: var(--transition-fast);
}

.tip-card:hover {
  transform: translateX(4px);
  border-left: 4px solid var(--dusty-rose-accent);
}

.tip-number-badge {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dusty-rose-accent);
  line-height: 1;
  width: 50px;
  height: 50px;
  background-color: var(--dusty-rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-body h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.tip-body p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tip-body ul {
  padding-left: 20px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.tip-body li {
  margin-bottom: 8px;
}

/* Responsive get-started media queries */
@media (max-width: 1100px) {
  .get-started-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .get-started-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .get-started-cards-stack .started-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 35px;
  }
  
  .get-started-cards-stack .started-card .started-card-action {
    width: 100%;
    margin-top: 15px;
  }
  
  .custom-modal-container {
    padding: 30px;
    width: 95%;
  }
  
  .palette-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   10. PREMIUM EDITORIAL BLOG READER MODAL (USING INTER FONT)
   -------------------------------------------------------------------------- */
.blog-reader-container {
  max-width: 860px;
  padding: 60px 80px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.011em;
}

.blog-article-content {
  color: var(--text-dark);
}

.article-header {
  margin-bottom: 40px;
  text-align: center;
}

.article-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 16px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.article-meta-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 400;
}

.meta-item strong {
  font-weight: 500;
  color: var(--text-dark);
}

.article-divider {
  width: 80px;
  height: 2px;
  background-color: var(--olive-green-subtle);
  margin: 32px auto 0 auto;
  border-radius: 2px;
}

.article-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2c3530; /* Very soft readable dark slate-olive */
  font-weight: 400;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body p.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--olive-green);
  font-weight: 300;
  margin-bottom: 30px;
}

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(60, 74, 62, 0.06);
  padding-bottom: 12px;
}

.article-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--olive-green);
  border-left: 4px solid var(--dusty-rose-accent);
  padding-left: 28px;
  margin: 36px 0;
  font-weight: 400;
}

.article-list {
  margin-bottom: 30px;
  padding-left: 24px;
}

.article-list li {
  margin-bottom: 12px;
  position: relative;
  list-style: none;
}

.article-list li::before {
  content: "•";
  color: var(--olive-green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.article-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-signature {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed rgba(60, 74, 62, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sig-valediction {
  font-style: italic;
  color: var(--text-medium);
  font-size: 1rem;
}

.sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  color: var(--dusty-rose-accent);
}

/* Button style for blog links to look like text links but act correctly */
.blog-link-btn {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-green);
  position: relative;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.blog-link-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--olive-green);
  transition: var(--transition-fast);
}

.blog-card:hover .blog-link-btn::after {
  width: 100%;
}

@media (max-width: 768px) {
  .blog-reader-container {
    padding: 40px 24px;
    width: 95%;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-meta-info {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .article-body p.lead-paragraph {
    font-size: 1.15rem;
  }
  
  .article-body h3 {
    font-size: 1.5rem;
  }
  
  .article-quote {
    font-size: 1.35rem;
    padding-left: 18px;
  }
}

/* Supply Modals Custom Content Styling */
.supply-modal-image-wrapper {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(60, 74, 62, 0.08);
}

.supply-modal-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.supply-modal-details {
  margin-top: 25px;
  text-align: left;
}

.supply-modal-section-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(60, 74, 62, 0.1);
  padding-bottom: 8px;
}

.supply-modal-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 25px;
}

.supply-modal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 300;
  line-height: 1.6;
}

.supply-modal-list li::before {
  content: '•';
  color: var(--dusty-rose-accent);
  font-size: 1.6rem;
  position: absolute;
  left: 6px;
  top: -3px;
}

.supply-modal-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dusty-rose-accent);
  margin-bottom: 12px;
  display: block;
}

/* ==========================================================================
   8. SHOP SECTION & CART SYSTEM
   ========================================================================== */

/* Cart Header Button & Desktop/Mobile Layout Adjustments */
@media (min-width: 769px) {
  .nav-links {
    margin-left: auto;
    margin-right: 40px;
  }
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: 1px solid rgba(60, 74, 62, 0.15);
  padding: 10px 18px;
  border-radius: 40px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.cart-btn:hover {
  background-color: var(--olive-green-subtle);
  border-color: var(--olive-green);
  color: var(--olive-green-hover);
  transform: translateY(-1px);
}

.cart-icon svg {
  display: block;
  stroke: currentColor;
}

.cart-count {
  background-color: var(--dusty-rose-accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-btn:active .cart-count {
  transform: scale(1.3);
}

/* Shop Section Styling */
.shop {
  background-color: var(--bg-secondary);
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.shop-filter-tab {
  background: none;
  border: 1px solid rgba(60, 74, 62, 0.15);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-medium);
}

.shop-filter-tab:hover,
.shop-filter-tab.active {
  background-color: var(--olive-green);
  color: var(--white);
  border-color: var(--olive-green);
  box-shadow: 0 4px 15px rgba(60, 74, 62, 0.15);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(60, 74, 62, 0.03);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-medium);
}

.product-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-primary);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--olive-green-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.product-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(60, 74, 62, 0.1);
  padding-top: 20px;
  margin-top: auto;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.product-card .add-to-cart-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

/* Slide-out Cart Drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 999;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
}

.cart-drawer-count {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 10px;
  flex-grow: 1;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-medium);
  transition: var(--transition-fast);
  padding: 5px;
}

.cart-drawer-close:hover {
  color: var(--olive-green);
  transform: rotate(90deg);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70%;
  text-align: center;
  color: var(--text-light);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.5;
}

.cart-empty-state p {
  font-size: 0.95rem;
  max-width: 250px;
}

.cart-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.05);
  align-items: center;
}

.cart-item-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background-color: var(--bg-secondary);
  flex-shrink: 0;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-family: var(--font-sans);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(60, 74, 62, 0.15);
  border-radius: 40px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--olive-green-subtle);
  color: var(--olive-green);
}

.qty-val {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  width: 25px;
  text-align: center;
  font-weight: 500;
  color: var(--text-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dusty-rose-accent);
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
}

.cart-item-remove:hover {
  color: var(--dusty-rose-hover);
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 30px;
  border-top: 1px solid rgba(60, 74, 62, 0.08);
  background-color: var(--white);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.cart-summary-row span:first-child {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.cart-subtotal-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-shipping-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Secure Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.checkout-modal.hidden {
  display: none;
}

.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 37, 32, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-modal-container {
  position: relative;
  background-color: var(--bg-primary);
  width: 100%;
  max-width: 980px;
  height: 90vh;
  max-height: 750px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  z-index: 1011;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(60, 74, 62, 0.05);
  animation: modalSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-medium);
  transition: var(--transition-fast);
  z-index: 1015;
  padding: 5px;
}

.checkout-modal-close:hover {
  color: var(--olive-green);
  transform: rotate(90deg);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: 100%;
  overflow: hidden;
}

.checkout-form-column {
  padding: 50px;
  overflow-y: auto;
  height: 100%;
}

.checkout-form-column h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.checkout-section {
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.05);
  padding-bottom: 25px;
}

.checkout-section-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dusty-rose-accent);
  margin-bottom: 20px;
}

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

.checkout-summary-column {
  background-color: var(--bg-secondary);
  padding: 50px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(60, 74, 62, 0.05);
  height: 100%;
  overflow-y: auto;
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.checkout-summary-list {
  flex-grow: 1;
  overflow-y: auto;
  max-height: 300px;
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.summary-item-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.summary-item-img {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  background-color: var(--white);
}

.summary-item-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
}

.summary-item-qty {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-left: 6px;
}

.summary-item-price {
  font-family: var(--font-sans);
  font-weight: 500;
}

.checkout-pricing-summary {
  border-top: 1px dashed rgba(60, 74, 62, 0.15);
  padding-top: 24px;
}

.pricing-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.pricing-summary-row.total-row {
  border-top: 1px solid rgba(60, 74, 62, 0.08);
  padding-top: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 15px;
}

/* Simulated Payment Loader */
.checkout-loading-view {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bg-primary);
  z-index: 1014;
}

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

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(60, 74, 62, 0.1);
  border-top-color: var(--olive-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px auto;
}

.checkout-loading-view h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.checkout-loading-view p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Success Confirmation Screen */
.checkout-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bg-primary);
  z-index: 1014;
  padding: 40px;
  text-align: center;
}

.success-icon-container {
  width: 80px;
  height: 80px;
  background-color: var(--olive-green-subtle);
  color: var(--olive-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.success-check {
  font-size: 2.5rem;
  font-weight: 300;
}

.checkout-success-view h2 {
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.success-order-num {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-medium);
  background-color: var(--bg-secondary);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
  display: inline-block;
}

.success-message {
  max-width: 480px;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* Responsive Media Queries for Shop & Cart */
@media (max-width: 992px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    overflow-y: auto;
  }
  
  .checkout-form-column {
    height: auto;
    overflow-y: visible;
    padding: 40px 30px;
  }
  
  .checkout-summary-column {
    height: auto;
    overflow-y: visible;
    padding: 40px 30px;
    border-left: none;
    border-top: 1px solid rgba(60, 74, 62, 0.05);
  }
  
  .checkout-modal-container {
    height: 95vh;
    max-height: none;
  }
}

@media (max-width: 768px) {
  /* Cart Drawer Positioning & Sizing */
  .cart-drawer {
    width: 100%;
  }
  
  .cart-drawer-header,
  .cart-drawer-body,
  .cart-drawer-footer {
    padding: 20px;
  }
  
  .cart-item {
    gap: 15px;
  }
  
  .cart-btn {
    padding: 8px 12px;
    margin-left: auto;
    margin-right: 15px;
  }
  
  .cart-btn span:not(.cart-count) {
    display: none; /* Hide label text on mobile, keep badge */
  }
  
  .cart-btn .cart-count {
    margin-left: 0;
  }
  
  .checkout-form-column,
  .checkout-summary-column {
    padding: 30px 20px;
  }
  
  .checkout-form-column h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-filters {
    gap: 8px;
  }
  
  .shop-filter-tab {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
  
  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   9. JENNA RAINEY AESTHETIC REDESIGN
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
  background-color: var(--olive-green);
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 101;
}

.announcement-link {
  color: var(--peach-dark);
  text-decoration: underline;
  margin-left: 5px;
  transition: var(--transition-fast);
}

.announcement-link:hover {
  color: var(--white);
}

/* Adjust navbar offset */
.navbar {
  top: 0;
}

.navbar.scrolled {
  top: 0;
  background-color: rgba(247, 245, 242, 0.9);
  border-bottom: 1px solid rgba(48, 46, 45, 0.06);
}

/* Typography Enhancements */
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.section-title em,
h2 em,
h3 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--dusty-rose-accent);
}

/* Press Bar Section */
.press-bar {
  background-color: var(--white);
  padding: 40px 24px;
  border-bottom: 1px solid rgba(48, 46, 45, 0.05);
  text-align: center;
}

.press-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  display: block;
  margin-bottom: 24px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.press-logo {
  font-size: 1.25rem;
  color: var(--text-light);
  opacity: 0.75;
  transition: var(--transition-fast);
  cursor: default;
}

.press-logo:hover {
  color: var(--text-dark);
  opacity: 1;
}

/* Specific Logo Typography styling to simulate actual logos */
.logo-harpers {
  font-family: 'Didot', 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-vogue {
  font-family: 'Didot', 'Playfair Display', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-buzzfeed {
  font-family: 'Impact', 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.logo-staples {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.logo-met {
  font-family: 'Georgia', serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Book Spotlight Section */
.book-spotlight {
  background-color: var(--bg-secondary);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.book-cover-column {
  display: flex;
  justify-content: center;
  position: relative;
}

.book-cover-frame {
  position: relative;
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-medium);
  transform: rotate(-3deg);
  transition: var(--transition-smooth);
  z-index: 2;
  max-width: 360px;
}

.book-cover-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(48, 46, 45, 0.12);
}

.book-cover-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  display: block;
}

/* Organic background visual behind book cover */
.book-accent-leaves {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120%;
  height: 120%;
  background-image: radial-gradient(var(--accent-lavender) 20%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
}

.book-content-column {
  max-width: 580px;
}

.book-section-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 12px;
}

.book-section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--olive-green);
  margin-bottom: 24px;
  line-height: 1.5;
}

.book-desc-block p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.book-preorder-actions {
  margin-top: 35px;
  margin-bottom: 40px;
}

.retailer-bar {
  border-top: 1px dashed rgba(60, 74, 62, 0.15);
  padding-top: 24px;
}

.retailer-bar span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
}

.retailer-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.retailer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-medium);
  transition: var(--transition-fast);
  cursor: pointer;
}

.retailer-name:hover {
  color: var(--olive-green);
}

/* Instagram Ribbon */
.instagram-ribbon-section {
  background-color: var(--white);
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(48, 46, 45, 0.05);
}

.instagram-header-bar {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.instagram-header-bar span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--dusty-rose-accent);
  display: block;
  margin-bottom: 10px;
}

.instagram-header-bar h3 {
  font-size: 2rem;
  font-weight: 300;
}

.instagram-header-bar h3 a:hover {
  color: var(--olive-green);
  text-decoration: underline;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.instagram-item:hover img {
  transform: scale(1.05);
}

/* Massive Editorial Footer */
.editorial-footer {
  background-color: #fff5f0; /* Peach Light */
  border-top: 1px solid rgba(48, 46, 45, 0.05);
  padding: 100px 24px 40px 24px;
  color: var(--text-dark);
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.footer-bio-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
}

.footer-social-links {
  display: flex;
  gap: 20px;
}

.footer-social-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  color: var(--olive-green);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive-green);
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-list a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

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

/* Footer Newsletter Card */
.footer-newsletter-box {
  background-color: var(--white);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-soft);
  border: 1px solid rgba(48, 46, 45, 0.03);
}

.newsletter-box-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.newsletter-box-desc {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input {
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(60, 74, 62, 0.15);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  transition: var(--transition-fast);
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: var(--olive-green);
  background-color: var(--white);
}

.footer-newsletter-form .btn-primary {
  padding: 12px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(60, 74, 62, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--olive-green);
}

/* Media Queries for Jenna Rainey Elements */
@media (max-width: 992px) {
  .footer-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .book-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .book-cover-column {
    order: 1;
  }
  
  .book-content-column {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .retailer-logos {
    justify-content: center;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



@media (max-width: 576px) {
  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .press-logos {
    gap: 30px;
  }
  
  .press-logo {
    font-size: 1.1rem;
  }
  
  .book-section-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   WORKSHOP REGISTRATION SYSTEM STYLES
   ========================================================================== */

/* Card tag wrapper to align card tag and format badge */
.card-tag-wrapper {
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

/* Reset original card-tag positioning when inside wrapper */
.card-tag-wrapper .card-tag {
  position: static;
  top: auto;
  right: auto;
}

.format-badge {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.format-badge.format-zoom {
  background-color: var(--dusty-blue-light);
  color: var(--dusty-blue-accent);
  border: 1px solid rgba(122, 139, 153, 0.15);
}

.format-badge.format-inperson {
  background-color: var(--dusty-rose-light);
  color: var(--dusty-rose-accent);
  border: 1px solid rgba(200, 155, 156, 0.15);
}

.badge-icon {
  font-size: 0.85rem;
}

/* Modal layout adjustments */
.booking-modal-header .header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.booking-modal-header .header-top-row h2 {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 300;
  margin: 0;
  line-height: 1.15;
}

.modal-format-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}

.modal-format-badge.zoom {
  background-color: var(--dusty-blue-light);
  color: var(--dusty-blue-accent);
  border: 1px solid rgba(122, 139, 153, 0.15);
}

.modal-format-badge.in-person {
  background-color: var(--dusty-rose-light);
  color: var(--dusty-rose-accent);
  border: 1px solid rgba(200, 155, 156, 0.15);
}

.booking-modal-header .header-details-row {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  border-bottom: 1px solid rgba(60, 74, 62, 0.08);
  padding-bottom: 20px;
}

.header-detail {
  font-size: 0.9rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-detail .icon {
  font-size: 1rem;
}

/* Wizard Steps Progress Bar */
.registration-steps-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 35px 0;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  background-color: var(--white);
  padding: 0 10px;
}

.progress-step .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid rgba(60, 74, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.progress-step .step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.progress-step.active .step-number {
  background-color: var(--olive-green);
  border-color: var(--olive-green);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(60, 74, 62, 0.2);
}

.progress-step.active .step-label {
  color: var(--olive-green);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background-color: var(--dusty-rose);
  border-color: var(--dusty-rose);
  color: var(--white);
}

.progress-step.completed .step-label {
  color: var(--dusty-rose-accent);
}

.progress-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(60, 74, 62, 0.1);
  margin-top: -24px;
  z-index: 1;
}

/* Multi-step Form Panes */
.form-step-pane {
  display: none;
}

.form-step-pane.active {
  display: block;
  animation: modalFadeIn 0.4s ease;
}

.booking-form-element select {
  width: 100%;
  border: 1px solid rgba(60, 74, 62, 0.15);
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2366615D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.booking-form-element select:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 2px var(--dusty-rose-light);
  background-color: var(--white);
  outline: none;
}

/* Info Box / Alert Styling */
.info-block p {
  margin: 0;
}

.booking-form-element input[type="checkbox"] {
  width: auto;
  accent-color: var(--olive-green);
  cursor: pointer;
}

/* Booking Loader View */
.booking-loader-view {
  padding: 40px 0;
  text-align: center;
  animation: modalFadeIn 0.4s ease;
}

.booking-loader-view h3 {
  font-size: 1.5rem;
  margin: 20px 0 10px 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-dark);
}

.booking-loader-view p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(200, 155, 156, 0.15);
  border-top-color: var(--dusty-rose-accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: spinSpinner 1s linear infinite;
}

@keyframes spinSpinner {
  to { transform: rotate(360deg); }
}

/* Success View */
.booking-success-view {
  text-align: center;
  padding: 10px 0;
  animation: modalSlideUpSuccess 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-success-view h2 {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  font-weight: 300;
  margin: 20px 0 10px 0;
  color: var(--text-dark);
}

.success-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--olive-green-subtle);
  color: var(--olive-green);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(60, 74, 62, 0.08);
  animation: scaleIconIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIconIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive adjustments for modal */
@media (max-width: 576px) {
  .booking-modal-container {
    padding: 30px 20px;
  }
  
  .registration-steps-progress {
    margin: 20px 0;
  }
  
  .progress-step .step-label {
    font-size: 0.65rem;
  }
  
  .booking-success-view h2 {
    font-size: 1.8rem;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .success-actions .btn {
    width: 100%;
  }
  
  .card-tag-wrapper {
    left: 30px;
    right: 30px;
  }
}
